Remove MSM headers
Bug 7115545 These headers will be moved to hardware/qcom/msm8960 project. Change-Id: Idb970c196be239e186e0a406d19135aa27225aca
This commit is contained in:
parent
8db7a4cb20
commit
322c7edba3
@ -1,109 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_MFD_MSM_ADIE_CODEC_H
|
|
||||||
#define __LINUX_MFD_MSM_ADIE_CODEC_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#define ADIE_CODEC_ACTION_ENTRY 0x1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADIE_CODEC_ACTION_DELAY_WAIT 0x2
|
|
||||||
#define ADIE_CODEC_ACTION_STAGE_REACHED 0x3
|
|
||||||
#define ADIE_CODEC_PATH_OFF 0x0050
|
|
||||||
#define ADIE_CODEC_DIGITAL_READY 0x0100
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADIE_CODEC_DIGITAL_ANALOG_READY 0x1000
|
|
||||||
#define ADIE_CODEC_ANALOG_OFF 0x0750
|
|
||||||
#define ADIE_CODEC_DIGITAL_OFF 0x0600
|
|
||||||
#define ADIE_CODEC_FLASH_IMAGE 0x0001
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADIE_CODEC_RX 0
|
|
||||||
#define ADIE_CODEC_TX 1
|
|
||||||
#define ADIE_CODEC_LB 3
|
|
||||||
#define ADIE_CODEC_MAX 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADIE_CODEC_PACK_ENTRY(reg, mask, val) ((val)|(mask << 8)|(reg << 16))
|
|
||||||
#define ADIE_CODEC_UNPACK_ENTRY(packed, reg, mask, val) do { ((reg) = ((packed >> 16) & (0xff))); ((mask) = ((packed >> 8) & (0xff))); ((val) = ((packed) & (0xff))); } while (0);
|
|
||||||
struct adie_codec_action_unit {
|
|
||||||
u32 type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 action;
|
|
||||||
};
|
|
||||||
struct adie_codec_hwsetting_entry{
|
|
||||||
struct adie_codec_action_unit *actions;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 action_sz;
|
|
||||||
u32 freq_plan;
|
|
||||||
u32 osr;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct adie_codec_dev_profile {
|
|
||||||
u32 path_type;
|
|
||||||
u32 setting_sz;
|
|
||||||
struct adie_codec_hwsetting_entry *settings;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct adie_codec_register {
|
|
||||||
u8 reg;
|
|
||||||
u8 mask;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u8 val;
|
|
||||||
};
|
|
||||||
struct adie_codec_register_image {
|
|
||||||
struct adie_codec_register *regs;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 img_sz;
|
|
||||||
};
|
|
||||||
struct adie_codec_path;
|
|
||||||
struct adie_codec_anc_data {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 size;
|
|
||||||
u32 writes[];
|
|
||||||
};
|
|
||||||
struct adie_codec_operations {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int codec_id;
|
|
||||||
int (*codec_open) (struct adie_codec_dev_profile *profile,
|
|
||||||
struct adie_codec_path **path_pptr);
|
|
||||||
int (*codec_close) (struct adie_codec_path *path_ptr);
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int (*codec_setpath) (struct adie_codec_path *path_ptr,
|
|
||||||
u32 freq_plan, u32 osr);
|
|
||||||
int (*codec_proceed_stage) (struct adie_codec_path *path_ptr,
|
|
||||||
u32 state);
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 (*codec_freq_supported) (struct adie_codec_dev_profile *profile,
|
|
||||||
u32 requested_freq);
|
|
||||||
int (*codec_enable_sidetone) (struct adie_codec_path *rx_path_ptr,
|
|
||||||
u32 enable);
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int (*codec_enable_anc) (struct adie_codec_path *rx_path_ptr,
|
|
||||||
u32 enable, struct adie_codec_anc_data *calibration_writes);
|
|
||||||
int (*codec_set_device_digital_volume) (
|
|
||||||
struct adie_codec_path *path_ptr,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 num_channels,
|
|
||||||
u32 vol_percentage);
|
|
||||||
int (*codec_set_device_analog_volume) (struct adie_codec_path *path_ptr,
|
|
||||||
u32 num_channels,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 volume);
|
|
||||||
int (*codec_set_master_mode) (struct adie_codec_path *path_ptr,
|
|
||||||
u8 master);
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#endif
|
|
@ -1,60 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_ADSP_H
|
|
||||||
#define __LINUX_MSM_ADSP_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADSP_IOCTL_MAGIC 'q'
|
|
||||||
struct adsp_command_t {
|
|
||||||
uint16_t queue;
|
|
||||||
uint32_t len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint8_t *data;
|
|
||||||
};
|
|
||||||
struct adsp_event_t {
|
|
||||||
uint16_t type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t timeout_ms;
|
|
||||||
uint16_t msg_id;
|
|
||||||
uint16_t flags;
|
|
||||||
uint32_t len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint8_t *data;
|
|
||||||
};
|
|
||||||
#define ADSP_IOCTL_ENABLE _IOR(ADSP_IOCTL_MAGIC, 1, unsigned)
|
|
||||||
#define ADSP_IOCTL_DISABLE _IOR(ADSP_IOCTL_MAGIC, 2, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADSP_IOCTL_DISABLE_ACK _IOR(ADSP_IOCTL_MAGIC, 3, unsigned)
|
|
||||||
#define ADSP_IOCTL_WRITE_COMMAND _IOR(ADSP_IOCTL_MAGIC, 4, struct adsp_command_t *)
|
|
||||||
#define ADSP_IOCTL_GET_EVENT _IOWR(ADSP_IOCTL_MAGIC, 5, struct adsp_event_data_t *)
|
|
||||||
#define ADSP_IOCTL_SET_CLKRATE _IOR(ADSP_IOCTL_MAGIC, 6, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADSP_IOCTL_DISABLE_EVENT_RSP _IOR(ADSP_IOCTL_MAGIC, 10, unsigned)
|
|
||||||
struct adsp_pmem_info {
|
|
||||||
int fd;
|
|
||||||
void *vaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define ADSP_IOCTL_REGISTER_PMEM _IOW(ADSP_IOCTL_MAGIC, 13, unsigned)
|
|
||||||
#define ADSP_IOCTL_UNREGISTER_PMEM _IOW(ADSP_IOCTL_MAGIC, 14, unsigned)
|
|
||||||
#define ADSP_IOCTL_ABORT_EVENT_READ _IOW(ADSP_IOCTL_MAGIC, 15, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADSP_IOCTL_LINK_TASK _IOW(ADSP_IOCTL_MAGIC, 16, unsigned)
|
|
||||||
#endif
|
|
@ -1,345 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_AUDIO_H
|
|
||||||
#define __LINUX_MSM_AUDIO_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_IOCTL_MAGIC 'a'
|
|
||||||
#define AUDIO_START _IOW(AUDIO_IOCTL_MAGIC, 0, unsigned)
|
|
||||||
#define AUDIO_STOP _IOW(AUDIO_IOCTL_MAGIC, 1, unsigned)
|
|
||||||
#define AUDIO_FLUSH _IOW(AUDIO_IOCTL_MAGIC, 2, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 3, unsigned)
|
|
||||||
#define AUDIO_SET_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 4, unsigned)
|
|
||||||
#define AUDIO_GET_STATS _IOR(AUDIO_IOCTL_MAGIC, 5, unsigned)
|
|
||||||
#define AUDIO_ENABLE_AUDPP _IOW(AUDIO_IOCTL_MAGIC, 6, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_ADRC _IOW(AUDIO_IOCTL_MAGIC, 7, unsigned)
|
|
||||||
#define AUDIO_SET_EQ _IOW(AUDIO_IOCTL_MAGIC, 8, unsigned)
|
|
||||||
#define AUDIO_SET_RX_IIR _IOW(AUDIO_IOCTL_MAGIC, 9, unsigned)
|
|
||||||
#define AUDIO_SET_VOLUME _IOW(AUDIO_IOCTL_MAGIC, 10, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_PAUSE _IOW(AUDIO_IOCTL_MAGIC, 11, unsigned)
|
|
||||||
#define AUDIO_PLAY_DTMF _IOW(AUDIO_IOCTL_MAGIC, 12, unsigned)
|
|
||||||
#define AUDIO_GET_EVENT _IOR(AUDIO_IOCTL_MAGIC, 13, unsigned)
|
|
||||||
#define AUDIO_ABORT_GET_EVENT _IOW(AUDIO_IOCTL_MAGIC, 14, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_REGISTER_PMEM _IOW(AUDIO_IOCTL_MAGIC, 15, unsigned)
|
|
||||||
#define AUDIO_DEREGISTER_PMEM _IOW(AUDIO_IOCTL_MAGIC, 16, unsigned)
|
|
||||||
#define AUDIO_ASYNC_WRITE _IOW(AUDIO_IOCTL_MAGIC, 17, unsigned)
|
|
||||||
#define AUDIO_ASYNC_READ _IOW(AUDIO_IOCTL_MAGIC, 18, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_INCALL _IOW(AUDIO_IOCTL_MAGIC, 19, struct msm_voicerec_mode)
|
|
||||||
#define AUDIO_GET_NUM_SND_DEVICE _IOR(AUDIO_IOCTL_MAGIC, 20, unsigned)
|
|
||||||
#define AUDIO_GET_SND_DEVICES _IOWR(AUDIO_IOCTL_MAGIC, 21, struct msm_snd_device_list)
|
|
||||||
#define AUDIO_ENABLE_SND_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 22, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_DISABLE_SND_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 23, unsigned)
|
|
||||||
#define AUDIO_ROUTE_STREAM _IOW(AUDIO_IOCTL_MAGIC, 24, struct msm_audio_route_config)
|
|
||||||
#define AUDIO_GET_PCM_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 30, unsigned)
|
|
||||||
#define AUDIO_SET_PCM_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 31, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SWITCH_DEVICE _IOW(AUDIO_IOCTL_MAGIC, 32, unsigned)
|
|
||||||
#define AUDIO_SET_MUTE _IOW(AUDIO_IOCTL_MAGIC, 33, unsigned)
|
|
||||||
#define AUDIO_UPDATE_ACDB _IOW(AUDIO_IOCTL_MAGIC, 34, unsigned)
|
|
||||||
#define AUDIO_START_VOICE _IOW(AUDIO_IOCTL_MAGIC, 35, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_STOP_VOICE _IOW(AUDIO_IOCTL_MAGIC, 36, unsigned)
|
|
||||||
#define AUDIO_REINIT_ACDB _IOW(AUDIO_IOCTL_MAGIC, 39, unsigned)
|
|
||||||
#define AUDIO_OUTPORT_FLUSH _IOW(AUDIO_IOCTL_MAGIC, 40, unsigned short)
|
|
||||||
#define AUDIO_SET_ERR_THRESHOLD_VALUE _IOW(AUDIO_IOCTL_MAGIC, 41, unsigned short)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_BITSTREAM_ERROR_INFO _IOR(AUDIO_IOCTL_MAGIC, 42, struct msm_audio_bitstream_error_info)
|
|
||||||
#define AUDIO_SET_SRS_TRUMEDIA_PARAM _IOW(AUDIO_IOCTL_MAGIC, 43, unsigned)
|
|
||||||
#define AUDIO_SET_STREAM_CONFIG _IOW(AUDIO_IOCTL_MAGIC, 80, struct msm_audio_stream_config)
|
|
||||||
#define AUDIO_GET_STREAM_CONFIG _IOR(AUDIO_IOCTL_MAGIC, 81, struct msm_audio_stream_config)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_SESSION_ID _IOR(AUDIO_IOCTL_MAGIC, 82, unsigned short)
|
|
||||||
#define AUDIO_GET_STREAM_INFO _IOR(AUDIO_IOCTL_MAGIC, 83, struct msm_audio_bitstream_info)
|
|
||||||
#define AUDIO_SET_PAN _IOW(AUDIO_IOCTL_MAGIC, 84, unsigned)
|
|
||||||
#define AUDIO_SET_QCONCERT_PLUS _IOW(AUDIO_IOCTL_MAGIC, 85, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_MBADRC _IOW(AUDIO_IOCTL_MAGIC, 86, unsigned)
|
|
||||||
#define AUDIO_SET_VOLUME_PATH _IOW(AUDIO_IOCTL_MAGIC, 87, struct msm_vol_info)
|
|
||||||
#define AUDIO_SET_MAX_VOL_ALL _IOW(AUDIO_IOCTL_MAGIC, 88, unsigned)
|
|
||||||
#define AUDIO_ENABLE_AUDPRE _IOW(AUDIO_IOCTL_MAGIC, 89, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_AGC _IOW(AUDIO_IOCTL_MAGIC, 90, unsigned)
|
|
||||||
#define AUDIO_SET_NS _IOW(AUDIO_IOCTL_MAGIC, 91, unsigned)
|
|
||||||
#define AUDIO_SET_TX_IIR _IOW(AUDIO_IOCTL_MAGIC, 92, unsigned)
|
|
||||||
#define AUDIO_GET_BUF_CFG _IOW(AUDIO_IOCTL_MAGIC, 93, struct msm_audio_buf_cfg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_BUF_CFG _IOW(AUDIO_IOCTL_MAGIC, 94, struct msm_audio_buf_cfg)
|
|
||||||
#define AUDIO_SET_ACDB_BLK _IOW(AUDIO_IOCTL_MAGIC, 95, struct msm_acdb_cmd_device)
|
|
||||||
#define AUDIO_GET_ACDB_BLK _IOW(AUDIO_IOCTL_MAGIC, 96, struct msm_acdb_cmd_device)
|
|
||||||
#define AUDIO_REGISTER_ION _IOW(AUDIO_IOCTL_MAGIC, 97, unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_DEREGISTER_ION _IOW(AUDIO_IOCTL_MAGIC, 98, unsigned)
|
|
||||||
#define AUDIO_MAX_COMMON_IOCTL_NUM 100
|
|
||||||
#define HANDSET_MIC 0x01
|
|
||||||
#define HANDSET_SPKR 0x02
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define HEADSET_MIC 0x03
|
|
||||||
#define HEADSET_SPKR_MONO 0x04
|
|
||||||
#define HEADSET_SPKR_STEREO 0x05
|
|
||||||
#define SPKR_PHONE_MIC 0x06
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define SPKR_PHONE_MONO 0x07
|
|
||||||
#define SPKR_PHONE_STEREO 0x08
|
|
||||||
#define BT_SCO_MIC 0x09
|
|
||||||
#define BT_SCO_SPKR 0x0A
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define BT_A2DP_SPKR 0x0B
|
|
||||||
#define TTY_HEADSET_MIC 0x0C
|
|
||||||
#define TTY_HEADSET_SPKR 0x0D
|
|
||||||
#define DEFAULT_TX 0x0E
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define DEFAULT_RX 0x0F
|
|
||||||
#define BT_A2DP_TX 0x10
|
|
||||||
#define HEADSET_MONO_PLUS_SPKR_MONO_RX 0x11
|
|
||||||
#define HEADSET_MONO_PLUS_SPKR_STEREO_RX 0x12
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define HEADSET_STEREO_PLUS_SPKR_MONO_RX 0x13
|
|
||||||
#define HEADSET_STEREO_PLUS_SPKR_STEREO_RX 0x14
|
|
||||||
#define I2S_RX 0x20
|
|
||||||
#define I2S_TX 0x21
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ADRC_ENABLE 0x0001
|
|
||||||
#define EQ_ENABLE 0x0002
|
|
||||||
#define IIR_ENABLE 0x0004
|
|
||||||
#define QCONCERT_PLUS_ENABLE 0x0008
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MBADRC_ENABLE 0x0010
|
|
||||||
#define SRS_ENABLE 0x0020
|
|
||||||
#define SRS_DISABLE 0x0040
|
|
||||||
#define AGC_ENABLE 0x0001
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define NS_ENABLE 0x0002
|
|
||||||
#define TX_IIR_ENABLE 0x0004
|
|
||||||
#define FLUENCE_ENABLE 0x0008
|
|
||||||
#define VOC_REC_UPLINK 0x00
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VOC_REC_DOWNLINK 0x01
|
|
||||||
#define VOC_REC_BOTH 0x02
|
|
||||||
struct msm_audio_config {
|
|
||||||
uint32_t buffer_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t buffer_count;
|
|
||||||
uint32_t channel_count;
|
|
||||||
uint32_t sample_rate;
|
|
||||||
uint32_t type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t meta_field;
|
|
||||||
uint32_t bits;
|
|
||||||
uint32_t unused[3];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_stream_config {
|
|
||||||
uint32_t buffer_size;
|
|
||||||
uint32_t buffer_count;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_buf_cfg{
|
|
||||||
uint32_t meta_info_enable;
|
|
||||||
uint32_t frames_per_buf;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_stats {
|
|
||||||
uint32_t byte_count;
|
|
||||||
uint32_t sample_count;
|
|
||||||
uint32_t unused[2];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_audio_ion_info {
|
|
||||||
int fd;
|
|
||||||
void *vaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_audio_pmem_info {
|
|
||||||
int fd;
|
|
||||||
void *vaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_audio_aio_buf {
|
|
||||||
void *buf_addr;
|
|
||||||
uint32_t buf_len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t data_len;
|
|
||||||
void *private_data;
|
|
||||||
unsigned short mfield_sz;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define SND_IOCTL_MAGIC 's'
|
|
||||||
#define SND_MUTE_UNMUTED 0
|
|
||||||
#define SND_MUTE_MUTED 1
|
|
||||||
struct msm_mute_info {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t mute;
|
|
||||||
uint32_t path;
|
|
||||||
};
|
|
||||||
struct msm_vol_info {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t vol;
|
|
||||||
uint32_t path;
|
|
||||||
};
|
|
||||||
struct msm_voicerec_mode {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t rec_mode;
|
|
||||||
};
|
|
||||||
struct msm_snd_device_config {
|
|
||||||
uint32_t device;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t ear_mute;
|
|
||||||
uint32_t mic_mute;
|
|
||||||
};
|
|
||||||
#define SND_SET_DEVICE _IOW(SND_IOCTL_MAGIC, 2, struct msm_device_config *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define SND_METHOD_VOICE 0
|
|
||||||
struct msm_snd_volume_config {
|
|
||||||
uint32_t device;
|
|
||||||
uint32_t method;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t volume;
|
|
||||||
};
|
|
||||||
#define SND_SET_VOLUME _IOW(SND_IOCTL_MAGIC, 3, struct msm_snd_volume_config *)
|
|
||||||
#define SND_GET_NUM_ENDPOINTS _IOR(SND_IOCTL_MAGIC, 4, unsigned *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_snd_endpoint {
|
|
||||||
int id;
|
|
||||||
char name[64];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define SND_GET_ENDPOINT _IOWR(SND_IOCTL_MAGIC, 5, struct msm_snd_endpoint *)
|
|
||||||
#define SND_AVC_CTL _IOW(SND_IOCTL_MAGIC, 6, unsigned *)
|
|
||||||
#define SND_AGC_CTL _IOW(SND_IOCTL_MAGIC, 7, unsigned *)
|
|
||||||
struct msm_audio_pcm_config {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t pcm_feedback;
|
|
||||||
uint32_t buffer_count;
|
|
||||||
uint32_t buffer_size;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_EVENT_SUSPEND 0
|
|
||||||
#define AUDIO_EVENT_RESUME 1
|
|
||||||
#define AUDIO_EVENT_WRITE_DONE 2
|
|
||||||
#define AUDIO_EVENT_READ_DONE 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_EVENT_STREAM_INFO 4
|
|
||||||
#define AUDIO_EVENT_BITSTREAM_ERROR_INFO 5
|
|
||||||
#define AUDIO_CODEC_TYPE_MP3 0
|
|
||||||
#define AUDIO_CODEC_TYPE_AAC 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_bitstream_info {
|
|
||||||
uint32_t codec_type;
|
|
||||||
uint32_t chan_info;
|
|
||||||
uint32_t sample_rate;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t bit_stream_info;
|
|
||||||
uint32_t bit_rate;
|
|
||||||
uint32_t unused[3];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_bitstream_error_info {
|
|
||||||
uint32_t dec_id;
|
|
||||||
uint32_t err_msg_indicator;
|
|
||||||
uint32_t err_type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
union msm_audio_event_payload {
|
|
||||||
struct msm_audio_aio_buf aio_buf;
|
|
||||||
struct msm_audio_bitstream_info stream_info;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_bitstream_error_info error_info;
|
|
||||||
int reserved;
|
|
||||||
};
|
|
||||||
struct msm_audio_event {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int event_type;
|
|
||||||
int timeout_ms;
|
|
||||||
union msm_audio_event_payload event_payload;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_SNDDEV_CAP_RX 0x1
|
|
||||||
#define MSM_SNDDEV_CAP_TX 0x2
|
|
||||||
#define MSM_SNDDEV_CAP_VOICE 0x4
|
|
||||||
struct msm_snd_device_info {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t dev_id;
|
|
||||||
uint32_t dev_cap;
|
|
||||||
char dev_name[64];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_snd_device_list {
|
|
||||||
uint32_t num_dev;
|
|
||||||
struct msm_snd_device_info *list;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_dtmf_config {
|
|
||||||
uint16_t path;
|
|
||||||
uint16_t dtmf_hi;
|
|
||||||
uint16_t dtmf_low;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint16_t duration;
|
|
||||||
uint16_t tx_gain;
|
|
||||||
uint16_t rx_gain;
|
|
||||||
uint16_t mixing;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define AUDIO_ROUTE_STREAM_VOICE_RX 0
|
|
||||||
#define AUDIO_ROUTE_STREAM_VOICE_TX 1
|
|
||||||
#define AUDIO_ROUTE_STREAM_PLAYBACK 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_ROUTE_STREAM_REC 3
|
|
||||||
struct msm_audio_route_config {
|
|
||||||
uint32_t stream_type;
|
|
||||||
uint32_t stream_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t dev_id;
|
|
||||||
};
|
|
||||||
#define AUDIO_MAX_EQ_BANDS 12
|
|
||||||
struct msm_audio_eq_band {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint16_t band_idx;
|
|
||||||
uint32_t filter_type;
|
|
||||||
uint32_t center_freq_hz;
|
|
||||||
uint32_t filter_gain;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t q_factor;
|
|
||||||
} __attribute__ ((packed));
|
|
||||||
struct msm_audio_eq_stream_config {
|
|
||||||
uint32_t enable;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t num_bands;
|
|
||||||
struct msm_audio_eq_band eq_bands[AUDIO_MAX_EQ_BANDS];
|
|
||||||
} __attribute__ ((packed));
|
|
||||||
struct msm_acdb_cmd_device {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t command_id;
|
|
||||||
uint32_t device_id;
|
|
||||||
uint32_t network_id;
|
|
||||||
uint32_t sample_rate_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t interface_id;
|
|
||||||
uint32_t algorithm_block_id;
|
|
||||||
uint32_t total_bytes;
|
|
||||||
uint32_t *phys_buf;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,79 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_AUDIO_AAC_H
|
|
||||||
#define __MSM_AUDIO_AAC_H
|
|
||||||
#include <linux/msm_audio.h>
|
|
||||||
#define AUDIO_SET_AAC_CONFIG _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+0), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_AAC_CONFIG _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+1), unsigned)
|
|
||||||
#define AUDIO_SET_AAC_ENC_CONFIG _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+3), struct msm_audio_aac_enc_config)
|
|
||||||
#define AUDIO_GET_AAC_ENC_CONFIG _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+4), struct msm_audio_aac_enc_config)
|
|
||||||
#define AUDIO_AAC_FORMAT_ADTS -1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_FORMAT_RAW 0x0000
|
|
||||||
#define AUDIO_AAC_FORMAT_PSUEDO_RAW 0x0001
|
|
||||||
#define AUDIO_AAC_FORMAT_LOAS 0x0002
|
|
||||||
#define AUDIO_AAC_FORMAT_ADIF 0x0003
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_OBJECT_LC 0x0002
|
|
||||||
#define AUDIO_AAC_OBJECT_LTP 0x0004
|
|
||||||
#define AUDIO_AAC_OBJECT_ERLC 0x0011
|
|
||||||
#define AUDIO_AAC_OBJECT_BSAC 0x0016
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_SEC_DATA_RES_ON 0x0001
|
|
||||||
#define AUDIO_AAC_SEC_DATA_RES_OFF 0x0000
|
|
||||||
#define AUDIO_AAC_SCA_DATA_RES_ON 0x0001
|
|
||||||
#define AUDIO_AAC_SCA_DATA_RES_OFF 0x0000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_SPEC_DATA_RES_ON 0x0001
|
|
||||||
#define AUDIO_AAC_SPEC_DATA_RES_OFF 0x0000
|
|
||||||
#define AUDIO_AAC_SBR_ON_FLAG_ON 0x0001
|
|
||||||
#define AUDIO_AAC_SBR_ON_FLAG_OFF 0x0000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_SBR_PS_ON_FLAG_ON 0x0001
|
|
||||||
#define AUDIO_AAC_SBR_PS_ON_FLAG_OFF 0x0000
|
|
||||||
#define AUDIO_AAC_DUAL_MONO_PL_PR 0
|
|
||||||
#define AUDIO_AAC_DUAL_MONO_SL_SR 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_AAC_DUAL_MONO_SL_PR 2
|
|
||||||
#define AUDIO_AAC_DUAL_MONO_PL_SR 3
|
|
||||||
struct msm_audio_aac_config {
|
|
||||||
signed short format;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short audio_object;
|
|
||||||
unsigned short ep_config;
|
|
||||||
unsigned short aac_section_data_resilience_flag;
|
|
||||||
unsigned short aac_scalefactor_data_resilience_flag;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short aac_spectral_data_resilience_flag;
|
|
||||||
unsigned short sbr_on_flag;
|
|
||||||
unsigned short sbr_ps_on_flag;
|
|
||||||
unsigned short dual_mono_mode;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short channel_configuration;
|
|
||||||
};
|
|
||||||
struct msm_audio_aac_enc_config {
|
|
||||||
uint32_t channels;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t sample_rate;
|
|
||||||
uint32_t bit_rate;
|
|
||||||
uint32_t stream_format;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#endif
|
|
@ -1,70 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_AUDIO_ACDB_H
|
|
||||||
#define __MSM_AUDIO_ACDB_H
|
|
||||||
#include <linux/msm_audio.h>
|
|
||||||
#define AUDIO_SET_VOCPROC_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+0), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_VOCPROC_STREAM_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+1), unsigned)
|
|
||||||
#define AUDIO_SET_VOCPROC_VOL_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+2), unsigned)
|
|
||||||
#define AUDIO_SET_AUDPROC_RX_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+3), unsigned)
|
|
||||||
#define AUDIO_SET_AUDPROC_RX_STREAM_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+4), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_AUDPROC_RX_VOL_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+5), unsigned)
|
|
||||||
#define AUDIO_SET_AUDPROC_TX_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+6), unsigned)
|
|
||||||
#define AUDIO_SET_AUDPROC_TX_STREAM_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+7), unsigned)
|
|
||||||
#define AUDIO_SET_AUDPROC_TX_VOL_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+8), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_SIDETONE_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+9), unsigned)
|
|
||||||
#define AUDIO_SET_ANC_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+10), unsigned)
|
|
||||||
#define AUDIO_SET_VOICE_RX_TOPOLOGY _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+11), unsigned)
|
|
||||||
#define AUDIO_SET_VOICE_TX_TOPOLOGY _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+12), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_ADM_RX_TOPOLOGY _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+13), unsigned)
|
|
||||||
#define AUDIO_SET_ADM_TX_TOPOLOGY _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+14), unsigned)
|
|
||||||
#define AUDIO_SET_ASM_TOPOLOGY _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+15), unsigned)
|
|
||||||
#define AUDIO_SET_AFE_TX_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+16), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_SET_AFE_RX_CAL _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+17), unsigned)
|
|
||||||
#define AUDIO_MAX_ACDB_IOCTL (AUDIO_MAX_COMMON_IOCTL_NUM+30)
|
|
||||||
struct cal_block {
|
|
||||||
uint32_t cal_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t cal_offset;
|
|
||||||
};
|
|
||||||
struct sidetone_cal {
|
|
||||||
uint16_t enable;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint16_t gain;
|
|
||||||
};
|
|
||||||
#define AUDIO_GET_RTAC_ADM_INFO _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+1), unsigned)
|
|
||||||
#define AUDIO_GET_RTAC_VOICE_INFO _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+2), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_RTAC_ADM_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+3), unsigned)
|
|
||||||
#define AUDIO_SET_RTAC_ADM_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+4), unsigned)
|
|
||||||
#define AUDIO_GET_RTAC_ASM_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+5), unsigned)
|
|
||||||
#define AUDIO_SET_RTAC_ASM_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+6), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_RTAC_CVS_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+7), unsigned)
|
|
||||||
#define AUDIO_SET_RTAC_CVS_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+8), unsigned)
|
|
||||||
#define AUDIO_GET_RTAC_CVP_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+9), unsigned)
|
|
||||||
#define AUDIO_SET_RTAC_CVP_CAL _IOWR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_ACDB_IOCTL+10), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_MAX_RTAC_IOCTL (AUDIO_MAX_ACDB_IOCTL+20)
|
|
||||||
#endif
|
|
@ -1,48 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_AUDIO_WMA_H
|
|
||||||
#define __MSM_AUDIO_WMA_H
|
|
||||||
#define AUDIO_GET_WMA_CONFIG _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+0), unsigned)
|
|
||||||
#define AUDIO_SET_WMA_CONFIG _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+1), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define AUDIO_GET_WMA_CONFIG_V2 _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+2), struct msm_audio_wma_config_v2)
|
|
||||||
#define AUDIO_SET_WMA_CONFIG_V2 _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+3), struct msm_audio_wma_config_v2)
|
|
||||||
struct msm_audio_wma_config {
|
|
||||||
unsigned short armdatareqthr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short channelsdecoded;
|
|
||||||
unsigned short wmabytespersec;
|
|
||||||
unsigned short wmasamplingfreq;
|
|
||||||
unsigned short wmaencoderopts;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_audio_wma_config_v2 {
|
|
||||||
unsigned short format_tag;
|
|
||||||
unsigned short numchannels;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t samplingrate;
|
|
||||||
uint32_t avgbytespersecond;
|
|
||||||
unsigned short block_align;
|
|
||||||
unsigned short validbitspersample;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t channelmask;
|
|
||||||
unsigned short encodeopt;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
@ -1,40 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_AUDIO_WMAPRO_H
|
|
||||||
#define __MSM_AUDIO_WMAPRO_H
|
|
||||||
#define AUDIO_GET_WMAPRO_CONFIG _IOR(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+0), unsigned)
|
|
||||||
#define AUDIO_SET_WMAPRO_CONFIG _IOW(AUDIO_IOCTL_MAGIC, (AUDIO_MAX_COMMON_IOCTL_NUM+1), unsigned)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_audio_wmapro_config {
|
|
||||||
unsigned short armdatareqthr;
|
|
||||||
uint8_t validbitspersample;
|
|
||||||
uint8_t numchannels;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short formattag;
|
|
||||||
unsigned short samplingrate;
|
|
||||||
unsigned short avgbytespersecond;
|
|
||||||
unsigned short asfpacketlength;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned short channelmask;
|
|
||||||
unsigned short encodeopt;
|
|
||||||
unsigned short advancedencodeopt;
|
|
||||||
uint32_t advancedencodeopt2;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,38 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _ARCH_ARM_MACH_MSM_MDM_IOCTLS_H
|
|
||||||
#define _ARXH_ARM_MACH_MSM_MDM_IOCTLS_H
|
|
||||||
#define CHARM_CODE 0xCC
|
|
||||||
#define WAKE_CHARM _IO(CHARM_CODE, 1)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define RESET_CHARM _IO(CHARM_CODE, 2)
|
|
||||||
#define CHECK_FOR_BOOT _IOR(CHARM_CODE, 3, int)
|
|
||||||
#define WAIT_FOR_BOOT _IO(CHARM_CODE, 4)
|
|
||||||
#define NORMAL_BOOT_DONE _IOW(CHARM_CODE, 5, int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define RAM_DUMP_DONE _IOW(CHARM_CODE, 6, int)
|
|
||||||
#define WAIT_FOR_RESTART _IOR(CHARM_CODE, 7, int)
|
|
||||||
#define GET_DLOAD_STATUS _IOR(CHARM_CODE, 8, int)
|
|
||||||
enum charm_boot_type {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
CHARM_NORMAL_BOOT = 0,
|
|
||||||
CHARM_RAM_DUMPS,
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
@ -1,30 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _DSPS_H_
|
|
||||||
#define _DSPS_H_
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
#define DSPS_IOCTL_MAGIC 'd'
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define DSPS_IOCTL_ON _IO(DSPS_IOCTL_MAGIC, 1)
|
|
||||||
#define DSPS_IOCTL_OFF _IO(DSPS_IOCTL_MAGIC, 2)
|
|
||||||
#define DSPS_IOCTL_READ_SLOW_TIMER _IOR(DSPS_IOCTL_MAGIC, 3, unsigned int*)
|
|
||||||
#define DSPS_IOCTL_READ_FAST_TIMER _IOR(DSPS_IOCTL_MAGIC, 4, unsigned int*)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define DSPS_IOCTL_RESET _IO(DSPS_IOCTL_MAGIC, 5)
|
|
||||||
#endif
|
|
@ -1,48 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_HW3D_H_
|
|
||||||
#define _MSM_HW3D_H_
|
|
||||||
#include <linux/fs.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct hw3d_region;
|
|
||||||
#define HW3D_IOCTL_MAGIC 'h'
|
|
||||||
#define HW3D_WAIT_FOR_REVOKE _IO(HW3D_IOCTL_MAGIC, 0x80)
|
|
||||||
#define HW3D_WAIT_FOR_INTERRUPT _IO(HW3D_IOCTL_MAGIC, 0x81)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define HW3D_GET_REGIONS _IOR(HW3D_IOCTL_MAGIC, 0x82, struct hw3d_region *)
|
|
||||||
#define HW3D_REGION_OFFSET(id) ((((uint32_t)(id)) & 0xf) << 28)
|
|
||||||
#define HW3D_REGION_ID(addr) (((uint32_t)(addr) >> 28) & 0xf)
|
|
||||||
#define HW3D_OFFSET_IN_REGION(addr) ((uint32_t)(addr) & ~(0xfUL << 28))
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum {
|
|
||||||
HW3D_EBI = 0,
|
|
||||||
HW3D_SMI = 1,
|
|
||||||
HW3D_REGS = 2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
HW3D_NUM_REGIONS = HW3D_REGS + 1,
|
|
||||||
};
|
|
||||||
struct hw3d_region {
|
|
||||||
unsigned long phys;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long map_offset;
|
|
||||||
unsigned long len;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
@ -1,105 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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>
|
|
||||||
enum msm_ion_heap_types {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
ION_HEAP_TYPE_IOMMU = ION_HEAP_TYPE_CUSTOM + 1,
|
|
||||||
ION_HEAP_TYPE_CP = ION_HEAP_TYPE_CUSTOM + 2,
|
|
||||||
};
|
|
||||||
enum ion_heap_ids {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
INVALID_HEAP_ID = -1,
|
|
||||||
ION_CP_MM_HEAP_ID = 8,
|
|
||||||
ION_CP_MFC_HEAP_ID = 12,
|
|
||||||
ION_CP_WB_HEAP_ID = 16,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
ION_CAMERA_HEAP_ID = 20,
|
|
||||||
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_HEAP(bit) (1 << (bit))
|
|
||||||
#define ION_VMALLOC_HEAP_NAME "vmalloc"
|
|
||||||
#define ION_AUDIO_HEAP_NAME "audio"
|
|
||||||
#define ION_SF_HEAP_NAME "sf"
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ION_MM_HEAP_NAME "mm"
|
|
||||||
#define ION_CAMERA_HEAP_NAME "camera_preview"
|
|
||||||
#define ION_IOMMU_HEAP_NAME "iommu"
|
|
||||||
#define ION_MFC_HEAP_NAME "mfc"
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ION_WB_HEAP_NAME "wb"
|
|
||||||
#define ION_MM_FIRMWARE_HEAP_NAME "mm_fw"
|
|
||||||
#define ION_QSECOM_HEAP_NAME "qsecom"
|
|
||||||
#define ION_FMEM_HEAP_NAME "fmem"
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define CACHED 1
|
|
||||||
#define UNCACHED 0
|
|
||||||
#define ION_CACHE_SHIFT 0
|
|
||||||
#define ION_SET_CACHE(__cache) ((__cache) << ION_CACHE_SHIFT)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ION_IS_CACHED(__flags) ((__flags) & (1 << ION_CACHE_SHIFT))
|
|
||||||
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_CLEAN_CACHES _IOWR(ION_IOC_MAGIC, 20, struct ion_flush_data)
|
|
||||||
#define ION_IOC_INV_CACHES _IOWR(ION_IOC_MAGIC, 21, struct ion_flush_data)
|
|
||||||
#define ION_IOC_CLEAN_INV_CACHES _IOWR(ION_IOC_MAGIC, 22, struct ion_flush_data)
|
|
||||||
#define ION_IOC_GET_FLAGS _IOWR(ION_IOC_MAGIC, 23, struct ion_flag_data)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#endif
|
|
||||||
|
|
@ -1,365 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_KGSL_H
|
|
||||||
#define _MSM_KGSL_H
|
|
||||||
#define KGSL_VERSION_MAJOR 3
|
|
||||||
#define KGSL_VERSION_MINOR 12
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_CONTEXT_SAVE_GMEM 0x00000001
|
|
||||||
#define KGSL_CONTEXT_NO_GMEM_ALLOC 0x00000002
|
|
||||||
#define KGSL_CONTEXT_SUBMIT_IB_LIST 0x00000004
|
|
||||||
#define KGSL_CONTEXT_CTX_SWITCH 0x00000008
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_CONTEXT_PREAMBLE 0x00000010
|
|
||||||
#define KGSL_CONTEXT_TRASH_STATE 0x00000020
|
|
||||||
#define KGSL_CONTEXT_PER_CONTEXT_TS 0x00000040
|
|
||||||
#define KGSL_CONTEXT_INVALID 0xffffffff
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_MEMFLAGS_GPUREADONLY 0x01000000
|
|
||||||
#define KGSL_FLAGS_NORMALMODE 0x00000000
|
|
||||||
#define KGSL_FLAGS_SAFEMODE 0x00000001
|
|
||||||
#define KGSL_FLAGS_INITIALIZED0 0x00000002
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_FLAGS_INITIALIZED 0x00000004
|
|
||||||
#define KGSL_FLAGS_STARTED 0x00000008
|
|
||||||
#define KGSL_FLAGS_ACTIVE 0x00000010
|
|
||||||
#define KGSL_FLAGS_RESERVED0 0x00000020
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_FLAGS_RESERVED1 0x00000040
|
|
||||||
#define KGSL_FLAGS_RESERVED2 0x00000080
|
|
||||||
#define KGSL_FLAGS_SOFT_RESET 0x00000100
|
|
||||||
#define KGSL_FLAGS_PER_CONTEXT_TIMESTAMPS 0x00000200
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_CLK_SRC 0x00000001
|
|
||||||
#define KGSL_CLK_CORE 0x00000002
|
|
||||||
#define KGSL_CLK_IFACE 0x00000004
|
|
||||||
#define KGSL_CLK_MEM 0x00000008
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_CLK_MEM_IFACE 0x00000010
|
|
||||||
#define KGSL_CLK_AXI 0x00000020
|
|
||||||
enum kgsl_ctx_reset_stat {
|
|
||||||
KGSL_CTX_STAT_NO_ERROR = 0x00000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_CTX_STAT_GUILTY_CONTEXT_RESET_EXT = 0x00000001,
|
|
||||||
KGSL_CTX_STAT_INNOCENT_CONTEXT_RESET_EXT = 0x00000002,
|
|
||||||
KGSL_CTX_STAT_UNKNOWN_CONTEXT_RESET_EXT = 0x00000003
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define KGSL_CONVERT_TO_MBPS(val) (val*1000*1000U)
|
|
||||||
enum kgsl_deviceid {
|
|
||||||
KGSL_DEVICE_3D0 = 0x00000000,
|
|
||||||
KGSL_DEVICE_2D0 = 0x00000001,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_DEVICE_2D1 = 0x00000002,
|
|
||||||
KGSL_DEVICE_MAX = 0x00000003
|
|
||||||
};
|
|
||||||
enum kgsl_user_mem_type {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_USER_MEM_TYPE_PMEM = 0x00000000,
|
|
||||||
KGSL_USER_MEM_TYPE_ASHMEM = 0x00000001,
|
|
||||||
KGSL_USER_MEM_TYPE_ADDR = 0x00000002,
|
|
||||||
KGSL_USER_MEM_TYPE_ION = 0x00000003,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_USER_MEM_TYPE_MAX = 0x00000004,
|
|
||||||
};
|
|
||||||
struct kgsl_devinfo {
|
|
||||||
unsigned int device_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int chip_id;
|
|
||||||
unsigned int mmu_enabled;
|
|
||||||
unsigned int gmem_gpubaseaddr;
|
|
||||||
unsigned int gpu_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int gmem_sizebytes;
|
|
||||||
};
|
|
||||||
struct kgsl_devmemstore {
|
|
||||||
volatile unsigned int soptimestamp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int sbz;
|
|
||||||
volatile unsigned int eoptimestamp;
|
|
||||||
unsigned int sbz2;
|
|
||||||
volatile unsigned int ts_cmp_enable;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int sbz3;
|
|
||||||
volatile unsigned int ref_wait_ts;
|
|
||||||
unsigned int sbz4;
|
|
||||||
unsigned int current_context;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int sbz5;
|
|
||||||
};
|
|
||||||
#define KGSL_MEMSTORE_OFFSET(ctxt_id, field) ((ctxt_id)*sizeof(struct kgsl_devmemstore) + offsetof(struct kgsl_devmemstore, field))
|
|
||||||
enum kgsl_timestamp_type {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_TIMESTAMP_CONSUMED = 0x00000001,
|
|
||||||
KGSL_TIMESTAMP_RETIRED = 0x00000002,
|
|
||||||
KGSL_TIMESTAMP_QUEUED = 0x00000003,
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum kgsl_property_type {
|
|
||||||
KGSL_PROP_DEVICE_INFO = 0x00000001,
|
|
||||||
KGSL_PROP_DEVICE_SHADOW = 0x00000002,
|
|
||||||
KGSL_PROP_DEVICE_POWER = 0x00000003,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_PROP_SHMEM = 0x00000004,
|
|
||||||
KGSL_PROP_SHMEM_APERTURES = 0x00000005,
|
|
||||||
KGSL_PROP_MMU_ENABLE = 0x00000006,
|
|
||||||
KGSL_PROP_INTERRUPT_WAITS = 0x00000007,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_PROP_VERSION = 0x00000008,
|
|
||||||
KGSL_PROP_GPU_RESET_STAT = 0x00000009,
|
|
||||||
KGSL_PROP_PWRCTRL = 0x0000000E,
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_shadowprop {
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
unsigned int size;
|
|
||||||
unsigned int flags;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct kgsl_version {
|
|
||||||
unsigned int drv_major;
|
|
||||||
unsigned int drv_minor;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int dev_major;
|
|
||||||
unsigned int dev_minor;
|
|
||||||
};
|
|
||||||
struct kgsl_ibdesc {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
void *hostptr;
|
|
||||||
unsigned int sizedwords;
|
|
||||||
unsigned int ctrl;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define KGSL_IOC_TYPE 0x09
|
|
||||||
struct kgsl_device_getproperty {
|
|
||||||
unsigned int type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *value;
|
|
||||||
unsigned int sizebytes;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_DEVICE_GETPROPERTY _IOWR(KGSL_IOC_TYPE, 0x2, struct kgsl_device_getproperty)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_device_waittimestamp {
|
|
||||||
unsigned int timestamp;
|
|
||||||
unsigned int timeout;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_DEVICE_WAITTIMESTAMP _IOW(KGSL_IOC_TYPE, 0x6, struct kgsl_device_waittimestamp)
|
|
||||||
struct kgsl_device_waittimestamp_ctxtid {
|
|
||||||
unsigned int context_id;
|
|
||||||
unsigned int timestamp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int timeout;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_DEVICE_WAITTIMESTAMP_CTXTID _IOW(KGSL_IOC_TYPE, 0x7, struct kgsl_device_waittimestamp_ctxtid)
|
|
||||||
struct kgsl_ringbuffer_issueibcmds {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int drawctxt_id;
|
|
||||||
unsigned int ibdesc_addr;
|
|
||||||
unsigned int numibs;
|
|
||||||
unsigned int timestamp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int flags;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_RINGBUFFER_ISSUEIBCMDS _IOWR(KGSL_IOC_TYPE, 0x10, struct kgsl_ringbuffer_issueibcmds)
|
|
||||||
struct kgsl_cmdstream_readtimestamp {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int type;
|
|
||||||
unsigned int timestamp;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_READTIMESTAMP_OLD _IOR(KGSL_IOC_TYPE, 0x11, struct kgsl_cmdstream_readtimestamp)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_READTIMESTAMP _IOWR(KGSL_IOC_TYPE, 0x11, struct kgsl_cmdstream_readtimestamp)
|
|
||||||
struct kgsl_cmdstream_freememontimestamp {
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
unsigned int type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int timestamp;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP _IOW(KGSL_IOC_TYPE, 0x12, struct kgsl_cmdstream_freememontimestamp)
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_OLD _IOR(KGSL_IOC_TYPE, 0x12, struct kgsl_cmdstream_freememontimestamp)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_drawctxt_create {
|
|
||||||
unsigned int flags;
|
|
||||||
unsigned int drawctxt_id;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_DRAWCTXT_CREATE _IOWR(KGSL_IOC_TYPE, 0x13, struct kgsl_drawctxt_create)
|
|
||||||
struct kgsl_drawctxt_destroy {
|
|
||||||
unsigned int drawctxt_id;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_DRAWCTXT_DESTROY _IOW(KGSL_IOC_TYPE, 0x14, struct kgsl_drawctxt_destroy)
|
|
||||||
struct kgsl_map_user_mem {
|
|
||||||
int fd;
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int len;
|
|
||||||
unsigned int offset;
|
|
||||||
unsigned int hostptr;
|
|
||||||
enum kgsl_user_mem_type memtype;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int reserved;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_MAP_USER_MEM _IOWR(KGSL_IOC_TYPE, 0x15, struct kgsl_map_user_mem)
|
|
||||||
struct kgsl_cmdstream_readtimestamp_ctxtid {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int context_id;
|
|
||||||
unsigned int type;
|
|
||||||
unsigned int timestamp;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_READTIMESTAMP_CTXTID _IOWR(KGSL_IOC_TYPE, 0x16, struct kgsl_cmdstream_readtimestamp_ctxtid)
|
|
||||||
struct kgsl_cmdstream_freememontimestamp_ctxtid {
|
|
||||||
unsigned int context_id;
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int type;
|
|
||||||
unsigned int timestamp;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_CMDSTREAM_FREEMEMONTIMESTAMP_CTXTID _IOW(KGSL_IOC_TYPE, 0x17, struct kgsl_cmdstream_freememontimestamp_ctxtid)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_sharedmem_from_pmem {
|
|
||||||
int pmem_fd;
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
unsigned int len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int offset;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_SHAREDMEM_FROM_PMEM _IOWR(KGSL_IOC_TYPE, 0x20, struct kgsl_sharedmem_from_pmem)
|
|
||||||
struct kgsl_sharedmem_free {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_SHAREDMEM_FREE _IOW(KGSL_IOC_TYPE, 0x21, struct kgsl_sharedmem_free)
|
|
||||||
struct kgsl_cff_user_event {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned char cff_opcode;
|
|
||||||
unsigned int op1;
|
|
||||||
unsigned int op2;
|
|
||||||
unsigned int op3;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int op4;
|
|
||||||
unsigned int op5;
|
|
||||||
unsigned int __pad[2];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_CFF_USER_EVENT _IOW(KGSL_IOC_TYPE, 0x31, struct kgsl_cff_user_event)
|
|
||||||
struct kgsl_gmem_desc {
|
|
||||||
unsigned int x;
|
|
||||||
unsigned int y;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int width;
|
|
||||||
unsigned int height;
|
|
||||||
unsigned int pitch;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_buffer_desc {
|
|
||||||
void *hostptr;
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
int size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int format;
|
|
||||||
unsigned int pitch;
|
|
||||||
unsigned int enabled;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_bind_gmem_shadow {
|
|
||||||
unsigned int drawctxt_id;
|
|
||||||
struct kgsl_gmem_desc gmem_desc;
|
|
||||||
unsigned int shadow_x;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int shadow_y;
|
|
||||||
struct kgsl_buffer_desc shadow_buffer;
|
|
||||||
unsigned int buffer_id;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_DRAWCTXT_BIND_GMEM_SHADOW _IOW(KGSL_IOC_TYPE, 0x22, struct kgsl_bind_gmem_shadow)
|
|
||||||
struct kgsl_sharedmem_from_vmalloc {
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
unsigned int hostptr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int flags;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_SHAREDMEM_FROM_VMALLOC _IOWR(KGSL_IOC_TYPE, 0x23, struct kgsl_sharedmem_from_vmalloc)
|
|
||||||
#define IOCTL_KGSL_SHAREDMEM_FLUSH_CACHE _IOW(KGSL_IOC_TYPE, 0x24, struct kgsl_sharedmem_free)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_drawctxt_set_bin_base_offset {
|
|
||||||
unsigned int drawctxt_id;
|
|
||||||
unsigned int offset;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_DRAWCTXT_SET_BIN_BASE_OFFSET _IOW(KGSL_IOC_TYPE, 0x25, struct kgsl_drawctxt_set_bin_base_offset)
|
|
||||||
enum kgsl_cmdwindow_type {
|
|
||||||
KGSL_CMDWINDOW_MIN = 0x00000000,
|
|
||||||
KGSL_CMDWINDOW_2D = 0x00000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
KGSL_CMDWINDOW_3D = 0x00000001,
|
|
||||||
KGSL_CMDWINDOW_MMU = 0x00000002,
|
|
||||||
KGSL_CMDWINDOW_ARBITER = 0x000000FF,
|
|
||||||
KGSL_CMDWINDOW_MAX = 0x000000FF,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct kgsl_cmdwindow_write {
|
|
||||||
enum kgsl_cmdwindow_type target;
|
|
||||||
unsigned int addr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int data;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_CMDWINDOW_WRITE _IOW(KGSL_IOC_TYPE, 0x2e, struct kgsl_cmdwindow_write)
|
|
||||||
struct kgsl_gpumem_alloc {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long gpuaddr;
|
|
||||||
size_t size;
|
|
||||||
unsigned int flags;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_GPUMEM_ALLOC _IOWR(KGSL_IOC_TYPE, 0x2f, struct kgsl_gpumem_alloc)
|
|
||||||
struct kgsl_cff_syncmem {
|
|
||||||
unsigned int gpuaddr;
|
|
||||||
unsigned int len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int __pad[2];
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_CFF_SYNCMEM _IOW(KGSL_IOC_TYPE, 0x30, struct kgsl_cff_syncmem)
|
|
||||||
struct kgsl_timestamp_event {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int type;
|
|
||||||
unsigned int timestamp;
|
|
||||||
unsigned int context_id;
|
|
||||||
void *priv;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t len;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_TIMESTAMP_EVENT_OLD _IOW(KGSL_IOC_TYPE, 0x31, struct kgsl_timestamp_event)
|
|
||||||
#define KGSL_TIMESTAMP_EVENT_GENLOCK 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_timestamp_event_genlock {
|
|
||||||
int handle;
|
|
||||||
};
|
|
||||||
#define KGSL_TIMESTAMP_EVENT_FENCE 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct kgsl_timestamp_event_fence {
|
|
||||||
int fence_fd;
|
|
||||||
};
|
|
||||||
#define IOCTL_KGSL_SETPROPERTY _IOW(KGSL_IOC_TYPE, 0x32, struct kgsl_device_getproperty)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IOCTL_KGSL_TIMESTAMP_EVENT _IOWR(KGSL_IOC_TYPE, 0x33, struct kgsl_timestamp_event)
|
|
||||||
#endif
|
|
@ -1,530 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_MDP_H_
|
|
||||||
#define _MSM_MDP_H_
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/fb.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_IOCTL_MAGIC 'm'
|
|
||||||
#define MSMFB_GRP_DISP _IOW(MSMFB_IOCTL_MAGIC, 1, unsigned int)
|
|
||||||
#define MSMFB_BLIT _IOW(MSMFB_IOCTL_MAGIC, 2, unsigned int)
|
|
||||||
#define MSMFB_SUSPEND_SW_REFRESHER _IOW(MSMFB_IOCTL_MAGIC, 128, unsigned int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_RESUME_SW_REFRESHER _IOW(MSMFB_IOCTL_MAGIC, 129, unsigned int)
|
|
||||||
#define MSMFB_CURSOR _IOW(MSMFB_IOCTL_MAGIC, 130, struct fb_cursor)
|
|
||||||
#define MSMFB_SET_LUT _IOW(MSMFB_IOCTL_MAGIC, 131, struct fb_cmap)
|
|
||||||
#define MSMFB_HISTOGRAM _IOWR(MSMFB_IOCTL_MAGIC, 132, struct mdp_histogram_data)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_GET_CCS_MATRIX _IOWR(MSMFB_IOCTL_MAGIC, 133, struct mdp_ccs)
|
|
||||||
#define MSMFB_SET_CCS_MATRIX _IOW(MSMFB_IOCTL_MAGIC, 134, struct mdp_ccs)
|
|
||||||
#define MSMFB_OVERLAY_SET _IOWR(MSMFB_IOCTL_MAGIC, 135, struct mdp_overlay)
|
|
||||||
#define MSMFB_OVERLAY_UNSET _IOW(MSMFB_IOCTL_MAGIC, 136, unsigned int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_OVERLAY_PLAY _IOW(MSMFB_IOCTL_MAGIC, 137, struct msmfb_overlay_data)
|
|
||||||
#define MSMFB_OVERLAY_QUEUE MSMFB_OVERLAY_PLAY
|
|
||||||
#define MSMFB_GET_PAGE_PROTECTION _IOR(MSMFB_IOCTL_MAGIC, 138, struct mdp_page_protection)
|
|
||||||
#define MSMFB_SET_PAGE_PROTECTION _IOW(MSMFB_IOCTL_MAGIC, 139, struct mdp_page_protection)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_OVERLAY_GET _IOR(MSMFB_IOCTL_MAGIC, 140, struct mdp_overlay)
|
|
||||||
#define MSMFB_OVERLAY_PLAY_ENABLE _IOW(MSMFB_IOCTL_MAGIC, 141, unsigned int)
|
|
||||||
#define MSMFB_OVERLAY_BLT _IOWR(MSMFB_IOCTL_MAGIC, 142, struct msmfb_overlay_blt)
|
|
||||||
#define MSMFB_OVERLAY_BLT_OFFSET _IOW(MSMFB_IOCTL_MAGIC, 143, unsigned int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_HISTOGRAM_START _IOR(MSMFB_IOCTL_MAGIC, 144, struct mdp_histogram_start_req)
|
|
||||||
#define MSMFB_HISTOGRAM_STOP _IOR(MSMFB_IOCTL_MAGIC, 145, unsigned int)
|
|
||||||
#define MSMFB_NOTIFY_UPDATE _IOW(MSMFB_IOCTL_MAGIC, 146, unsigned int)
|
|
||||||
#define MSMFB_OVERLAY_3D _IOWR(MSMFB_IOCTL_MAGIC, 147, struct msmfb_overlay_3d)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_MIXER_INFO _IOWR(MSMFB_IOCTL_MAGIC, 148, struct msmfb_mixer_info_req)
|
|
||||||
#define MSMFB_OVERLAY_PLAY_WAIT _IOWR(MSMFB_IOCTL_MAGIC, 149, struct msmfb_overlay_data)
|
|
||||||
#define MSMFB_WRITEBACK_INIT _IO(MSMFB_IOCTL_MAGIC, 150)
|
|
||||||
#define MSMFB_WRITEBACK_START _IO(MSMFB_IOCTL_MAGIC, 151)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_WRITEBACK_STOP _IO(MSMFB_IOCTL_MAGIC, 152)
|
|
||||||
#define MSMFB_WRITEBACK_QUEUE_BUFFER _IOW(MSMFB_IOCTL_MAGIC, 153, struct msmfb_data)
|
|
||||||
#define MSMFB_WRITEBACK_DEQUEUE_BUFFER _IOW(MSMFB_IOCTL_MAGIC, 154, struct msmfb_data)
|
|
||||||
#define MSMFB_WRITEBACK_TERMINATE _IO(MSMFB_IOCTL_MAGIC, 155)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_MDP_PP _IOWR(MSMFB_IOCTL_MAGIC, 156, struct msmfb_mdp_pp)
|
|
||||||
#define MSMFB_OVERLAY_VSYNC_CTRL _IOW(MSMFB_IOCTL_MAGIC, 160, unsigned int)
|
|
||||||
#define MSMFB_VSYNC_CTRL _IOW(MSMFB_IOCTL_MAGIC, 161, unsigned int)
|
|
||||||
#define MSMFB_BUFFER_SYNC _IOW(MSMFB_IOCTL_MAGIC, 162, struct mdp_buf_sync)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_DISPLAY_COMMIT _IOW(MSMFB_IOCTL_MAGIC, 164, struct mdp_display_commit)
|
|
||||||
#define FB_TYPE_3D_PANEL 0x10101010
|
|
||||||
#define MDP_IMGTYPE2_START 0x10000
|
|
||||||
#define MSMFB_DRIVER_VERSION 0xF9E8D701
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum {
|
|
||||||
NOTIFY_UPDATE_START,
|
|
||||||
NOTIFY_UPDATE_STOP,
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum {
|
|
||||||
MDP_RGB_565,
|
|
||||||
MDP_XRGB_8888,
|
|
||||||
MDP_Y_CBCR_H2V2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_Y_CBCR_H2V2_ADRENO,
|
|
||||||
MDP_ARGB_8888,
|
|
||||||
MDP_RGB_888,
|
|
||||||
MDP_Y_CRCB_H2V2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_YCRYCB_H2V1,
|
|
||||||
MDP_Y_CRCB_H2V1,
|
|
||||||
MDP_Y_CBCR_H2V1,
|
|
||||||
MDP_Y_CRCB_H1V2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_Y_CBCR_H1V2,
|
|
||||||
MDP_RGBA_8888,
|
|
||||||
MDP_BGRA_8888,
|
|
||||||
MDP_RGBX_8888,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_Y_CRCB_H2V2_TILE,
|
|
||||||
MDP_Y_CBCR_H2V2_TILE,
|
|
||||||
MDP_Y_CR_CB_H2V2,
|
|
||||||
MDP_Y_CR_CB_GH2V2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_Y_CB_CR_H2V2,
|
|
||||||
MDP_Y_CRCB_H1V1,
|
|
||||||
MDP_Y_CBCR_H1V1,
|
|
||||||
MDP_YCRCB_H1V1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_YCBCR_H1V1,
|
|
||||||
MDP_BGR_565,
|
|
||||||
MDP_IMGTYPE_LIMIT,
|
|
||||||
MDP_RGB_BORDERFILL,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_FB_FORMAT = MDP_IMGTYPE2_START,
|
|
||||||
MDP_IMGTYPE_LIMIT2
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
PMEM_IMG,
|
|
||||||
FB_IMG,
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
HSIC_HUE = 0,
|
|
||||||
HSIC_SAT,
|
|
||||||
HSIC_INT,
|
|
||||||
HSIC_CON,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
NUM_HSIC_PARAM,
|
|
||||||
};
|
|
||||||
#define MDSS_MDP_ROT_ONLY 0x80
|
|
||||||
#define MDSS_MDP_RIGHT_MIXER 0x100
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_ROT_NOP 0
|
|
||||||
#define MDP_FLIP_LR 0x1
|
|
||||||
#define MDP_FLIP_UD 0x2
|
|
||||||
#define MDP_ROT_90 0x4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_ROT_180 (MDP_FLIP_UD|MDP_FLIP_LR)
|
|
||||||
#define MDP_ROT_270 (MDP_ROT_90|MDP_FLIP_UD|MDP_FLIP_LR)
|
|
||||||
#define MDP_DITHER 0x8
|
|
||||||
#define MDP_BLUR 0x10
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_BLEND_FG_PREMULT 0x20000
|
|
||||||
#define MDP_DEINTERLACE 0x80000000
|
|
||||||
#define MDP_SHARPENING 0x40000000
|
|
||||||
#define MDP_NO_DMA_BARRIER_START 0x20000000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_NO_DMA_BARRIER_END 0x10000000
|
|
||||||
#define MDP_NO_BLIT 0x08000000
|
|
||||||
#define MDP_BLIT_WITH_DMA_BARRIERS 0x000
|
|
||||||
#define MDP_BLIT_WITH_NO_DMA_BARRIERS (MDP_NO_DMA_BARRIER_START | MDP_NO_DMA_BARRIER_END)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_BLIT_SRC_GEM 0x04000000
|
|
||||||
#define MDP_BLIT_DST_GEM 0x02000000
|
|
||||||
#define MDP_BLIT_NON_CACHED 0x01000000
|
|
||||||
#define MDP_OV_PIPE_SHARE 0x00800000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_DEINTERLACE_ODD 0x00400000
|
|
||||||
#define MDP_OV_PLAY_NOWAIT 0x00200000
|
|
||||||
#define MDP_SOURCE_ROTATED_90 0x00100000
|
|
||||||
#define MDP_OVERLAY_PP_CFG_EN 0x00080000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_BACKEND_COMPOSITION 0x00040000
|
|
||||||
#define MDP_BORDERFILL_SUPPORTED 0x00010000
|
|
||||||
#define MDP_SECURE_OVERLAY_SESSION 0x00008000
|
|
||||||
#define MDP_MEMORY_ID_TYPE_FB 0x00001000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_TRANSP_NOP 0xffffffff
|
|
||||||
#define MDP_ALPHA_NOP 0xff
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_NONCACHED (0)
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_WRITECOMBINE (1)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_WRITETHROUGHCACHE (2)
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_WRITEBACKCACHE (3)
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_WRITEBACKWACACHE (4)
|
|
||||||
#define MDP_FB_PAGE_PROTECTION_INVALID (5)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_NUM_FB_PAGE_PROTECTION_VALUES (5)
|
|
||||||
struct mdp_rect {
|
|
||||||
uint32_t x;
|
|
||||||
uint32_t y;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t w;
|
|
||||||
uint32_t h;
|
|
||||||
};
|
|
||||||
struct mdp_img {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t width;
|
|
||||||
uint32_t height;
|
|
||||||
uint32_t format;
|
|
||||||
uint32_t offset;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int memory_id;
|
|
||||||
uint32_t priv;
|
|
||||||
};
|
|
||||||
#define MDP_CCS_RGB2YUV 0
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_CCS_YUV2RGB 1
|
|
||||||
#define MDP_CCS_SIZE 9
|
|
||||||
#define MDP_BV_SIZE 3
|
|
||||||
struct mdp_ccs {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int direction;
|
|
||||||
uint16_t ccs[MDP_CCS_SIZE];
|
|
||||||
uint16_t bv[MDP_BV_SIZE];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_csc {
|
|
||||||
int id;
|
|
||||||
uint32_t csc_mv[9];
|
|
||||||
uint32_t csc_pre_bv[3];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t csc_post_bv[3];
|
|
||||||
uint32_t csc_pre_lv[6];
|
|
||||||
uint32_t csc_post_lv[6];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_BLIT_REQ_VERSION 2
|
|
||||||
struct mdp_blit_req {
|
|
||||||
struct mdp_img src;
|
|
||||||
struct mdp_img dst;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_rect src_rect;
|
|
||||||
struct mdp_rect dst_rect;
|
|
||||||
uint32_t alpha;
|
|
||||||
uint32_t transp_mask;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t flags;
|
|
||||||
int sharpening_strength;
|
|
||||||
};
|
|
||||||
struct mdp_blit_req_list {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t count;
|
|
||||||
struct mdp_blit_req req[];
|
|
||||||
};
|
|
||||||
#define MSMFB_DATA_VERSION 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_data {
|
|
||||||
uint32_t offset;
|
|
||||||
int memory_id;
|
|
||||||
int id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t flags;
|
|
||||||
uint32_t priv;
|
|
||||||
uint32_t iova;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSMFB_NEW_REQUEST -1
|
|
||||||
struct msmfb_overlay_data {
|
|
||||||
uint32_t id;
|
|
||||||
struct msmfb_data data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t version_key;
|
|
||||||
struct msmfb_data plane1_data;
|
|
||||||
struct msmfb_data plane2_data;
|
|
||||||
struct msmfb_data dst_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msmfb_img {
|
|
||||||
uint32_t width;
|
|
||||||
uint32_t height;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t format;
|
|
||||||
};
|
|
||||||
#define MSMFB_WRITEBACK_DEQUEUE_BLOCKING 0x1
|
|
||||||
struct msmfb_writeback_data {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_data buf_info;
|
|
||||||
struct msmfb_img img;
|
|
||||||
};
|
|
||||||
#define MDP_PP_OPS_READ 0x2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_PP_OPS_WRITE 0x4
|
|
||||||
struct mdp_qseed_cfg {
|
|
||||||
uint32_t table_num;
|
|
||||||
uint32_t ops;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t len;
|
|
||||||
uint32_t *data;
|
|
||||||
};
|
|
||||||
struct mdp_qseed_cfg_data {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t block;
|
|
||||||
struct mdp_qseed_cfg qseed_data;
|
|
||||||
};
|
|
||||||
#define MDP_OVERLAY_PP_CSC_CFG 0x1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_OVERLAY_PP_QSEED_CFG 0x2
|
|
||||||
#define MDP_CSC_FLAG_ENABLE 0x1
|
|
||||||
#define MDP_CSC_FLAG_YUV_IN 0x2
|
|
||||||
#define MDP_CSC_FLAG_YUV_OUT 0x4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_csc_cfg {
|
|
||||||
uint32_t flags;
|
|
||||||
uint32_t csc_mv[9];
|
|
||||||
uint32_t csc_pre_bv[3];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t csc_post_bv[3];
|
|
||||||
uint32_t csc_pre_lv[6];
|
|
||||||
uint32_t csc_post_lv[6];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_csc_cfg_data {
|
|
||||||
uint32_t block;
|
|
||||||
struct mdp_csc_cfg csc_data;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_overlay_pp_params {
|
|
||||||
uint32_t config_ops;
|
|
||||||
struct mdp_csc_cfg csc_cfg;
|
|
||||||
struct mdp_qseed_cfg qseed_cfg[2];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct mdp_overlay {
|
|
||||||
struct msmfb_img src;
|
|
||||||
struct mdp_rect src_rect;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_rect dst_rect;
|
|
||||||
uint32_t z_order;
|
|
||||||
uint32_t is_fg;
|
|
||||||
uint32_t alpha;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t transp_mask;
|
|
||||||
uint32_t flags;
|
|
||||||
uint32_t id;
|
|
||||||
uint32_t user_data[8];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_overlay_pp_params overlay_pp_cfg;
|
|
||||||
};
|
|
||||||
struct msmfb_overlay_3d {
|
|
||||||
uint32_t is_3d;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t width;
|
|
||||||
uint32_t height;
|
|
||||||
};
|
|
||||||
struct msmfb_overlay_blt {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t enable;
|
|
||||||
uint32_t offset;
|
|
||||||
uint32_t width;
|
|
||||||
uint32_t height;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t bpp;
|
|
||||||
};
|
|
||||||
struct mdp_histogram {
|
|
||||||
uint32_t frame_cnt;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t bin_cnt;
|
|
||||||
uint32_t *r;
|
|
||||||
uint32_t *g;
|
|
||||||
uint32_t *b;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
MDP_BLOCK_RESERVED = 0,
|
|
||||||
MDP_BLOCK_OVERLAY_0,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_BLOCK_OVERLAY_1,
|
|
||||||
MDP_BLOCK_VG_1,
|
|
||||||
MDP_BLOCK_VG_2,
|
|
||||||
MDP_BLOCK_RGB_1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_BLOCK_RGB_2,
|
|
||||||
MDP_BLOCK_DMA_P,
|
|
||||||
MDP_BLOCK_DMA_S,
|
|
||||||
MDP_BLOCK_DMA_E,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
MDP_BLOCK_OVERLAY_2,
|
|
||||||
MDP_BLOCK_MAX,
|
|
||||||
};
|
|
||||||
struct mdp_histogram_start_req {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t block;
|
|
||||||
uint8_t frame_cnt;
|
|
||||||
uint8_t bit_mask;
|
|
||||||
uint8_t num_bins;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct mdp_histogram_data {
|
|
||||||
uint32_t block;
|
|
||||||
uint8_t bin_cnt;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t *c0;
|
|
||||||
uint32_t *c1;
|
|
||||||
uint32_t *c2;
|
|
||||||
uint32_t *extra_info;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct mdp_pcc_coeff {
|
|
||||||
uint32_t c, r, g, b, rr, gg, bb, rg, gb, rb, rgb_0, rgb_1;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_pcc_cfg_data {
|
|
||||||
uint32_t block;
|
|
||||||
uint32_t ops;
|
|
||||||
struct mdp_pcc_coeff r, g, b;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
mdp_lut_igc,
|
|
||||||
mdp_lut_pgc,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
mdp_lut_hist,
|
|
||||||
mdp_lut_max,
|
|
||||||
};
|
|
||||||
struct mdp_igc_lut_data {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t block;
|
|
||||||
uint32_t len, ops;
|
|
||||||
uint32_t *c0_c1_data;
|
|
||||||
uint32_t *c2_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct mdp_ar_gc_lut_data {
|
|
||||||
uint32_t x_start;
|
|
||||||
uint32_t slope;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t offset;
|
|
||||||
};
|
|
||||||
struct mdp_pgc_lut_data {
|
|
||||||
uint32_t block;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t flags;
|
|
||||||
uint8_t num_r_stages;
|
|
||||||
uint8_t num_g_stages;
|
|
||||||
uint8_t num_b_stages;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_ar_gc_lut_data *r_data;
|
|
||||||
struct mdp_ar_gc_lut_data *g_data;
|
|
||||||
struct mdp_ar_gc_lut_data *b_data;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_hist_lut_data {
|
|
||||||
uint32_t block;
|
|
||||||
uint32_t ops;
|
|
||||||
uint32_t len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t *data;
|
|
||||||
};
|
|
||||||
struct mdp_lut_cfg_data {
|
|
||||||
uint32_t lut_type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
union {
|
|
||||||
struct mdp_igc_lut_data igc_lut_data;
|
|
||||||
struct mdp_pgc_lut_data pgc_lut_data;
|
|
||||||
struct mdp_hist_lut_data hist_lut_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
} data;
|
|
||||||
};
|
|
||||||
struct mdp_bl_scale_data {
|
|
||||||
uint32_t min_lvl;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t scale;
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
mdp_op_pcc_cfg,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
mdp_op_csc_cfg,
|
|
||||||
mdp_op_lut_cfg,
|
|
||||||
mdp_op_qseed_cfg,
|
|
||||||
mdp_bl_scale_cfg,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
mdp_op_max,
|
|
||||||
};
|
|
||||||
struct msmfb_mdp_pp {
|
|
||||||
uint32_t op;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
union {
|
|
||||||
struct mdp_pcc_cfg_data pcc_cfg_data;
|
|
||||||
struct mdp_csc_cfg_data csc_cfg_data;
|
|
||||||
struct mdp_lut_cfg_data lut_cfg_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_qseed_cfg_data qseed_cfg_data;
|
|
||||||
struct mdp_bl_scale_data bl_scale_data;
|
|
||||||
} data;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MDP_MAX_FENCE_FD 10
|
|
||||||
#define MDP_BUF_SYNC_FLAG_WAIT 1
|
|
||||||
struct mdp_buf_sync {
|
|
||||||
uint32_t flags;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t acq_fen_fd_cnt;
|
|
||||||
int *acq_fen_fd;
|
|
||||||
int *rel_fen_fd;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_buf_fence {
|
|
||||||
uint32_t flags;
|
|
||||||
uint32_t acq_fen_fd_cnt;
|
|
||||||
int acq_fen_fd[MDP_MAX_FENCE_FD];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int rel_fen_fd[MDP_MAX_FENCE_FD];
|
|
||||||
};
|
|
||||||
#define MDP_DISPLAY_COMMIT_OVERLAY 0x00000001
|
|
||||||
struct mdp_display_commit {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t flags;
|
|
||||||
uint32_t wait_for_finish;
|
|
||||||
struct fb_var_screeninfo var;
|
|
||||||
struct mdp_buf_fence buf_fence;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct mdp_page_protection {
|
|
||||||
uint32_t page_protection;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct mdp_mixer_info {
|
|
||||||
int pndx;
|
|
||||||
int pnum;
|
|
||||||
int ptype;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int mixer_num;
|
|
||||||
int z_order;
|
|
||||||
};
|
|
||||||
#define MAX_PIPE_PER_MIXER 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_mixer_info_req {
|
|
||||||
int mixer_num;
|
|
||||||
int cnt;
|
|
||||||
struct mdp_mixer_info info[MAX_PIPE_PER_MIXER];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
DISPLAY_SUBSYSTEM_ID,
|
|
||||||
ROTATOR_SUBSYSTEM_ID,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,231 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_VDEC_H_
|
|
||||||
#define _MSM_VDEC_H_
|
|
||||||
#include <linux/types.h>
|
|
||||||
#define VDEC_IOCTL_MAGIC 'v'
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_INITIALIZE _IOWR(VDEC_IOCTL_MAGIC, 1, struct vdec_init)
|
|
||||||
#define VDEC_IOCTL_SETBUFFERS _IOW(VDEC_IOCTL_MAGIC, 2, struct vdec_buffer)
|
|
||||||
#define VDEC_IOCTL_QUEUE _IOWR(VDEC_IOCTL_MAGIC, 3, struct vdec_input_buf)
|
|
||||||
#define VDEC_IOCTL_REUSEFRAMEBUFFER _IOW(VDEC_IOCTL_MAGIC, 4, unsigned int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_FLUSH _IOW(VDEC_IOCTL_MAGIC, 5, unsigned int)
|
|
||||||
#define VDEC_IOCTL_EOS _IO(VDEC_IOCTL_MAGIC, 6)
|
|
||||||
#define VDEC_IOCTL_GETMSG _IOR(VDEC_IOCTL_MAGIC, 7, struct vdec_msg)
|
|
||||||
#define VDEC_IOCTL_CLOSE _IO(VDEC_IOCTL_MAGIC, 8)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_FREEBUFFERS _IOW(VDEC_IOCTL_MAGIC, 9, struct vdec_buf_info)
|
|
||||||
#define VDEC_IOCTL_GETDECATTRIBUTES _IOR(VDEC_IOCTL_MAGIC, 10, struct vdec_dec_attributes)
|
|
||||||
enum {
|
|
||||||
VDEC_FRAME_DECODE_OK,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_FRAME_DECODE_ERR,
|
|
||||||
VDEC_FATAL_ERR,
|
|
||||||
VDEC_FLUSH_FINISH,
|
|
||||||
VDEC_EOS,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_FRAME_FLUSH,
|
|
||||||
VDEC_STREAM_SWITCH,
|
|
||||||
VDEC_SUSPEND_FINISH,
|
|
||||||
VDEC_BUFFER_CONSUMED
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
VDEC_FLUSH_INPUT,
|
|
||||||
VDEC_FLUSH_OUTPUT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_FLUSH_ALL
|
|
||||||
};
|
|
||||||
enum {
|
|
||||||
VDEC_BUFFER_TYPE_INPUT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_BUFFER_TYPE_OUTPUT,
|
|
||||||
VDEC_BUFFER_TYPE_INTERNAL1,
|
|
||||||
VDEC_BUFFER_TYPE_INTERNAL2,
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum {
|
|
||||||
VDEC_QUEUE_SUCCESS,
|
|
||||||
VDEC_QUEUE_FAILED,
|
|
||||||
VDEC_QUEUE_BADSTATE,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct vdec_input_buf_info {
|
|
||||||
u32 offset;
|
|
||||||
u32 data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 size;
|
|
||||||
int timestamp_lo;
|
|
||||||
int timestamp_hi;
|
|
||||||
int avsync_state;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 flags;
|
|
||||||
};
|
|
||||||
struct vdec_buf_desc {
|
|
||||||
u32 bufsize;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 num_min_buffers;
|
|
||||||
u32 num_max_buffers;
|
|
||||||
};
|
|
||||||
struct vdec_buf_req {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 max_input_queue_size;
|
|
||||||
struct vdec_buf_desc input;
|
|
||||||
struct vdec_buf_desc output;
|
|
||||||
struct vdec_buf_desc dec_req1;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_buf_desc dec_req2;
|
|
||||||
};
|
|
||||||
struct vdec_region_info {
|
|
||||||
u32 src_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 offset;
|
|
||||||
u32 size;
|
|
||||||
};
|
|
||||||
struct vdec_config {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 fourcc;
|
|
||||||
u32 width;
|
|
||||||
u32 height;
|
|
||||||
u32 order;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 notify_enable;
|
|
||||||
u32 vc1_rowbase;
|
|
||||||
u32 h264_startcode_detect;
|
|
||||||
u32 h264_nal_len_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 postproc_flag;
|
|
||||||
u32 fruc_enable;
|
|
||||||
u32 reserved;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_vc1_panscan_regions {
|
|
||||||
int num;
|
|
||||||
int width[4];
|
|
||||||
int height[4];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int xoffset[4];
|
|
||||||
int yoffset[4];
|
|
||||||
};
|
|
||||||
struct vdec_cropping_window {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 x1;
|
|
||||||
u32 y1;
|
|
||||||
u32 x2;
|
|
||||||
u32 y2;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct vdec_frame_info {
|
|
||||||
u32 status;
|
|
||||||
u32 offset;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 data1;
|
|
||||||
u32 data2;
|
|
||||||
int timestamp_lo;
|
|
||||||
int timestamp_hi;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int cal_timestamp_lo;
|
|
||||||
int cal_timestamp_hi;
|
|
||||||
u32 dec_width;
|
|
||||||
u32 dec_height;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_cropping_window cwin;
|
|
||||||
u32 picture_type[2];
|
|
||||||
u32 picture_format;
|
|
||||||
u32 vc1_rangeY;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 vc1_rangeUV;
|
|
||||||
u32 picture_resolution;
|
|
||||||
u32 frame_disp_repeat;
|
|
||||||
u32 repeat_first_field;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 top_field_first;
|
|
||||||
u32 interframe_interp;
|
|
||||||
struct vdec_vc1_panscan_regions panscan;
|
|
||||||
u32 concealed_macblk_num;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 flags;
|
|
||||||
u32 performance_stats;
|
|
||||||
u32 data3;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_buf_info {
|
|
||||||
u32 buf_type;
|
|
||||||
struct vdec_region_info region;
|
|
||||||
u32 num_buf;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 islast;
|
|
||||||
};
|
|
||||||
struct vdec_buffer {
|
|
||||||
u32 pmem_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_buf_info buf;
|
|
||||||
};
|
|
||||||
struct vdec_sequence {
|
|
||||||
u8 *header;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 len;
|
|
||||||
};
|
|
||||||
struct vdec_config_sps {
|
|
||||||
struct vdec_config cfg;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_sequence seq;
|
|
||||||
};
|
|
||||||
#define VDEC_MSG_REUSEINPUTBUFFER 1
|
|
||||||
#define VDEC_MSG_FRAMEDONE 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_msg {
|
|
||||||
u32 id;
|
|
||||||
union {
|
|
||||||
u32 buf_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_frame_info vfr_info;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
struct vdec_init {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_config_sps sps_cfg;
|
|
||||||
struct vdec_buf_req *buf_req;
|
|
||||||
};
|
|
||||||
struct vdec_input_buf {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 pmem_id;
|
|
||||||
struct vdec_input_buf_info buffer;
|
|
||||||
struct vdec_queue_status *queue_status;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_queue_status {
|
|
||||||
u32 status;
|
|
||||||
};
|
|
||||||
struct vdec_dec_attributes {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 fourcc;
|
|
||||||
u32 profile;
|
|
||||||
u32 level;
|
|
||||||
u32 dec_pic_width;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
u32 dec_pic_height;
|
|
||||||
struct vdec_buf_desc input;
|
|
||||||
struct vdec_buf_desc output;
|
|
||||||
struct vdec_buf_desc dec_req1;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_buf_desc dec_req2;
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,305 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_VENC_H_
|
|
||||||
#define _MSM_VENC_H_
|
|
||||||
#include <linux/types.h>
|
|
||||||
#define VENC_MAX_RECON_BUFFERS 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_FLAG_EOS 0x00000001
|
|
||||||
#define VENC_FLAG_END_OF_FRAME 0x00000010
|
|
||||||
#define VENC_FLAG_SYNC_FRAME 0x00000020
|
|
||||||
#define VENC_FLAG_EXTRA_DATA 0x00000040
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_FLAG_CODEC_CONFIG 0x00000080
|
|
||||||
enum venc_flush_type {
|
|
||||||
VENC_FLUSH_INPUT,
|
|
||||||
VENC_FLUSH_OUTPUT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_FLUSH_ALL
|
|
||||||
};
|
|
||||||
enum venc_state_type {
|
|
||||||
VENC_STATE_PAUSE = 0x1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_STATE_START = 0x2,
|
|
||||||
VENC_STATE_STOP = 0x4
|
|
||||||
};
|
|
||||||
enum venc_event_type_enum {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_EVENT_START_STATUS,
|
|
||||||
VENC_EVENT_STOP_STATUS,
|
|
||||||
VENC_EVENT_SUSPEND_STATUS,
|
|
||||||
VENC_EVENT_RESUME_STATUS,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_EVENT_FLUSH_STATUS,
|
|
||||||
VENC_EVENT_RELEASE_INPUT,
|
|
||||||
VENC_EVENT_DELIVER_OUTPUT,
|
|
||||||
VENC_EVENT_UNKNOWN_STATUS
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum venc_status_code {
|
|
||||||
VENC_STATUS_SUCCESS,
|
|
||||||
VENC_STATUS_ERROR,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_STATUS_INVALID_STATE,
|
|
||||||
VENC_STATUS_FLUSHING,
|
|
||||||
VENC_STATUS_INVALID_PARAM,
|
|
||||||
VENC_STATUS_CMD_QUEUE_FULL,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_STATUS_CRITICAL,
|
|
||||||
VENC_STATUS_INSUFFICIENT_RESOURCES,
|
|
||||||
VENC_STATUS_TIMEOUT
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum venc_msg_code {
|
|
||||||
VENC_MSG_INDICATION,
|
|
||||||
VENC_MSG_INPUT_BUFFER_DONE,
|
|
||||||
VENC_MSG_OUTPUT_BUFFER_DONE,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_MSG_NEED_OUTPUT_BUFFER,
|
|
||||||
VENC_MSG_FLUSH,
|
|
||||||
VENC_MSG_START,
|
|
||||||
VENC_MSG_STOP,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_MSG_PAUSE,
|
|
||||||
VENC_MSG_RESUME,
|
|
||||||
VENC_MSG_STOP_READING_MSG
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum venc_error_code {
|
|
||||||
VENC_S_SUCCESS,
|
|
||||||
VENC_S_EFAIL,
|
|
||||||
VENC_S_EFATAL,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_S_EBADPARAM,
|
|
||||||
VENC_S_EINVALSTATE,
|
|
||||||
VENC_S_ENOSWRES,
|
|
||||||
VENC_S_ENOHWRES,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_S_EBUFFREQ,
|
|
||||||
VENC_S_EINVALCMD,
|
|
||||||
VENC_S_ETIMEOUT,
|
|
||||||
VENC_S_ENOREATMPT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_S_ENOPREREQ,
|
|
||||||
VENC_S_ECMDQFULL,
|
|
||||||
VENC_S_ENOTSUPP,
|
|
||||||
VENC_S_ENOTIMPL,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_S_ENOTPMEM,
|
|
||||||
VENC_S_EFLUSHED,
|
|
||||||
VENC_S_EINSUFBUF,
|
|
||||||
VENC_S_ESAMESTATE,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_S_EINVALTRANS
|
|
||||||
};
|
|
||||||
enum venc_mem_region_enum {
|
|
||||||
VENC_PMEM_EBI1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VENC_PMEM_SMI
|
|
||||||
};
|
|
||||||
struct venc_buf_type {
|
|
||||||
unsigned int region;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int phys;
|
|
||||||
unsigned int size;
|
|
||||||
int offset;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_qp_range {
|
|
||||||
unsigned int min_qp;
|
|
||||||
unsigned int max_qp;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_frame_rate {
|
|
||||||
unsigned int frame_rate_num;
|
|
||||||
unsigned int frame_rate_den;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_slice_info {
|
|
||||||
unsigned int slice_mode;
|
|
||||||
unsigned int units_per_slice;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_extra_data {
|
|
||||||
unsigned int slice_extra_data_flag;
|
|
||||||
unsigned int slice_client_data1;
|
|
||||||
unsigned int slice_client_data2;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int slice_client_data3;
|
|
||||||
unsigned int none_extra_data_flag;
|
|
||||||
unsigned int none_client_data1;
|
|
||||||
unsigned int none_client_data2;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int none_client_data3;
|
|
||||||
};
|
|
||||||
struct venc_common_config {
|
|
||||||
unsigned int standard;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int input_frame_height;
|
|
||||||
unsigned int input_frame_width;
|
|
||||||
unsigned int output_frame_height;
|
|
||||||
unsigned int output_frame_width;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int rotation_angle;
|
|
||||||
unsigned int intra_period;
|
|
||||||
unsigned int rate_control;
|
|
||||||
struct venc_frame_rate frame_rate;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int bitrate;
|
|
||||||
struct venc_qp_range qp_range;
|
|
||||||
unsigned int iframe_qp;
|
|
||||||
unsigned int pframe_qp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_slice_info slice_config;
|
|
||||||
struct venc_extra_data extra_data;
|
|
||||||
};
|
|
||||||
struct venc_nonio_buf_config {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_buf_type recon_buf1;
|
|
||||||
struct venc_buf_type recon_buf2;
|
|
||||||
struct venc_buf_type wb_buf;
|
|
||||||
struct venc_buf_type cmd_buf;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_buf_type vlc_buf;
|
|
||||||
};
|
|
||||||
struct venc_mpeg4_config {
|
|
||||||
unsigned int profile;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int level;
|
|
||||||
unsigned int time_resolution;
|
|
||||||
unsigned int ac_prediction;
|
|
||||||
unsigned int hec_interval;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int data_partition;
|
|
||||||
unsigned int short_header;
|
|
||||||
unsigned int rvlc_enable;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_h263_config {
|
|
||||||
unsigned int profile;
|
|
||||||
unsigned int level;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_h264_config {
|
|
||||||
unsigned int profile;
|
|
||||||
unsigned int level;
|
|
||||||
unsigned int max_nal;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int idr_period;
|
|
||||||
};
|
|
||||||
struct venc_pmem {
|
|
||||||
int src;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int fd;
|
|
||||||
unsigned int offset;
|
|
||||||
void *virt;
|
|
||||||
void *phys;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int size;
|
|
||||||
};
|
|
||||||
struct venc_buffer {
|
|
||||||
unsigned char *ptr_buffer;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int size;
|
|
||||||
unsigned int len;
|
|
||||||
unsigned int offset;
|
|
||||||
long long time_stamp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int flags;
|
|
||||||
unsigned int client_data;
|
|
||||||
};
|
|
||||||
struct venc_buffers {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_pmem recon_buf[VENC_MAX_RECON_BUFFERS];
|
|
||||||
struct venc_pmem wb_buf;
|
|
||||||
struct venc_pmem cmd_buf;
|
|
||||||
struct venc_pmem vlc_buf;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_buffer_flush {
|
|
||||||
unsigned int flush_mode;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
union venc_msg_data {
|
|
||||||
struct venc_buffer buf;
|
|
||||||
struct venc_buffer_flush flush_ret;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_msg {
|
|
||||||
unsigned int status_code;
|
|
||||||
unsigned int msg_code;
|
|
||||||
union venc_msg_data msg_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int msg_data_size;
|
|
||||||
};
|
|
||||||
union venc_codec_config {
|
|
||||||
struct venc_mpeg4_config mpeg4_params;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_h263_config h263_params;
|
|
||||||
struct venc_h264_config h264_params;
|
|
||||||
};
|
|
||||||
struct venc_q6_config {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_common_config config_params;
|
|
||||||
union venc_codec_config codec_params;
|
|
||||||
struct venc_nonio_buf_config buf_params;
|
|
||||||
void *callback_event;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_hdr_config {
|
|
||||||
struct venc_common_config config_params;
|
|
||||||
union venc_codec_config codec_params;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_init_config {
|
|
||||||
struct venc_q6_config q6_config;
|
|
||||||
struct venc_buffers q6_bufs;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_seq_config {
|
|
||||||
int size;
|
|
||||||
struct venc_pmem buf;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_q6_config q6_config;
|
|
||||||
};
|
|
||||||
#define VENC_IOCTL_MAGIC 'V'
|
|
||||||
#define VENC_IOCTL_CMD_READ_NEXT_MSG _IOWR(VENC_IOCTL_MAGIC, 1, struct venc_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_IOCTL_CMD_STOP_READ_MSG _IO(VENC_IOCTL_MAGIC, 2)
|
|
||||||
#define VENC_IOCTL_SET_INPUT_BUFFER _IOW(VENC_IOCTL_MAGIC, 3, struct venc_pmem)
|
|
||||||
#define VENC_IOCTL_SET_OUTPUT_BUFFER _IOW(VENC_IOCTL_MAGIC, 4, struct venc_pmem)
|
|
||||||
#define VENC_IOCTL_CMD_START _IOW(VENC_IOCTL_MAGIC, 5, struct venc_init_config)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_IOCTL_CMD_ENCODE_FRAME _IOW(VENC_IOCTL_MAGIC, 6, struct venc_buffer)
|
|
||||||
#define VENC_IOCTL_CMD_FILL_OUTPUT_BUFFER _IOW(VENC_IOCTL_MAGIC, 7, struct venc_buffer)
|
|
||||||
#define VENC_IOCTL_CMD_FLUSH _IOW(VENC_IOCTL_MAGIC, 8, struct venc_buffer_flush)
|
|
||||||
#define VENC_IOCTL_CMD_PAUSE _IO(VENC_IOCTL_MAGIC, 9)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_IOCTL_CMD_RESUME _IO(VENC_IOCTL_MAGIC, 10)
|
|
||||||
#define VENC_IOCTL_CMD_STOP _IO(VENC_IOCTL_MAGIC, 11)
|
|
||||||
#define VENC_IOCTL_SET_INTRA_PERIOD _IOW(VENC_IOCTL_MAGIC, 12, int)
|
|
||||||
#define VENC_IOCTL_CMD_REQUEST_IFRAME _IO(VENC_IOCTL_MAGIC, 13)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_IOCTL_GET_SEQUENCE_HDR _IOWR(VENC_IOCTL_MAGIC, 14, struct venc_seq_config)
|
|
||||||
#define VENC_IOCTL_SET_INTRA_REFRESH _IOW(VENC_IOCTL_MAGIC, 15, int)
|
|
||||||
#define VENC_IOCTL_SET_FRAME_RATE _IOW(VENC_IOCTL_MAGIC, 16, struct venc_frame_rate)
|
|
||||||
#define VENC_IOCTL_SET_TARGET_BITRATE _IOW(VENC_IOCTL_MAGIC, 17, int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VENC_IOCTL_SET_QP_RANGE _IOW(VENC_IOCTL_MAGIC, 18, struct venc_qp_range)
|
|
||||||
#endif
|
|
@ -1,53 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_RMNET_H_
|
|
||||||
#define _MSM_RMNET_H_
|
|
||||||
#define RMNET_MODE_NONE (0x00)
|
|
||||||
#define RMNET_MODE_LLP_ETH (0x01)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define RMNET_MODE_LLP_IP (0x02)
|
|
||||||
#define RMNET_MODE_QOS (0x04)
|
|
||||||
#define RMNET_MODE_MASK (RMNET_MODE_LLP_ETH | RMNET_MODE_LLP_IP | RMNET_MODE_QOS)
|
|
||||||
#define RMNET_IS_MODE_QOS(mode) ((mode & RMNET_MODE_QOS) == RMNET_MODE_QOS)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define RMNET_IS_MODE_IP(mode) ((mode & RMNET_MODE_LLP_IP) == RMNET_MODE_LLP_IP)
|
|
||||||
enum rmnet_ioctl_cmds_e {
|
|
||||||
RMNET_IOCTL_SET_LLP_ETHERNET = 0x000089F1,
|
|
||||||
RMNET_IOCTL_SET_LLP_IP = 0x000089F2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
RMNET_IOCTL_GET_LLP = 0x000089F3,
|
|
||||||
RMNET_IOCTL_SET_QOS_ENABLE = 0x000089F4,
|
|
||||||
RMNET_IOCTL_SET_QOS_DISABLE = 0x000089F5,
|
|
||||||
RMNET_IOCTL_GET_QOS = 0x000089F6,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
RMNET_IOCTL_GET_OPMODE = 0x000089F7,
|
|
||||||
RMNET_IOCTL_OPEN = 0x000089F8,
|
|
||||||
RMNET_IOCTL_CLOSE = 0x000089F9,
|
|
||||||
RMNET_IOCTL_MAX
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define QMI_QOS_HDR_S __attribute((__packed__)) qmi_qos_hdr_s
|
|
||||||
struct QMI_QOS_HDR_S {
|
|
||||||
unsigned char version;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned char flags;
|
|
||||||
unsigned long flow_id;
|
|
||||||
};
|
|
||||||
#endif
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
@ -1,75 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_ROTATOR_H__
|
|
||||||
#define __MSM_ROTATOR_H__
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/msm_mdp.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_ROTATOR_IOCTL_MAGIC 'R'
|
|
||||||
#define MSM_ROTATOR_IOCTL_START _IOWR(MSM_ROTATOR_IOCTL_MAGIC, 1, struct msm_rotator_img_info)
|
|
||||||
#define MSM_ROTATOR_IOCTL_ROTATE _IOW(MSM_ROTATOR_IOCTL_MAGIC, 2, struct msm_rotator_data_info)
|
|
||||||
#define MSM_ROTATOR_IOCTL_FINISH _IOW(MSM_ROTATOR_IOCTL_MAGIC, 3, int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define ROTATOR_VERSION_01 0xA5B4C301
|
|
||||||
enum rotator_clk_type {
|
|
||||||
ROTATOR_CORE_CLK,
|
|
||||||
ROTATOR_PCLK,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
ROTATOR_IMEM_CLK
|
|
||||||
};
|
|
||||||
struct msm_rotator_img_info {
|
|
||||||
unsigned int session_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_img src;
|
|
||||||
struct msmfb_img dst;
|
|
||||||
struct mdp_rect src_rect;
|
|
||||||
unsigned int dst_x;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int dst_y;
|
|
||||||
unsigned char rotations;
|
|
||||||
int enable;
|
|
||||||
unsigned int downscale_ratio;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int secure;
|
|
||||||
};
|
|
||||||
struct msm_rotator_data_info {
|
|
||||||
int session_id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_data src;
|
|
||||||
struct msmfb_data dst;
|
|
||||||
unsigned int version_key;
|
|
||||||
struct msmfb_data src_chroma;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msmfb_data dst_chroma;
|
|
||||||
};
|
|
||||||
struct msm_rot_clocks {
|
|
||||||
const char *clk_name;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum rotator_clk_type clk_type;
|
|
||||||
unsigned int clk_rate;
|
|
||||||
};
|
|
||||||
struct msm_rotator_platform_data {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned int number_of_clocks;
|
|
||||||
unsigned int hardware_version_number;
|
|
||||||
struct msm_rot_clocks *rotator_clks;
|
|
||||||
char rot_iommu_split_domain;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,539 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_VIDC_DEC_H_
|
|
||||||
#define _MSM_VIDC_DEC_H_
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_S_BASE 0x40000000
|
|
||||||
#define VDEC_S_SUCCESS (VDEC_S_BASE)
|
|
||||||
#define VDEC_S_EFAIL (VDEC_S_BASE + 1)
|
|
||||||
#define VDEC_S_EFATAL (VDEC_S_BASE + 2)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_S_EBADPARAM (VDEC_S_BASE + 3)
|
|
||||||
#define VDEC_S_EINVALSTATE (VDEC_S_BASE + 4)
|
|
||||||
#define VDEC_S_ENOSWRES (VDEC_S_BASE + 5)
|
|
||||||
#define VDEC_S_ENOHWRES (VDEC_S_BASE + 6)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_S_EINVALCMD (VDEC_S_BASE + 7)
|
|
||||||
#define VDEC_S_ETIMEOUT (VDEC_S_BASE + 8)
|
|
||||||
#define VDEC_S_ENOPREREQ (VDEC_S_BASE + 9)
|
|
||||||
#define VDEC_S_ECMDQFULL (VDEC_S_BASE + 10)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_S_ENOTSUPP (VDEC_S_BASE + 11)
|
|
||||||
#define VDEC_S_ENOTIMPL (VDEC_S_BASE + 12)
|
|
||||||
#define VDEC_S_BUSY (VDEC_S_BASE + 13)
|
|
||||||
#define VDEC_S_INPUT_BITSTREAM_ERR (VDEC_S_BASE + 14)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_INTF_VER 1
|
|
||||||
#define VDEC_MSG_BASE 0x0000000
|
|
||||||
#define VDEC_MSG_INVALID (VDEC_MSG_BASE + 0)
|
|
||||||
#define VDEC_MSG_RESP_INPUT_BUFFER_DONE (VDEC_MSG_BASE + 1)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_MSG_RESP_OUTPUT_BUFFER_DONE (VDEC_MSG_BASE + 2)
|
|
||||||
#define VDEC_MSG_RESP_INPUT_FLUSHED (VDEC_MSG_BASE + 3)
|
|
||||||
#define VDEC_MSG_RESP_OUTPUT_FLUSHED (VDEC_MSG_BASE + 4)
|
|
||||||
#define VDEC_MSG_RESP_FLUSH_INPUT_DONE (VDEC_MSG_BASE + 5)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_MSG_RESP_FLUSH_OUTPUT_DONE (VDEC_MSG_BASE + 6)
|
|
||||||
#define VDEC_MSG_RESP_START_DONE (VDEC_MSG_BASE + 7)
|
|
||||||
#define VDEC_MSG_RESP_STOP_DONE (VDEC_MSG_BASE + 8)
|
|
||||||
#define VDEC_MSG_RESP_PAUSE_DONE (VDEC_MSG_BASE + 9)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_MSG_RESP_RESUME_DONE (VDEC_MSG_BASE + 10)
|
|
||||||
#define VDEC_MSG_RESP_RESOURCE_LOADED (VDEC_MSG_BASE + 11)
|
|
||||||
#define VDEC_EVT_RESOURCES_LOST (VDEC_MSG_BASE + 12)
|
|
||||||
#define VDEC_MSG_EVT_CONFIG_CHANGED (VDEC_MSG_BASE + 13)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_MSG_EVT_HW_ERROR (VDEC_MSG_BASE + 14)
|
|
||||||
#define VDEC_MSG_EVT_INFO_CONFIG_CHANGED (VDEC_MSG_BASE + 15)
|
|
||||||
#define VDEC_MSG_EVT_INFO_FIELD_DROPPED (VDEC_MSG_BASE + 16)
|
|
||||||
#define VDEC_BUFFERFLAG_EOS 0x00000001
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_BUFFERFLAG_DECODEONLY 0x00000004
|
|
||||||
#define VDEC_BUFFERFLAG_DATACORRUPT 0x00000008
|
|
||||||
#define VDEC_BUFFERFLAG_ENDOFFRAME 0x00000010
|
|
||||||
#define VDEC_BUFFERFLAG_SYNCFRAME 0x00000020
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_BUFFERFLAG_EXTRADATA 0x00000040
|
|
||||||
#define VDEC_BUFFERFLAG_CODECCONFIG 0x00000080
|
|
||||||
#define VDEC_EXTRADATA_NONE 0x001
|
|
||||||
#define VDEC_EXTRADATA_QP 0x004
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_EXTRADATA_MB_ERROR_MAP 0x008
|
|
||||||
#define VDEC_EXTRADATA_SEI 0x010
|
|
||||||
#define VDEC_EXTRADATA_VUI 0x020
|
|
||||||
#define VDEC_EXTRADATA_VC1 0x040
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_CMDBASE 0x800
|
|
||||||
#define VDEC_CMD_SET_INTF_VERSION (VDEC_CMDBASE)
|
|
||||||
#define VDEC_IOCTL_MAGIC 'v'
|
|
||||||
struct vdec_ioctl_msg {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void __user *in;
|
|
||||||
void __user *out;
|
|
||||||
};
|
|
||||||
#define VDEC_IOCTL_GET_PROFILE_LEVEL_SUPPORTED _IOWR(VDEC_IOCTL_MAGIC, 0, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_GET_INTERLACE_FORMAT _IOR(VDEC_IOCTL_MAGIC, 1, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_CURRENT_PROFILE_LEVEL _IOWR(VDEC_IOCTL_MAGIC, 2, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_OUTPUT_FORMAT _IOWR(VDEC_IOCTL_MAGIC, 3, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_OUTPUT_FORMAT _IOWR(VDEC_IOCTL_MAGIC, 4, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_SET_CODEC _IOW(VDEC_IOCTL_MAGIC, 5, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_CODEC _IOR(VDEC_IOCTL_MAGIC, 6, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_PICRES _IOW(VDEC_IOCTL_MAGIC, 7, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_PICRES _IOR(VDEC_IOCTL_MAGIC, 8, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_SET_EXTRADATA _IOW(VDEC_IOCTL_MAGIC, 9, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_EXTRADATA _IOR(VDEC_IOCTL_MAGIC, 10, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_SEQUENCE_HEADER _IOW(VDEC_IOCTL_MAGIC, 11, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_BUFFER_REQ _IOW(VDEC_IOCTL_MAGIC, 12, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_GET_BUFFER_REQ _IOR(VDEC_IOCTL_MAGIC, 13, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_ALLOCATE_BUFFER _IOWR(VDEC_IOCTL_MAGIC, 14, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_FREE_BUFFER _IOW(VDEC_IOCTL_MAGIC, 15, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_BUFFER _IOW(VDEC_IOCTL_MAGIC, 16, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_FILL_OUTPUT_BUFFER _IOW(VDEC_IOCTL_MAGIC, 17, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_DECODE_FRAME _IOW(VDEC_IOCTL_MAGIC, 18, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_LOAD_RESOURCES _IO(VDEC_IOCTL_MAGIC, 19)
|
|
||||||
#define VDEC_IOCTL_CMD_START _IO(VDEC_IOCTL_MAGIC, 20)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_CMD_STOP _IO(VDEC_IOCTL_MAGIC, 21)
|
|
||||||
#define VDEC_IOCTL_CMD_PAUSE _IO(VDEC_IOCTL_MAGIC, 22)
|
|
||||||
#define VDEC_IOCTL_CMD_RESUME _IO(VDEC_IOCTL_MAGIC, 23)
|
|
||||||
#define VDEC_IOCTL_CMD_FLUSH _IOW(VDEC_IOCTL_MAGIC, 24, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_GET_NEXT_MSG _IOR(VDEC_IOCTL_MAGIC, 25, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_STOP_NEXT_MSG _IO(VDEC_IOCTL_MAGIC, 26)
|
|
||||||
#define VDEC_IOCTL_GET_NUMBER_INSTANCES _IOR(VDEC_IOCTL_MAGIC, 27, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_PICTURE_ORDER _IOW(VDEC_IOCTL_MAGIC, 28, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_SET_FRAME_RATE _IOW(VDEC_IOCTL_MAGIC, 29, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_SET_H264_MV_BUFFER _IOW(VDEC_IOCTL_MAGIC, 30, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_FREE_H264_MV_BUFFER _IOW(VDEC_IOCTL_MAGIC, 31, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_MV_BUFFER_SIZE _IOR(VDEC_IOCTL_MAGIC, 32, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_SET_IDR_ONLY_DECODING _IO(VDEC_IOCTL_MAGIC, 33)
|
|
||||||
#define VDEC_IOCTL_SET_CONT_ON_RECONFIG _IO(VDEC_IOCTL_MAGIC, 34)
|
|
||||||
#define VDEC_IOCTL_SET_DISABLE_DMX _IOW(VDEC_IOCTL_MAGIC, 35, struct vdec_ioctl_msg)
|
|
||||||
#define VDEC_IOCTL_GET_DISABLE_DMX _IOR(VDEC_IOCTL_MAGIC, 36, struct vdec_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VDEC_IOCTL_GET_DISABLE_DMX_SUPPORT _IOR(VDEC_IOCTL_MAGIC, 37, struct vdec_ioctl_msg)
|
|
||||||
enum vdec_picture {
|
|
||||||
PICTURE_TYPE_I,
|
|
||||||
PICTURE_TYPE_P,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
PICTURE_TYPE_B,
|
|
||||||
PICTURE_TYPE_BI,
|
|
||||||
PICTURE_TYPE_SKIP,
|
|
||||||
PICTURE_TYPE_IDR,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
PICTURE_TYPE_UNKNOWN
|
|
||||||
};
|
|
||||||
enum vdec_buffer {
|
|
||||||
VDEC_BUFFER_TYPE_INPUT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_BUFFER_TYPE_OUTPUT
|
|
||||||
};
|
|
||||||
struct vdec_allocatorproperty {
|
|
||||||
enum vdec_buffer buffer_type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t mincount;
|
|
||||||
uint32_t maxcount;
|
|
||||||
uint32_t actualcount;
|
|
||||||
size_t buffer_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t alignment;
|
|
||||||
uint32_t buf_poolid;
|
|
||||||
};
|
|
||||||
struct vdec_bufferpayload {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void __user *bufferaddr;
|
|
||||||
size_t buffer_len;
|
|
||||||
int pmem_fd;
|
|
||||||
size_t offset;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t mmaped_size;
|
|
||||||
};
|
|
||||||
struct vdec_setbuffer_cmd {
|
|
||||||
enum vdec_buffer buffer_type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_bufferpayload buffer;
|
|
||||||
};
|
|
||||||
struct vdec_fillbuffer_cmd {
|
|
||||||
struct vdec_bufferpayload buffer;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *client_data;
|
|
||||||
};
|
|
||||||
enum vdec_bufferflush {
|
|
||||||
VDEC_FLUSH_TYPE_INPUT,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_FLUSH_TYPE_OUTPUT,
|
|
||||||
VDEC_FLUSH_TYPE_ALL
|
|
||||||
};
|
|
||||||
enum vdec_codec {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_CODECTYPE_H264 = 0x1,
|
|
||||||
VDEC_CODECTYPE_H263 = 0x2,
|
|
||||||
VDEC_CODECTYPE_MPEG4 = 0x3,
|
|
||||||
VDEC_CODECTYPE_DIVX_3 = 0x4,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_CODECTYPE_DIVX_4 = 0x5,
|
|
||||||
VDEC_CODECTYPE_DIVX_5 = 0x6,
|
|
||||||
VDEC_CODECTYPE_DIVX_6 = 0x7,
|
|
||||||
VDEC_CODECTYPE_XVID = 0x8,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_CODECTYPE_MPEG1 = 0x9,
|
|
||||||
VDEC_CODECTYPE_MPEG2 = 0xa,
|
|
||||||
VDEC_CODECTYPE_VC1 = 0xb,
|
|
||||||
VDEC_CODECTYPE_VC1_RCV = 0xc
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum vdec_mpeg2_profile {
|
|
||||||
VDEC_MPEG2ProfileSimple = 0x1,
|
|
||||||
VDEC_MPEG2ProfileMain = 0x2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG2Profile422 = 0x4,
|
|
||||||
VDEC_MPEG2ProfileSNR = 0x8,
|
|
||||||
VDEC_MPEG2ProfileSpatial = 0x10,
|
|
||||||
VDEC_MPEG2ProfileHigh = 0x20,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG2ProfileKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_MPEG2ProfileVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_MPEG2ProfileMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum vdec_mpeg2_level {
|
|
||||||
VDEC_MPEG2LevelLL = 0x1,
|
|
||||||
VDEC_MPEG2LevelML = 0x2,
|
|
||||||
VDEC_MPEG2LevelH14 = 0x4,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG2LevelHL = 0x8,
|
|
||||||
VDEC_MPEG2LevelKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_MPEG2LevelVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_MPEG2LevelMax = 0x7FFFFFFF
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum vdec_mpeg4_profile {
|
|
||||||
VDEC_MPEG4ProfileSimple = 0x01,
|
|
||||||
VDEC_MPEG4ProfileSimpleScalable = 0x02,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4ProfileCore = 0x04,
|
|
||||||
VDEC_MPEG4ProfileMain = 0x08,
|
|
||||||
VDEC_MPEG4ProfileNbit = 0x10,
|
|
||||||
VDEC_MPEG4ProfileScalableTexture = 0x20,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4ProfileSimpleFace = 0x40,
|
|
||||||
VDEC_MPEG4ProfileSimpleFBA = 0x80,
|
|
||||||
VDEC_MPEG4ProfileBasicAnimated = 0x100,
|
|
||||||
VDEC_MPEG4ProfileHybrid = 0x200,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4ProfileAdvancedRealTime = 0x400,
|
|
||||||
VDEC_MPEG4ProfileCoreScalable = 0x800,
|
|
||||||
VDEC_MPEG4ProfileAdvancedCoding = 0x1000,
|
|
||||||
VDEC_MPEG4ProfileAdvancedCore = 0x2000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4ProfileAdvancedScalable = 0x4000,
|
|
||||||
VDEC_MPEG4ProfileAdvancedSimple = 0x8000,
|
|
||||||
VDEC_MPEG4ProfileKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_MPEG4ProfileVendorStartUnused = 0x7F000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4ProfileMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
enum vdec_mpeg4_level {
|
|
||||||
VDEC_MPEG4Level0 = 0x01,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4Level0b = 0x02,
|
|
||||||
VDEC_MPEG4Level1 = 0x04,
|
|
||||||
VDEC_MPEG4Level2 = 0x08,
|
|
||||||
VDEC_MPEG4Level3 = 0x10,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4Level4 = 0x20,
|
|
||||||
VDEC_MPEG4Level4a = 0x40,
|
|
||||||
VDEC_MPEG4Level5 = 0x80,
|
|
||||||
VDEC_MPEG4LevelKhronosExtensions = 0x6F000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_MPEG4LevelVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_MPEG4LevelMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
enum vdec_avc_profile {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCProfileBaseline = 0x01,
|
|
||||||
VDEC_AVCProfileMain = 0x02,
|
|
||||||
VDEC_AVCProfileExtended = 0x04,
|
|
||||||
VDEC_AVCProfileHigh = 0x08,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCProfileHigh10 = 0x10,
|
|
||||||
VDEC_AVCProfileHigh422 = 0x20,
|
|
||||||
VDEC_AVCProfileHigh444 = 0x40,
|
|
||||||
VDEC_AVCProfileKhronosExtensions = 0x6F000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCProfileVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_AVCProfileMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
enum vdec_avc_level {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCLevel1 = 0x01,
|
|
||||||
VDEC_AVCLevel1b = 0x02,
|
|
||||||
VDEC_AVCLevel11 = 0x04,
|
|
||||||
VDEC_AVCLevel12 = 0x08,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCLevel13 = 0x10,
|
|
||||||
VDEC_AVCLevel2 = 0x20,
|
|
||||||
VDEC_AVCLevel21 = 0x40,
|
|
||||||
VDEC_AVCLevel22 = 0x80,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCLevel3 = 0x100,
|
|
||||||
VDEC_AVCLevel31 = 0x200,
|
|
||||||
VDEC_AVCLevel32 = 0x400,
|
|
||||||
VDEC_AVCLevel4 = 0x800,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCLevel41 = 0x1000,
|
|
||||||
VDEC_AVCLevel42 = 0x2000,
|
|
||||||
VDEC_AVCLevel5 = 0x4000,
|
|
||||||
VDEC_AVCLevel51 = 0x8000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_AVCLevelKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_AVCLevelVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_AVCLevelMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum vdec_divx_profile {
|
|
||||||
VDEC_DIVXProfile_qMobile = 0x01,
|
|
||||||
VDEC_DIVXProfile_Mobile = 0x02,
|
|
||||||
VDEC_DIVXProfile_HD = 0x04,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_DIVXProfile_Handheld = 0x08,
|
|
||||||
VDEC_DIVXProfile_Portable = 0x10,
|
|
||||||
VDEC_DIVXProfile_HomeTheater = 0x20
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum vdec_xvid_profile {
|
|
||||||
VDEC_XVIDProfile_Simple = 0x1,
|
|
||||||
VDEC_XVIDProfile_Advanced_Realtime_Simple = 0x2,
|
|
||||||
VDEC_XVIDProfile_Advanced_Simple = 0x4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum vdec_xvid_level {
|
|
||||||
VDEC_XVID_LEVEL_S_L0 = 0x1,
|
|
||||||
VDEC_XVID_LEVEL_S_L1 = 0x2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_XVID_LEVEL_S_L2 = 0x4,
|
|
||||||
VDEC_XVID_LEVEL_S_L3 = 0x8,
|
|
||||||
VDEC_XVID_LEVEL_ARTS_L1 = 0x10,
|
|
||||||
VDEC_XVID_LEVEL_ARTS_L2 = 0x20,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_XVID_LEVEL_ARTS_L3 = 0x40,
|
|
||||||
VDEC_XVID_LEVEL_ARTS_L4 = 0x80,
|
|
||||||
VDEC_XVID_LEVEL_AS_L0 = 0x100,
|
|
||||||
VDEC_XVID_LEVEL_AS_L1 = 0x200,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_XVID_LEVEL_AS_L2 = 0x400,
|
|
||||||
VDEC_XVID_LEVEL_AS_L3 = 0x800,
|
|
||||||
VDEC_XVID_LEVEL_AS_L4 = 0x1000
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum vdec_h263profile {
|
|
||||||
VDEC_H263ProfileBaseline = 0x01,
|
|
||||||
VDEC_H263ProfileH320Coding = 0x02,
|
|
||||||
VDEC_H263ProfileBackwardCompatible = 0x04,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263ProfileISWV2 = 0x08,
|
|
||||||
VDEC_H263ProfileISWV3 = 0x10,
|
|
||||||
VDEC_H263ProfileHighCompression = 0x20,
|
|
||||||
VDEC_H263ProfileInternet = 0x40,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263ProfileInterlace = 0x80,
|
|
||||||
VDEC_H263ProfileHighLatency = 0x100,
|
|
||||||
VDEC_H263ProfileKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_H263ProfileVendorStartUnused = 0x7F000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263ProfileMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
enum vdec_h263level {
|
|
||||||
VDEC_H263Level10 = 0x01,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263Level20 = 0x02,
|
|
||||||
VDEC_H263Level30 = 0x04,
|
|
||||||
VDEC_H263Level40 = 0x08,
|
|
||||||
VDEC_H263Level45 = 0x10,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263Level50 = 0x20,
|
|
||||||
VDEC_H263Level60 = 0x40,
|
|
||||||
VDEC_H263Level70 = 0x80,
|
|
||||||
VDEC_H263LevelKhronosExtensions = 0x6F000000,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_H263LevelVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_H263LevelMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
enum vdec_wmv_format {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_WMVFormatUnused = 0x01,
|
|
||||||
VDEC_WMVFormat7 = 0x02,
|
|
||||||
VDEC_WMVFormat8 = 0x04,
|
|
||||||
VDEC_WMVFormat9 = 0x08,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_WMFFormatKhronosExtensions = 0x6F000000,
|
|
||||||
VDEC_WMFFormatVendorStartUnused = 0x7F000000,
|
|
||||||
VDEC_WMVFormatMax = 0x7FFFFFFF
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
enum vdec_vc1_profile {
|
|
||||||
VDEC_VC1ProfileSimple = 0x1,
|
|
||||||
VDEC_VC1ProfileMain = 0x2,
|
|
||||||
VDEC_VC1ProfileAdvanced = 0x4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum vdec_vc1_level {
|
|
||||||
VDEC_VC1_LEVEL_S_Low = 0x1,
|
|
||||||
VDEC_VC1_LEVEL_S_Medium = 0x2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_VC1_LEVEL_M_Low = 0x4,
|
|
||||||
VDEC_VC1_LEVEL_M_Medium = 0x8,
|
|
||||||
VDEC_VC1_LEVEL_M_High = 0x10,
|
|
||||||
VDEC_VC1_LEVEL_A_L0 = 0x20,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_VC1_LEVEL_A_L1 = 0x40,
|
|
||||||
VDEC_VC1_LEVEL_A_L2 = 0x80,
|
|
||||||
VDEC_VC1_LEVEL_A_L3 = 0x100,
|
|
||||||
VDEC_VC1_LEVEL_A_L4 = 0x200
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct vdec_profile_level {
|
|
||||||
uint32_t profiles;
|
|
||||||
uint32_t levels;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
enum vdec_interlaced_format {
|
|
||||||
VDEC_InterlaceFrameProgressive = 0x1,
|
|
||||||
VDEC_InterlaceInterleaveFrameTopFieldFirst = 0x2,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_InterlaceInterleaveFrameBottomFieldFirst = 0x4
|
|
||||||
};
|
|
||||||
enum vdec_output_fromat {
|
|
||||||
VDEC_YUV_FORMAT_NV12 = 0x1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_YUV_FORMAT_TILE_4x2 = 0x2
|
|
||||||
};
|
|
||||||
enum vdec_output_order {
|
|
||||||
VDEC_ORDER_DISPLAY = 0x1,
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
VDEC_ORDER_DECODE = 0x2
|
|
||||||
};
|
|
||||||
struct vdec_picsize {
|
|
||||||
uint32_t frame_width;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t frame_height;
|
|
||||||
uint32_t stride;
|
|
||||||
uint32_t scan_lines;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_seqheader {
|
|
||||||
void __user *ptr_seqheader;
|
|
||||||
size_t seq_header_len;
|
|
||||||
int pmem_fd;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t pmem_offset;
|
|
||||||
};
|
|
||||||
struct vdec_mberror {
|
|
||||||
void __user *ptr_errormap;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t err_mapsize;
|
|
||||||
};
|
|
||||||
struct vdec_input_frameinfo {
|
|
||||||
void __user *bufferaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t offset;
|
|
||||||
size_t datalen;
|
|
||||||
uint32_t flags;
|
|
||||||
int64_t timestamp;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *client_data;
|
|
||||||
int pmem_fd;
|
|
||||||
size_t pmem_offset;
|
|
||||||
void __user *desc_addr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t desc_size;
|
|
||||||
};
|
|
||||||
struct vdec_framesize {
|
|
||||||
uint32_t left;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t top;
|
|
||||||
uint32_t right;
|
|
||||||
uint32_t bottom;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_aspectratioinfo {
|
|
||||||
uint32_t aspect_ratio;
|
|
||||||
uint32_t par_width;
|
|
||||||
uint32_t par_height;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct vdec_output_frameinfo {
|
|
||||||
void __user *bufferaddr;
|
|
||||||
size_t offset;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
size_t len;
|
|
||||||
uint32_t flags;
|
|
||||||
int64_t time_stamp;
|
|
||||||
enum vdec_picture pic_type;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *client_data;
|
|
||||||
void *input_frame_clientdata;
|
|
||||||
struct vdec_framesize framesize;
|
|
||||||
enum vdec_interlaced_format interlaced_format;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_aspectratioinfo aspect_ratio_info;
|
|
||||||
};
|
|
||||||
union vdec_msgdata {
|
|
||||||
struct vdec_output_frameinfo output_frame;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *input_frame_clientdata;
|
|
||||||
};
|
|
||||||
struct vdec_msginfo {
|
|
||||||
uint32_t status_code;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t msgcode;
|
|
||||||
union vdec_msgdata msgdata;
|
|
||||||
size_t msgdatasize;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_framerate {
|
|
||||||
unsigned long fps_denominator;
|
|
||||||
unsigned long fps_numerator;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct vdec_h264_mv{
|
|
||||||
size_t size;
|
|
||||||
int count;
|
|
||||||
int pmem_fd;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int offset;
|
|
||||||
};
|
|
||||||
struct vdec_mv_buff_size{
|
|
||||||
int width;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int height;
|
|
||||||
int size;
|
|
||||||
int alignment;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#endif
|
|
@ -1,430 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 _MSM_VIDC_ENC_H_
|
|
||||||
#define _MSM_VIDC_ENC_H_
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_BASE 0x00000000
|
|
||||||
#define VEN_S_SUCCESS (VEN_S_BASE)
|
|
||||||
#define VEN_S_EFAIL (VEN_S_BASE+1)
|
|
||||||
#define VEN_S_EFATAL (VEN_S_BASE+2)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_EBADPARAM (VEN_S_BASE+3)
|
|
||||||
#define VEN_S_EINVALSTATE (VEN_S_BASE+4)
|
|
||||||
#define VEN_S_ENOSWRES (VEN_S_BASE+5)
|
|
||||||
#define VEN_S_ENOHWRES (VEN_S_BASE+6)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_EBUFFREQ (VEN_S_BASE+7)
|
|
||||||
#define VEN_S_EINVALCMD (VEN_S_BASE+8)
|
|
||||||
#define VEN_S_ETIMEOUT (VEN_S_BASE+9)
|
|
||||||
#define VEN_S_ENOREATMPT (VEN_S_BASE+10)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_ENOPREREQ (VEN_S_BASE+11)
|
|
||||||
#define VEN_S_ECMDQFULL (VEN_S_BASE+12)
|
|
||||||
#define VEN_S_ENOTSUPP (VEN_S_BASE+13)
|
|
||||||
#define VEN_S_ENOTIMPL (VEN_S_BASE+14)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_ENOTPMEM (VEN_S_BASE+15)
|
|
||||||
#define VEN_S_EFLUSHED (VEN_S_BASE+16)
|
|
||||||
#define VEN_S_EINSUFBUF (VEN_S_BASE+17)
|
|
||||||
#define VEN_S_ESAMESTATE (VEN_S_BASE+18)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_S_EINVALTRANS (VEN_S_BASE+19)
|
|
||||||
#define VEN_INTF_VER 1
|
|
||||||
#define VEN_MSG_INDICATION 0
|
|
||||||
#define VEN_MSG_INPUT_BUFFER_DONE 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_MSG_OUTPUT_BUFFER_DONE 2
|
|
||||||
#define VEN_MSG_NEED_OUTPUT_BUFFER 3
|
|
||||||
#define VEN_MSG_FLUSH_INPUT_DONE 4
|
|
||||||
#define VEN_MSG_FLUSH_OUPUT_DONE 5
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_MSG_START 6
|
|
||||||
#define VEN_MSG_STOP 7
|
|
||||||
#define VEN_MSG_PAUSE 8
|
|
||||||
#define VEN_MSG_RESUME 9
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_MSG_STOP_READING_MSG 10
|
|
||||||
#define VEN_BUFFLAG_EOS 0x00000001
|
|
||||||
#define VEN_BUFFLAG_ENDOFFRAME 0x00000010
|
|
||||||
#define VEN_BUFFLAG_SYNCFRAME 0x00000020
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_BUFFLAG_EXTRADATA 0x00000040
|
|
||||||
#define VEN_BUFFLAG_CODECCONFIG 0x00000080
|
|
||||||
#define VEN_EXTRADATA_NONE 0x001
|
|
||||||
#define VEN_EXTRADATA_QCOMFILLER 0x002
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_EXTRADATA_SLICEINFO 0x100
|
|
||||||
#define VEN_FRAME_TYPE_I 1
|
|
||||||
#define VEN_FRAME_TYPE_P 2
|
|
||||||
#define VEN_FRAME_TYPE_B 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_CODEC_MPEG4 1
|
|
||||||
#define VEN_CODEC_H264 2
|
|
||||||
#define VEN_CODEC_H263 3
|
|
||||||
#define VEN_PROFILE_MPEG4_SP 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_PROFILE_MPEG4_ASP 2
|
|
||||||
#define VEN_PROFILE_H264_BASELINE 3
|
|
||||||
#define VEN_PROFILE_H264_MAIN 4
|
|
||||||
#define VEN_PROFILE_H264_HIGH 5
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_PROFILE_H263_BASELINE 6
|
|
||||||
#define VEN_LEVEL_MPEG4_0 0x1
|
|
||||||
#define VEN_LEVEL_MPEG4_1 0x2
|
|
||||||
#define VEN_LEVEL_MPEG4_2 0x3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_MPEG4_3 0x4
|
|
||||||
#define VEN_LEVEL_MPEG4_4 0x5
|
|
||||||
#define VEN_LEVEL_MPEG4_5 0x6
|
|
||||||
#define VEN_LEVEL_MPEG4_3b 0x7
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_MPEG4_6 0x8
|
|
||||||
#define VEN_LEVEL_H264_1 0x9
|
|
||||||
#define VEN_LEVEL_H264_1b 0xA
|
|
||||||
#define VEN_LEVEL_H264_1p1 0xB
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_H264_1p2 0xC
|
|
||||||
#define VEN_LEVEL_H264_1p3 0xD
|
|
||||||
#define VEN_LEVEL_H264_2 0xE
|
|
||||||
#define VEN_LEVEL_H264_2p1 0xF
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_H264_2p2 0x10
|
|
||||||
#define VEN_LEVEL_H264_3 0x11
|
|
||||||
#define VEN_LEVEL_H264_3p1 0x12
|
|
||||||
#define VEN_LEVEL_H264_3p2 0x13
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_H264_4 0x14
|
|
||||||
#define VEN_LEVEL_H263_10 0x15
|
|
||||||
#define VEN_LEVEL_H263_20 0x16
|
|
||||||
#define VEN_LEVEL_H263_30 0x17
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_H263_40 0x18
|
|
||||||
#define VEN_LEVEL_H263_45 0x19
|
|
||||||
#define VEN_LEVEL_H263_50 0x1A
|
|
||||||
#define VEN_LEVEL_H263_60 0x1B
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_LEVEL_H263_70 0x1C
|
|
||||||
#define VEN_ENTROPY_MODEL_CAVLC 1
|
|
||||||
#define VEN_ENTROPY_MODEL_CABAC 2
|
|
||||||
#define VEN_CABAC_MODEL_0 1
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_CABAC_MODEL_1 2
|
|
||||||
#define VEN_CABAC_MODEL_2 3
|
|
||||||
#define VEN_DB_DISABLE 1
|
|
||||||
#define VEN_DB_ALL_BLKG_BNDRY 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_DB_SKIP_SLICE_BNDRY 3
|
|
||||||
#define VEN_MSLICE_OFF 1
|
|
||||||
#define VEN_MSLICE_CNT_MB 2
|
|
||||||
#define VEN_MSLICE_CNT_BYTE 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_MSLICE_GOB 4
|
|
||||||
#define VEN_RC_OFF 1
|
|
||||||
#define VEN_RC_VBR_VFR 2
|
|
||||||
#define VEN_RC_VBR_CFR 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_RC_CBR_VFR 4
|
|
||||||
#define VEN_RC_CBR_CFR 5
|
|
||||||
#define VEN_FLUSH_INPUT 1
|
|
||||||
#define VEN_FLUSH_OUTPUT 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_FLUSH_ALL 3
|
|
||||||
#define VEN_INPUTFMT_NV12 1
|
|
||||||
#define VEN_INPUTFMT_NV21 2
|
|
||||||
#define VEN_INPUTFMT_NV12_16M2KA 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_ROTATION_0 1
|
|
||||||
#define VEN_ROTATION_90 2
|
|
||||||
#define VEN_ROTATION_180 3
|
|
||||||
#define VEN_ROTATION_270 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_TIMEOUT_INFINITE 0xffffffff
|
|
||||||
#define VEN_IR_OFF 1
|
|
||||||
#define VEN_IR_CYCLIC 2
|
|
||||||
#define VEN_IR_RANDOM 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTLBASE_NENC 0x800
|
|
||||||
#define VEN_IOCTLBASE_ENC 0x850
|
|
||||||
struct venc_ioctl_msg{
|
|
||||||
void __user *in;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void __user *out;
|
|
||||||
};
|
|
||||||
#define VEN_IOCTL_SET_INTF_VERSION _IOW(VEN_IOCTLBASE_NENC, 0, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_READ_NEXT_MSG _IOWR(VEN_IOCTLBASE_NENC, 1, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_CMD_STOP_READ_MSG _IO(VEN_IOCTLBASE_NENC, 2)
|
|
||||||
#define VEN_IOCTL_SET_INPUT_BUFFER_REQ _IOW(VEN_IOCTLBASE_NENC, 3, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_INPUT_BUFFER_REQ _IOR(VEN_IOCTLBASE_NENC, 4, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_ALLOC_INPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 5, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_INPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 6, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_FREE_INPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 7, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_OUTPUT_BUFFER_REQ _IOW(VEN_IOCTLBASE_NENC, 8, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_OUTPUT_BUFFER_REQ _IOR(VEN_IOCTLBASE_NENC, 9, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_CMD_ALLOC_OUTPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 10, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_OUTPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 11, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_FREE_OUTPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 12, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_START _IO(VEN_IOCTLBASE_NENC, 13)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_CMD_ENCODE_FRAME _IOW(VEN_IOCTLBASE_NENC, 14, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_FILL_OUTPUT_BUFFER _IOW(VEN_IOCTLBASE_NENC, 15, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_FLUSH _IOW(VEN_IOCTLBASE_NENC, 16, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_PAUSE _IO(VEN_IOCTLBASE_NENC, 17)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_CMD_RESUME _IO(VEN_IOCTLBASE_NENC, 18)
|
|
||||||
#define VEN_IOCTL_CMD_STOP _IO(VEN_IOCTLBASE_NENC, 19)
|
|
||||||
#define VEN_IOCTL_SET_RECON_BUFFER _IOW(VEN_IOCTLBASE_NENC, 20, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_FREE_RECON_BUFFER _IOW(VEN_IOCTLBASE_NENC, 21, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_GET_RECON_BUFFER_SIZE _IOW(VEN_IOCTLBASE_NENC, 22, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_BASE_CFG _IOW(VEN_IOCTLBASE_ENC, 1, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_BASE_CFG _IOR(VEN_IOCTLBASE_ENC, 2, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_LIVE_MODE _IOW(VEN_IOCTLBASE_ENC, 3, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_GET_LIVE_MODE _IOR(VEN_IOCTLBASE_ENC, 4, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_CODEC_PROFILE _IOW(VEN_IOCTLBASE_ENC, 5, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_CODEC_PROFILE _IOR(VEN_IOCTLBASE_ENC, 6, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_PROFILE_LEVEL _IOW(VEN_IOCTLBASE_ENC, 7, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_GET_PROFILE_LEVEL _IOR(VEN_IOCTLBASE_ENC, 8, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_SHORT_HDR _IOW(VEN_IOCTLBASE_ENC, 9, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_SHORT_HDR _IOR(VEN_IOCTLBASE_ENC, 10, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_SESSION_QP _IOW(VEN_IOCTLBASE_ENC, 11, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_GET_SESSION_QP _IOR(VEN_IOCTLBASE_ENC, 12, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_INTRA_PERIOD _IOW(VEN_IOCTLBASE_ENC, 13, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_INTRA_PERIOD _IOR(VEN_IOCTLBASE_ENC, 14, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_CMD_REQUEST_IFRAME _IO(VEN_IOCTLBASE_ENC, 15)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_GET_CAPABILITY _IOR(VEN_IOCTLBASE_ENC, 16, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_SEQUENCE_HDR _IOR(VEN_IOCTLBASE_ENC, 17, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_ENTROPY_CFG _IOW(VEN_IOCTLBASE_ENC, 18, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_ENTROPY_CFG _IOR(VEN_IOCTLBASE_ENC, 19, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_DEBLOCKING_CFG _IOW(VEN_IOCTLBASE_ENC, 20, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_DEBLOCKING_CFG _IOR(VEN_IOCTLBASE_ENC, 21, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_INTRA_REFRESH _IOW(VEN_IOCTLBASE_ENC, 22, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_INTRA_REFRESH _IOR(VEN_IOCTLBASE_ENC, 23, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_MULTI_SLICE_CFG _IOW(VEN_IOCTLBASE_ENC, 24, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_MULTI_SLICE_CFG _IOR(VEN_IOCTLBASE_ENC, 25, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_RATE_CTRL_CFG _IOW(VEN_IOCTLBASE_ENC, 26, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_RATE_CTRL_CFG _IOR(VEN_IOCTLBASE_ENC, 27, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_VOP_TIMING_CFG _IOW(VEN_IOCTLBASE_ENC, 28, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_VOP_TIMING_CFG _IOR(VEN_IOCTLBASE_ENC, 29, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_FRAME_RATE _IOW(VEN_IOCTLBASE_ENC, 30, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_FRAME_RATE _IOR(VEN_IOCTLBASE_ENC, 31, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_TARGET_BITRATE _IOW(VEN_IOCTLBASE_ENC, 32, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_TARGET_BITRATE _IOR(VEN_IOCTLBASE_ENC, 33, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_ROTATION _IOW(VEN_IOCTLBASE_ENC, 34, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_ROTATION _IOR(VEN_IOCTLBASE_ENC, 35, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_HEC _IOW(VEN_IOCTLBASE_ENC, 36, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_HEC _IOR(VEN_IOCTLBASE_ENC, 37, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_DATA_PARTITION _IOW(VEN_IOCTLBASE_ENC, 38, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_DATA_PARTITION _IOR(VEN_IOCTLBASE_ENC, 39, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_RVLC _IOW(VEN_IOCTLBASE_ENC, 40, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_RVLC _IOR(VEN_IOCTLBASE_ENC, 41, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_AC_PREDICTION _IOW(VEN_IOCTLBASE_ENC, 42, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_AC_PREDICTION _IOR(VEN_IOCTLBASE_ENC, 43, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_QP_RANGE _IOW(VEN_IOCTLBASE_ENC, 44, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_QP_RANGE _IOR(VEN_IOCTLBASE_ENC, 45, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_NUMBER_INSTANCES _IOR(VEN_IOCTLBASE_ENC, 46, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_METABUFFER_MODE _IOW(VEN_IOCTLBASE_ENC, 47, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_EXTRADATA _IOW(VEN_IOCTLBASE_ENC, 48, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_GET_EXTRADATA _IOR(VEN_IOCTLBASE_ENC, 49, struct venc_ioctl_msg)
|
|
||||||
#define VEN_IOCTL_SET_SLICE_DELIVERY_MODE _IO(VEN_IOCTLBASE_ENC, 50)
|
|
||||||
#define VEN_IOCTL_SET_SPS_PPS_FOR_IDR _IOW(VEN_IOCTLBASE_ENC, 51, struct venc_ioctl_msg)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VEN_IOCTL_SET_VUI_BITSTREAM_RESTRICT_FLAG _IO(VEN_IOCTLBASE_ENC, 52)
|
|
||||||
struct venc_switch{
|
|
||||||
unsigned char status;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_allocatorproperty{
|
|
||||||
unsigned long mincount;
|
|
||||||
unsigned long maxcount;
|
|
||||||
unsigned long actualcount;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long datasize;
|
|
||||||
unsigned long suffixsize;
|
|
||||||
unsigned long alignment;
|
|
||||||
unsigned long bufpoolid;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_bufferpayload{
|
|
||||||
unsigned char *pbuffer;
|
|
||||||
size_t sz;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int fd;
|
|
||||||
unsigned int offset;
|
|
||||||
unsigned int maped_size;
|
|
||||||
unsigned long filled_len;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_buffer{
|
|
||||||
unsigned char *ptrbuffer;
|
|
||||||
unsigned long sz;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long len;
|
|
||||||
unsigned long offset;
|
|
||||||
long long timestamp;
|
|
||||||
unsigned long flags;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
void *clientdata;
|
|
||||||
};
|
|
||||||
struct venc_basecfg{
|
|
||||||
unsigned long input_width;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long input_height;
|
|
||||||
unsigned long dvs_width;
|
|
||||||
unsigned long dvs_height;
|
|
||||||
unsigned long codectype;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long fps_num;
|
|
||||||
unsigned long fps_den;
|
|
||||||
unsigned long targetbitrate;
|
|
||||||
unsigned long inputformat;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_profile{
|
|
||||||
unsigned long profile;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct ven_profilelevel{
|
|
||||||
unsigned long level;
|
|
||||||
};
|
|
||||||
struct venc_sessionqp{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long iframeqp;
|
|
||||||
unsigned long pframqp;
|
|
||||||
};
|
|
||||||
struct venc_qprange{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long maxqp;
|
|
||||||
unsigned long minqp;
|
|
||||||
};
|
|
||||||
struct venc_intraperiod{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long num_pframes;
|
|
||||||
unsigned long num_bframes;
|
|
||||||
};
|
|
||||||
struct venc_seqheader{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned char *hdrbufptr;
|
|
||||||
unsigned long bufsize;
|
|
||||||
unsigned long hdrlen;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_capability{
|
|
||||||
unsigned long codec_types;
|
|
||||||
unsigned long maxframe_width;
|
|
||||||
unsigned long maxframe_height;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long maxtarget_bitrate;
|
|
||||||
unsigned long maxframe_rate;
|
|
||||||
unsigned long input_formats;
|
|
||||||
unsigned char dvs;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_entropycfg{
|
|
||||||
unsigned longentropysel;
|
|
||||||
unsigned long cabacmodel;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_dbcfg{
|
|
||||||
unsigned long db_mode;
|
|
||||||
unsigned long slicealpha_offset;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long slicebeta_offset;
|
|
||||||
};
|
|
||||||
struct venc_intrarefresh{
|
|
||||||
unsigned long irmode;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long mbcount;
|
|
||||||
};
|
|
||||||
struct venc_multiclicecfg{
|
|
||||||
unsigned long mslice_mode;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long mslice_size;
|
|
||||||
};
|
|
||||||
struct venc_bufferflush{
|
|
||||||
unsigned long flush_mode;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_ratectrlcfg{
|
|
||||||
unsigned long rcmode;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_voptimingcfg{
|
|
||||||
unsigned long voptime_resolution;
|
|
||||||
};
|
|
||||||
struct venc_framerate{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long fps_denominator;
|
|
||||||
unsigned long fps_numerator;
|
|
||||||
};
|
|
||||||
struct venc_targetbitrate{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long target_bitrate;
|
|
||||||
};
|
|
||||||
struct venc_rotation{
|
|
||||||
unsigned long rotation;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_timeout{
|
|
||||||
unsigned long millisec;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct venc_headerextension{
|
|
||||||
unsigned long header_extension;
|
|
||||||
};
|
|
||||||
struct venc_msg{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long statuscode;
|
|
||||||
unsigned long msgcode;
|
|
||||||
struct venc_buffer buf;
|
|
||||||
unsigned long msgdata_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct venc_recon_addr{
|
|
||||||
unsigned char *pbuffer;
|
|
||||||
unsigned long buffer_size;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
unsigned long pmem_fd;
|
|
||||||
unsigned long offset;
|
|
||||||
};
|
|
||||||
struct venc_recon_buff_size{
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int width;
|
|
||||||
int height;
|
|
||||||
int size;
|
|
||||||
int alignment;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
File diff suppressed because it is too large
Load Diff
@ -1,100 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_GEMINI_H
|
|
||||||
#define __LINUX_MSM_GEMINI_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GMN_IOCTL_MAGIC 'g'
|
|
||||||
#define MSM_GMN_IOCTL_GET_HW_VERSION _IOW(MSM_GMN_IOCTL_MAGIC, 1, struct msm_gemini_hw_cmd *)
|
|
||||||
#define MSM_GMN_IOCTL_RESET _IOW(MSM_GMN_IOCTL_MAGIC, 2, struct msm_gemini_ctrl_cmd *)
|
|
||||||
#define MSM_GMN_IOCTL_STOP _IOW(MSM_GMN_IOCTL_MAGIC, 3, struct msm_gemini_hw_cmds *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GMN_IOCTL_START _IOW(MSM_GMN_IOCTL_MAGIC, 4, struct msm_gemini_hw_cmds *)
|
|
||||||
#define MSM_GMN_IOCTL_INPUT_BUF_ENQUEUE _IOW(MSM_GMN_IOCTL_MAGIC, 5, struct msm_gemini_buf *)
|
|
||||||
#define MSM_GMN_IOCTL_INPUT_GET _IOW(MSM_GMN_IOCTL_MAGIC, 6, struct msm_gemini_buf *)
|
|
||||||
#define MSM_GMN_IOCTL_INPUT_GET_UNBLOCK _IOW(MSM_GMN_IOCTL_MAGIC, 7, int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GMN_IOCTL_OUTPUT_BUF_ENQUEUE _IOW(MSM_GMN_IOCTL_MAGIC, 8, struct msm_gemini_buf *)
|
|
||||||
#define MSM_GMN_IOCTL_OUTPUT_GET _IOW(MSM_GMN_IOCTL_MAGIC, 9, struct msm_gemini_buf *)
|
|
||||||
#define MSM_GMN_IOCTL_OUTPUT_GET_UNBLOCK _IOW(MSM_GMN_IOCTL_MAGIC, 10, int)
|
|
||||||
#define MSM_GMN_IOCTL_EVT_GET _IOW(MSM_GMN_IOCTL_MAGIC, 11, struct msm_gemini_ctrl_cmd *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GMN_IOCTL_EVT_GET_UNBLOCK _IOW(MSM_GMN_IOCTL_MAGIC, 12, int)
|
|
||||||
#define MSM_GMN_IOCTL_HW_CMD _IOW(MSM_GMN_IOCTL_MAGIC, 13, struct msm_gemini_hw_cmd *)
|
|
||||||
#define MSM_GMN_IOCTL_HW_CMDS _IOW(MSM_GMN_IOCTL_MAGIC, 14, struct msm_gemini_hw_cmds *)
|
|
||||||
#define MSM_GMN_IOCTL_TEST_DUMP_REGION _IOW(MSM_GMN_IOCTL_MAGIC, 15, unsigned long)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GEMINI_MODE_REALTIME_ENCODE 0
|
|
||||||
#define MSM_GEMINI_MODE_OFFLINE_ENCODE 1
|
|
||||||
#define MSM_GEMINI_MODE_REALTIME_ROTATION 2
|
|
||||||
#define MSM_GEMINI_MODE_OFFLINE_ROTATION 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_gemini_ctrl_cmd {
|
|
||||||
uint32_t type;
|
|
||||||
uint32_t len;
|
|
||||||
void *value;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define MSM_GEMINI_EVT_RESET 0
|
|
||||||
#define MSM_GEMINI_EVT_FRAMEDONE 1
|
|
||||||
#define MSM_GEMINI_EVT_ERR 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_gemini_buf {
|
|
||||||
uint32_t type;
|
|
||||||
int fd;
|
|
||||||
void *vaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t y_off;
|
|
||||||
uint32_t y_len;
|
|
||||||
uint32_t framedone_len;
|
|
||||||
uint32_t cbcr_off;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t cbcr_len;
|
|
||||||
uint32_t num_of_mcu_rows;
|
|
||||||
uint32_t offset;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_READ 0
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_WRITE 1
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_WRITE_OR 2
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_UWAIT 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_MWAIT 4
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_MDELAY 5
|
|
||||||
#define MSM_GEMINI_HW_CMD_TYPE_UDELAY 6
|
|
||||||
struct msm_gemini_hw_cmd {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t type:4;
|
|
||||||
uint32_t n:12;
|
|
||||||
uint32_t offset:16;
|
|
||||||
uint32_t mask;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
union {
|
|
||||||
uint32_t data;
|
|
||||||
uint32_t *pdata;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_gemini_hw_cmds {
|
|
||||||
uint32_t m;
|
|
||||||
struct msm_gemini_hw_cmd hw_cmd[1];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,61 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_GESTURES_H
|
|
||||||
#define __LINUX_MSM_GESTURES_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#include <media/msm_camera.h>
|
|
||||||
#define MSM_GES_IOCTL_CTRL_COMMAND _IOW('V', BASE_VIDIOC_PRIVATE + 20, struct v4l2_control)
|
|
||||||
#define VIDIOC_MSM_GESTURE_EVT _IOWR('V', BASE_VIDIOC_PRIVATE + 21, struct v4l2_event)
|
|
||||||
#define MSM_GES_GET_EVT_PAYLOAD _IOW('V', BASE_VIDIOC_PRIVATE + 22, struct msm_ges_evt)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VIDIOC_MSM_GESTURE_CAM_EVT _IOWR('V', BASE_VIDIOC_PRIVATE + 23, int)
|
|
||||||
#define MSM_GES_RESP_V4L2 MSM_CAM_RESP_MAX
|
|
||||||
#define MSM_GES_RESP_MAX (MSM_GES_RESP_V4L2 + 1)
|
|
||||||
#define MSM_SVR_RESP_MAX MSM_GES_RESP_MAX
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_V4L2_GES_BASE 100
|
|
||||||
#define MSM_V4L2_GES_OPEN (MSM_V4L2_GES_BASE + 0)
|
|
||||||
#define MSM_V4L2_GES_CLOSE (MSM_V4L2_GES_BASE + 1)
|
|
||||||
#define MSM_V4L2_GES_CAM_OPEN (MSM_V4L2_GES_BASE + 2)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_V4L2_GES_CAM_CLOSE (MSM_V4L2_GES_BASE + 3)
|
|
||||||
#define MSM_GES_APP_EVT_MIN (V4L2_EVENT_PRIVATE_START + 0x14)
|
|
||||||
#define MSM_GES_APP_NOTIFY_EVENT (MSM_GES_APP_EVT_MIN + 0)
|
|
||||||
#define MSM_GES_APP_NOTIFY_ERROR_EVENT (MSM_GES_APP_EVT_MIN + 1)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_GES_APP_EVT_MAX (MSM_GES_APP_EVT_MIN + 2)
|
|
||||||
#define MSM_GESTURE_CID_CTRL_CMD V4L2_CID_BRIGHTNESS
|
|
||||||
#define MAX_GES_EVENTS 25
|
|
||||||
struct msm_ges_ctrl_cmd {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int type;
|
|
||||||
void *value;
|
|
||||||
int len;
|
|
||||||
int fd;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t cookie;
|
|
||||||
};
|
|
||||||
struct msm_ges_evt {
|
|
||||||
void *evt_data;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int evt_len;
|
|
||||||
};
|
|
||||||
#endif
|
|
@ -1,429 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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 __MSM_ISP_H__
|
|
||||||
#define __MSM_ISP_H__
|
|
||||||
#define BIT(nr) (1UL << (nr))
|
|
||||||
#define MSG_ID_RESET_ACK 0
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_START_ACK 1
|
|
||||||
#define MSG_ID_STOP_ACK 2
|
|
||||||
#define MSG_ID_UPDATE_ACK 3
|
|
||||||
#define MSG_ID_OUTPUT_P 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_OUTPUT_T 5
|
|
||||||
#define MSG_ID_OUTPUT_S 6
|
|
||||||
#define MSG_ID_OUTPUT_V 7
|
|
||||||
#define MSG_ID_SNAPSHOT_DONE 8
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_STATS_AEC 9
|
|
||||||
#define MSG_ID_STATS_AF 10
|
|
||||||
#define MSG_ID_STATS_AWB 11
|
|
||||||
#define MSG_ID_STATS_RS 12
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_STATS_CS 13
|
|
||||||
#define MSG_ID_STATS_IHIST 14
|
|
||||||
#define MSG_ID_STATS_SKIN 15
|
|
||||||
#define MSG_ID_EPOCH1 16
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_EPOCH2 17
|
|
||||||
#define MSG_ID_SYNC_TIMER0_DONE 18
|
|
||||||
#define MSG_ID_SYNC_TIMER1_DONE 19
|
|
||||||
#define MSG_ID_SYNC_TIMER2_DONE 20
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_ASYNC_TIMER0_DONE 21
|
|
||||||
#define MSG_ID_ASYNC_TIMER1_DONE 22
|
|
||||||
#define MSG_ID_ASYNC_TIMER2_DONE 23
|
|
||||||
#define MSG_ID_ASYNC_TIMER3_DONE 24
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_AE_OVERFLOW 25
|
|
||||||
#define MSG_ID_AF_OVERFLOW 26
|
|
||||||
#define MSG_ID_AWB_OVERFLOW 27
|
|
||||||
#define MSG_ID_RS_OVERFLOW 28
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_CS_OVERFLOW 29
|
|
||||||
#define MSG_ID_IHIST_OVERFLOW 30
|
|
||||||
#define MSG_ID_SKIN_OVERFLOW 31
|
|
||||||
#define MSG_ID_AXI_ERROR 32
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_CAMIF_OVERFLOW 33
|
|
||||||
#define MSG_ID_VIOLATION 34
|
|
||||||
#define MSG_ID_CAMIF_ERROR 35
|
|
||||||
#define MSG_ID_BUS_OVERFLOW 36
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_SOF_ACK 37
|
|
||||||
#define MSG_ID_STOP_REC_ACK 38
|
|
||||||
#define MSG_ID_STATS_AWB_AEC 39
|
|
||||||
#define MSG_ID_OUTPUT_PRIMARY 40
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_OUTPUT_SECONDARY 41
|
|
||||||
#define MSG_ID_STATS_COMPOSITE 42
|
|
||||||
#define MSG_ID_OUTPUT_TERTIARY1 43
|
|
||||||
#define MSG_ID_STOP_LS_ACK 44
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_OUTPUT_TERTIARY2 45
|
|
||||||
#define MSG_ID_STATS_BG 46
|
|
||||||
#define MSG_ID_STATS_BF 47
|
|
||||||
#define MSG_ID_STATS_BHIST 48
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSG_ID_RDI0_UPDATE_ACK 49
|
|
||||||
#define MSG_ID_RDI1_UPDATE_ACK 50
|
|
||||||
#define MSG_ID_RDI2_UPDATE_ACK 51
|
|
||||||
#define VFE_CMD_DUMMY_0 0
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_SET_CLK 1
|
|
||||||
#define VFE_CMD_RESET 2
|
|
||||||
#define VFE_CMD_START 3
|
|
||||||
#define VFE_CMD_TEST_GEN_START 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_OPERATION_CFG 5
|
|
||||||
#define VFE_CMD_AXI_OUT_CFG 6
|
|
||||||
#define VFE_CMD_CAMIF_CFG 7
|
|
||||||
#define VFE_CMD_AXI_INPUT_CFG 8
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_BLACK_LEVEL_CFG 9
|
|
||||||
#define VFE_CMD_MESH_ROLL_OFF_CFG 10
|
|
||||||
#define VFE_CMD_DEMUX_CFG 11
|
|
||||||
#define VFE_CMD_FOV_CFG 12
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_MAIN_SCALER_CFG 13
|
|
||||||
#define VFE_CMD_WB_CFG 14
|
|
||||||
#define VFE_CMD_COLOR_COR_CFG 15
|
|
||||||
#define VFE_CMD_RGB_G_CFG 16
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_LA_CFG 17
|
|
||||||
#define VFE_CMD_CHROMA_EN_CFG 18
|
|
||||||
#define VFE_CMD_CHROMA_SUP_CFG 19
|
|
||||||
#define VFE_CMD_MCE_CFG 20
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_SK_ENHAN_CFG 21
|
|
||||||
#define VFE_CMD_ASF_CFG 22
|
|
||||||
#define VFE_CMD_S2Y_CFG 23
|
|
||||||
#define VFE_CMD_S2CbCr_CFG 24
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_CHROMA_SUBS_CFG 25
|
|
||||||
#define VFE_CMD_OUT_CLAMP_CFG 26
|
|
||||||
#define VFE_CMD_FRAME_SKIP_CFG 27
|
|
||||||
#define VFE_CMD_DUMMY_1 28
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DUMMY_2 29
|
|
||||||
#define VFE_CMD_DUMMY_3 30
|
|
||||||
#define VFE_CMD_UPDATE 31
|
|
||||||
#define VFE_CMD_BL_LVL_UPDATE 32
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DEMUX_UPDATE 33
|
|
||||||
#define VFE_CMD_FOV_UPDATE 34
|
|
||||||
#define VFE_CMD_MAIN_SCALER_UPDATE 35
|
|
||||||
#define VFE_CMD_WB_UPDATE 36
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_COLOR_COR_UPDATE 37
|
|
||||||
#define VFE_CMD_RGB_G_UPDATE 38
|
|
||||||
#define VFE_CMD_LA_UPDATE 39
|
|
||||||
#define VFE_CMD_CHROMA_EN_UPDATE 40
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_CHROMA_SUP_UPDATE 41
|
|
||||||
#define VFE_CMD_MCE_UPDATE 42
|
|
||||||
#define VFE_CMD_SK_ENHAN_UPDATE 43
|
|
||||||
#define VFE_CMD_S2CbCr_UPDATE 44
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_S2Y_UPDATE 45
|
|
||||||
#define VFE_CMD_ASF_UPDATE 46
|
|
||||||
#define VFE_CMD_FRAME_SKIP_UPDATE 47
|
|
||||||
#define VFE_CMD_CAMIF_FRAME_UPDATE 48
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_AF_UPDATE 49
|
|
||||||
#define VFE_CMD_STATS_AE_UPDATE 50
|
|
||||||
#define VFE_CMD_STATS_AWB_UPDATE 51
|
|
||||||
#define VFE_CMD_STATS_RS_UPDATE 52
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_CS_UPDATE 53
|
|
||||||
#define VFE_CMD_STATS_SKIN_UPDATE 54
|
|
||||||
#define VFE_CMD_STATS_IHIST_UPDATE 55
|
|
||||||
#define VFE_CMD_DUMMY_4 56
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_EPOCH1_ACK 57
|
|
||||||
#define VFE_CMD_EPOCH2_ACK 58
|
|
||||||
#define VFE_CMD_START_RECORDING 59
|
|
||||||
#define VFE_CMD_STOP_RECORDING 60
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DUMMY_5 61
|
|
||||||
#define VFE_CMD_DUMMY_6 62
|
|
||||||
#define VFE_CMD_CAPTURE 63
|
|
||||||
#define VFE_CMD_DUMMY_7 64
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STOP 65
|
|
||||||
#define VFE_CMD_GET_HW_VERSION 66
|
|
||||||
#define VFE_CMD_GET_FRAME_SKIP_COUNTS 67
|
|
||||||
#define VFE_CMD_OUTPUT1_BUFFER_ENQ 68
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_OUTPUT2_BUFFER_ENQ 69
|
|
||||||
#define VFE_CMD_OUTPUT3_BUFFER_ENQ 70
|
|
||||||
#define VFE_CMD_JPEG_OUT_BUF_ENQ 71
|
|
||||||
#define VFE_CMD_RAW_OUT_BUF_ENQ 72
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_RAW_IN_BUF_ENQ 73
|
|
||||||
#define VFE_CMD_STATS_AF_ENQ 74
|
|
||||||
#define VFE_CMD_STATS_AE_ENQ 75
|
|
||||||
#define VFE_CMD_STATS_AWB_ENQ 76
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_RS_ENQ 77
|
|
||||||
#define VFE_CMD_STATS_CS_ENQ 78
|
|
||||||
#define VFE_CMD_STATS_SKIN_ENQ 79
|
|
||||||
#define VFE_CMD_STATS_IHIST_ENQ 80
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DUMMY_8 81
|
|
||||||
#define VFE_CMD_JPEG_ENC_CFG 82
|
|
||||||
#define VFE_CMD_DUMMY_9 83
|
|
||||||
#define VFE_CMD_STATS_AF_START 84
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_AF_STOP 85
|
|
||||||
#define VFE_CMD_STATS_AE_START 86
|
|
||||||
#define VFE_CMD_STATS_AE_STOP 87
|
|
||||||
#define VFE_CMD_STATS_AWB_START 88
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_AWB_STOP 89
|
|
||||||
#define VFE_CMD_STATS_RS_START 90
|
|
||||||
#define VFE_CMD_STATS_RS_STOP 91
|
|
||||||
#define VFE_CMD_STATS_CS_START 92
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_CS_STOP 93
|
|
||||||
#define VFE_CMD_STATS_SKIN_START 94
|
|
||||||
#define VFE_CMD_STATS_SKIN_STOP 95
|
|
||||||
#define VFE_CMD_STATS_IHIST_START 96
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_IHIST_STOP 97
|
|
||||||
#define VFE_CMD_DUMMY_10 98
|
|
||||||
#define VFE_CMD_SYNC_TIMER_SETTING 99
|
|
||||||
#define VFE_CMD_ASYNC_TIMER_SETTING 100
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_LIVESHOT 101
|
|
||||||
#define VFE_CMD_LA_SETUP 102
|
|
||||||
#define VFE_CMD_LINEARIZATION_CFG 103
|
|
||||||
#define VFE_CMD_DEMOSAICV3 104
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DEMOSAICV3_ABCC_CFG 105
|
|
||||||
#define VFE_CMD_DEMOSAICV3_DBCC_CFG 106
|
|
||||||
#define VFE_CMD_DEMOSAICV3_DBPC_CFG 107
|
|
||||||
#define VFE_CMD_DEMOSAICV3_ABF_CFG 108
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_DEMOSAICV3_ABCC_UPDATE 109
|
|
||||||
#define VFE_CMD_DEMOSAICV3_DBCC_UPDATE 110
|
|
||||||
#define VFE_CMD_DEMOSAICV3_DBPC_UPDATE 111
|
|
||||||
#define VFE_CMD_XBAR_CFG 112
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_MODULE_CFG 113
|
|
||||||
#define VFE_CMD_ZSL 114
|
|
||||||
#define VFE_CMD_LINEARIZATION_UPDATE 115
|
|
||||||
#define VFE_CMD_DEMOSAICV3_ABF_UPDATE 116
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_CLF_CFG 117
|
|
||||||
#define VFE_CMD_CLF_LUMA_UPDATE 118
|
|
||||||
#define VFE_CMD_CLF_CHROMA_UPDATE 119
|
|
||||||
#define VFE_CMD_PCA_ROLL_OFF_CFG 120
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_PCA_ROLL_OFF_UPDATE 121
|
|
||||||
#define VFE_CMD_GET_REG_DUMP 122
|
|
||||||
#define VFE_CMD_GET_LINEARIZATON_TABLE 123
|
|
||||||
#define VFE_CMD_GET_MESH_ROLLOFF_TABLE 124
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_GET_PCA_ROLLOFF_TABLE 125
|
|
||||||
#define VFE_CMD_GET_RGB_G_TABLE 126
|
|
||||||
#define VFE_CMD_GET_LA_TABLE 127
|
|
||||||
#define VFE_CMD_DEMOSAICV3_UPDATE 128
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_ACTIVE_REGION_CFG 129
|
|
||||||
#define VFE_CMD_COLOR_PROCESSING_CONFIG 130
|
|
||||||
#define VFE_CMD_STATS_WB_AEC_CONFIG 131
|
|
||||||
#define VFE_CMD_STATS_WB_AEC_UPDATE 132
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_Y_GAMMA_CONFIG 133
|
|
||||||
#define VFE_CMD_SCALE_OUTPUT1_CONFIG 134
|
|
||||||
#define VFE_CMD_SCALE_OUTPUT2_CONFIG 135
|
|
||||||
#define VFE_CMD_CAPTURE_RAW 136
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STOP_LIVESHOT 137
|
|
||||||
#define VFE_CMD_RECONFIG_VFE 138
|
|
||||||
#define VFE_CMD_STATS_REQBUF 139
|
|
||||||
#define VFE_CMD_STATS_ENQUEUEBUF 140
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_FLUSH_BUFQ 141
|
|
||||||
#define VFE_CMD_STATS_UNREGBUF 142
|
|
||||||
#define VFE_CMD_STATS_BG_START 143
|
|
||||||
#define VFE_CMD_STATS_BG_STOP 144
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_STATS_BF_START 145
|
|
||||||
#define VFE_CMD_STATS_BF_STOP 146
|
|
||||||
#define VFE_CMD_STATS_BHIST_START 147
|
|
||||||
#define VFE_CMD_STATS_BHIST_STOP 148
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_RESET_2 149
|
|
||||||
#define VFE_CMD_FOV_ENC_CFG 150
|
|
||||||
#define VFE_CMD_FOV_VIEW_CFG 151
|
|
||||||
#define VFE_CMD_FOV_ENC_UPDATE 152
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_FOV_VIEW_UPDATE 153
|
|
||||||
#define VFE_CMD_SCALER_ENC_CFG 154
|
|
||||||
#define VFE_CMD_SCALER_VIEW_CFG 155
|
|
||||||
#define VFE_CMD_SCALER_ENC_UPDATE 156
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_SCALER_VIEW_UPDATE 157
|
|
||||||
#define VFE_CMD_COLORXFORM_ENC_CFG 158
|
|
||||||
#define VFE_CMD_COLORXFORM_VIEW_CFG 159
|
|
||||||
#define VFE_CMD_COLORXFORM_ENC_UPDATE 160
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_CMD_COLORXFORM_VIEW_UPDATE 161
|
|
||||||
#define VFE_CMD_TEST_GEN_CFG 162
|
|
||||||
struct msm_isp_cmd {
|
|
||||||
int32_t id;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint16_t length;
|
|
||||||
void *value;
|
|
||||||
};
|
|
||||||
#define VPE_CMD_DUMMY_0 0
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VPE_CMD_INIT 1
|
|
||||||
#define VPE_CMD_DEINIT 2
|
|
||||||
#define VPE_CMD_ENABLE 3
|
|
||||||
#define VPE_CMD_DISABLE 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VPE_CMD_RESET 5
|
|
||||||
#define VPE_CMD_FLUSH 6
|
|
||||||
#define VPE_CMD_OPERATION_MODE_CFG 7
|
|
||||||
#define VPE_CMD_INPUT_PLANE_CFG 8
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VPE_CMD_OUTPUT_PLANE_CFG 9
|
|
||||||
#define VPE_CMD_INPUT_PLANE_UPDATE 10
|
|
||||||
#define VPE_CMD_SCALE_CFG_TYPE 11
|
|
||||||
#define VPE_CMD_ZOOM 13
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VPE_CMD_MAX 14
|
|
||||||
#define MSM_PP_CMD_TYPE_NOT_USED 0
|
|
||||||
#define MSM_PP_CMD_TYPE_VPE 1
|
|
||||||
#define MSM_PP_CMD_TYPE_MCTL 2
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MCTL_CMD_DUMMY_0 0
|
|
||||||
#define MCTL_CMD_GET_FRAME_BUFFER 1
|
|
||||||
#define MCTL_CMD_PUT_FRAME_BUFFER 2
|
|
||||||
#define MCTL_CMD_DIVERT_FRAME_PP_PATH 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MCTL_PP_EVENT_NOTUSED 0
|
|
||||||
#define MCTL_PP_EVENT_CMD_ACK 1
|
|
||||||
#define VPE_OPERATION_MODE_CFG_LEN 4
|
|
||||||
#define VPE_INPUT_PLANE_CFG_LEN 24
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VPE_OUTPUT_PLANE_CFG_LEN 20
|
|
||||||
#define VPE_INPUT_PLANE_UPDATE_LEN 12
|
|
||||||
#define VPE_SCALER_CONFIG_LEN 260
|
|
||||||
#define VPE_DIS_OFFSET_CFG_LEN 12
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define CAPTURE_WIDTH 1280
|
|
||||||
#define IMEM_Y_SIZE (CAPTURE_WIDTH*16)
|
|
||||||
#define IMEM_CBCR_SIZE (CAPTURE_WIDTH*8)
|
|
||||||
#define IMEM_Y_PING_OFFSET 0x2E000000
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define IMEM_CBCR_PING_OFFSET (IMEM_Y_PING_OFFSET + IMEM_Y_SIZE)
|
|
||||||
#define IMEM_Y_PONG_OFFSET (IMEM_CBCR_PING_OFFSET + IMEM_CBCR_SIZE)
|
|
||||||
#define IMEM_CBCR_PONG_OFFSET (IMEM_Y_PONG_OFFSET + IMEM_Y_SIZE)
|
|
||||||
struct msm_vpe_op_mode_cfg {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint8_t op_mode_cfg[VPE_OPERATION_MODE_CFG_LEN];
|
|
||||||
};
|
|
||||||
struct msm_vpe_input_plane_cfg {
|
|
||||||
uint8_t input_plane_cfg[VPE_INPUT_PLANE_CFG_LEN];
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
struct msm_vpe_output_plane_cfg {
|
|
||||||
uint8_t output_plane_cfg[VPE_OUTPUT_PLANE_CFG_LEN];
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_vpe_input_plane_update_cfg {
|
|
||||||
uint8_t input_plane_update_cfg[VPE_INPUT_PLANE_UPDATE_LEN];
|
|
||||||
};
|
|
||||||
struct msm_vpe_scaler_cfg {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint8_t scaler_cfg[VPE_SCALER_CONFIG_LEN];
|
|
||||||
};
|
|
||||||
struct msm_vpe_flush_frame_buffer {
|
|
||||||
uint32_t src_buf_handle;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t dest_buf_handle;
|
|
||||||
int path;
|
|
||||||
};
|
|
||||||
struct msm_mctl_pp_frame_buffer {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t buf_handle;
|
|
||||||
int path;
|
|
||||||
};
|
|
||||||
struct msm_mctl_pp_divert_pp {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
int path;
|
|
||||||
int enable;
|
|
||||||
};
|
|
||||||
struct msm_vpe_clock_rate {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t rate;
|
|
||||||
};
|
|
||||||
struct msm_pp_crop {
|
|
||||||
uint32_t src_x;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t src_y;
|
|
||||||
uint32_t src_w;
|
|
||||||
uint32_t src_h;
|
|
||||||
uint32_t dst_x;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t dst_y;
|
|
||||||
uint32_t dst_w;
|
|
||||||
uint32_t dst_h;
|
|
||||||
uint8_t update_flag;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
#define MSM_MCTL_PP_VPE_FRAME_ACK (1<<0)
|
|
||||||
#define MSM_MCTL_PP_VPE_FRAME_TO_APP (1<<1)
|
|
||||||
struct msm_mctl_pp_frame_cmd {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t cookie;
|
|
||||||
uint8_t vpe_output_action;
|
|
||||||
uint32_t src_buf_handle;
|
|
||||||
uint32_t dest_buf_handle;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_pp_crop crop;
|
|
||||||
int path;
|
|
||||||
};
|
|
||||||
#define VFE_OUTPUTS_MAIN_AND_PREVIEW BIT(0)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_OUTPUTS_MAIN_AND_VIDEO BIT(1)
|
|
||||||
#define VFE_OUTPUTS_MAIN_AND_THUMB BIT(2)
|
|
||||||
#define VFE_OUTPUTS_THUMB_AND_MAIN BIT(3)
|
|
||||||
#define VFE_OUTPUTS_PREVIEW_AND_VIDEO BIT(4)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_OUTPUTS_VIDEO_AND_PREVIEW BIT(5)
|
|
||||||
#define VFE_OUTPUTS_PREVIEW BIT(6)
|
|
||||||
#define VFE_OUTPUTS_VIDEO BIT(7)
|
|
||||||
#define VFE_OUTPUTS_RAW BIT(8)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define VFE_OUTPUTS_JPEG_AND_THUMB BIT(9)
|
|
||||||
#define VFE_OUTPUTS_THUMB_AND_JPEG BIT(10)
|
|
||||||
#define VFE_OUTPUTS_RDI0 BIT(11)
|
|
||||||
#define VFE_OUTPUTS_RDI1 BIT(12)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_frame_info {
|
|
||||||
uint32_t inst_handle;
|
|
||||||
uint32_t path;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#endif
|
|
@ -1,106 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
****************************************************************************
|
|
||||||
***
|
|
||||||
*** 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_MERCURY_H
|
|
||||||
#define __LINUX_MSM_MERCURY_H
|
|
||||||
#include <linux/types.h>
|
|
||||||
#include <linux/ioctl.h>
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MERCURY_HW_VERSION_REG 0x0004
|
|
||||||
#define OUTPUT_H2V1 0
|
|
||||||
#define OUTPUT_H2V2 1
|
|
||||||
#define OUTPUT_BYTE 6
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MERCURY_MODE_REALTIME_ENCODE 0
|
|
||||||
#define MSM_MERCURY_MODE_OFFLINE_ENCODE 1
|
|
||||||
#define MSM_MERCURY_MODE_REALTIME_ROTATION 2
|
|
||||||
#define MSM_MERCURY_MODE_OFFLINE_ROTATION 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MERCURY_EVT_RESET 1
|
|
||||||
#define MSM_MERCURY_EVT_FRAMEDONE 2
|
|
||||||
#define MSM_MERCURY_EVT_ERR 3
|
|
||||||
#define MSM_MERCURY_EVT_UNBLOCK 4
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_READ 0
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_WRITE 1
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_WRITE_OR 2
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_UWAIT 3
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_MWAIT 4
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_MDELAY 5
|
|
||||||
#define MSM_MERCURY_HW_CMD_TYPE_UDELAY 6
|
|
||||||
#define MSM_MCR_IOCTL_MAGIC 'g'
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MCR_IOCTL_GET_HW_VERSION _IOW(MSM_MCR_IOCTL_MAGIC, 1, struct msm_mercury_hw_cmd *)
|
|
||||||
#define MSM_MCR_IOCTL_RESET _IOW(MSM_MCR_IOCTL_MAGIC, 2, struct msm_mercury_ctrl_cmd *)
|
|
||||||
#define MSM_MCR_IOCTL_STOP _IOW(MSM_MCR_IOCTL_MAGIC, 3, struct msm_mercury_hw_cmds *)
|
|
||||||
#define MSM_MCR_IOCTL_START _IOW(MSM_MCR_IOCTL_MAGIC, 4, struct msm_mercury_hw_cmds *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MCR_IOCTL_INPUT_BUF_CFG _IOW(MSM_MCR_IOCTL_MAGIC, 5, struct msm_mercury_buf *)
|
|
||||||
#define MSM_MCR_IOCTL_INPUT_GET _IOW(MSM_MCR_IOCTL_MAGIC, 6, struct msm_mercury_buf *)
|
|
||||||
#define MSM_MCR_IOCTL_INPUT_GET_UNBLOCK _IOW(MSM_MCR_IOCTL_MAGIC, 7, int)
|
|
||||||
#define MSM_MCR_IOCTL_OUTPUT_BUF_CFG _IOW(MSM_MCR_IOCTL_MAGIC, 8, struct msm_mercury_buf *)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MCR_IOCTL_OUTPUT_GET _IOW(MSM_MCR_IOCTL_MAGIC, 9, struct msm_mercury_buf *)
|
|
||||||
#define MSM_MCR_IOCTL_OUTPUT_GET_UNBLOCK _IOW(MSM_MCR_IOCTL_MAGIC, 10, int)
|
|
||||||
#define MSM_MCR_IOCTL_EVT_GET _IOW(MSM_MCR_IOCTL_MAGIC, 11, struct msm_mercury_ctrl_cmd *)
|
|
||||||
#define MSM_MCR_IOCTL_EVT_GET_UNBLOCK _IOW(MSM_MCR_IOCTL_MAGIC, 12, int)
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
#define MSM_MCR_IOCTL_HW_CMD _IOW(MSM_MCR_IOCTL_MAGIC, 13, struct msm_mercury_hw_cmd *)
|
|
||||||
#define MSM_MCR_IOCTL_HW_CMDS _IOW(MSM_MCR_IOCTL_MAGIC, 14, struct msm_mercury_hw_cmds *)
|
|
||||||
#define MSM_MCR_IOCTL_TEST_DUMP_REGION _IOW(MSM_MCR_IOCTL_MAGIC, 15, unsigned long)
|
|
||||||
struct msm_mercury_ctrl_cmd {
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t type;
|
|
||||||
uint32_t len;
|
|
||||||
void *value;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_mercury_buf {
|
|
||||||
uint32_t type;
|
|
||||||
int fd;
|
|
||||||
void *vaddr;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t y_off;
|
|
||||||
uint32_t y_len;
|
|
||||||
uint32_t framedone_len;
|
|
||||||
uint32_t cbcr_off;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t cbcr_len;
|
|
||||||
uint32_t num_of_mcu_rows;
|
|
||||||
uint32_t offset;
|
|
||||||
};
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_mercury_hw_cmd {
|
|
||||||
uint32_t type:4;
|
|
||||||
uint32_t n:12;
|
|
||||||
uint32_t offset:16;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
uint32_t mask;
|
|
||||||
union {
|
|
||||||
uint32_t data;
|
|
||||||
uint32_t *pdata;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
};
|
|
||||||
};
|
|
||||||
struct msm_mercury_hw_cmds {
|
|
||||||
uint32_t m;
|
|
||||||
/* WARNING: DO NOT EDIT, AUTO-GENERATED CODE - SEE TOP FOR INSTRUCTIONS */
|
|
||||||
struct msm_mercury_hw_cmd hw_cmd[1];
|
|
||||||
};
|
|
||||||
#endif
|
|
Loading…
x
Reference in New Issue
Block a user