Driver snapshot from msm-4.9 to msm-next 0f798a0 input: misc: hbtp_input: allow read access to display_pwr sysfs 5532c00 input: misc: hbtp_input: Support for Region of Interest/sensors 61fbcdc6 input: misc: hbtp_input: Release mutex in error cases in sysfs cb dc0b965 input: misc: hbtp_input: Add sysfs for suspend/resume bafe727 input: misc: hbtp_input: snapshot of driver from msm-4.4 Use character device instead of miscellaneous device since hbtp_input driver is an input device which can be classified under character device. Misc devices are now deprecated. Change-Id: I11a7384b66bf3e74a9d63215be3fdb1a402d990c Signed-off-by: Alex Sarraf <asarraf@codeaurora.org> Signed-off-by: Ashok Raj D <adeenada@codeaurora.org> Signed-off-by: Chetan C R <cchinnad@codeaurora.org>
84 lines
1.8 KiB
C
84 lines
1.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
|
|
#ifndef _UAPI_HBTP_INPUT_H
|
|
#define _UAPI_HBTP_INPUT_H
|
|
|
|
#include <linux/input.h>
|
|
|
|
#define HBTP_MAX_FINGER 20
|
|
#define HBTP_ABS_MT_FIRST ABS_MT_TOUCH_MAJOR
|
|
#define HBTP_ABS_MT_LAST ABS_MT_TOOL_Y
|
|
#define MAX_ROI_SIZE 144
|
|
#define MAX_ACCEL_SIZE 128
|
|
|
|
#define HBTP_EVENT_TYPE_DISPLAY "EVENT_TYPE=HBTP_DISPLAY"
|
|
|
|
struct hbtp_input_touch {
|
|
bool active;
|
|
__s32 tool;
|
|
__s32 x;
|
|
__s32 y;
|
|
__s32 pressure;
|
|
__s32 major;
|
|
__s32 minor;
|
|
__s32 orientation;
|
|
};
|
|
|
|
struct hbtp_sensor_data {
|
|
__s16 accelBuffer[MAX_ACCEL_SIZE];
|
|
__s16 ROI[MAX_ROI_SIZE];
|
|
};
|
|
|
|
struct hbtp_input_mt {
|
|
__s32 num_touches;
|
|
struct hbtp_input_touch touches[HBTP_MAX_FINGER];
|
|
struct timeval time_val;
|
|
};
|
|
|
|
struct hbtp_input_absinfo {
|
|
bool active;
|
|
__u16 code;
|
|
__s32 minimum;
|
|
__s32 maximum;
|
|
};
|
|
|
|
enum hbtp_afe_power_cmd {
|
|
HBTP_AFE_POWER_ON,
|
|
HBTP_AFE_POWER_OFF,
|
|
};
|
|
|
|
struct hbtp_input_key {
|
|
__u32 code;
|
|
__s32 value;
|
|
};
|
|
|
|
enum hbtp_afe_signal {
|
|
HBTP_AFE_SIGNAL_ON_RESUME,
|
|
HBTP_AFE_SIGNAL_ON_SUSPEND,
|
|
};
|
|
|
|
enum hbtp_afe_power_ctrl {
|
|
HBTP_AFE_POWER_ENABLE_SYNC,
|
|
HBTP_AFE_POWER_ENABLE_SYNC_SIGNAL,
|
|
};
|
|
|
|
|
|
/* ioctl */
|
|
#define HBTP_INPUT_IOCTL_BASE 'T'
|
|
#define HBTP_SET_ABSPARAM _IOW(HBTP_INPUT_IOCTL_BASE, 201, \
|
|
struct hbtp_input_absinfo *)
|
|
#define HBTP_SET_TOUCHDATA _IOW(HBTP_INPUT_IOCTL_BASE, 202, \
|
|
struct hbtp_input_mt)
|
|
#define HBTP_SET_POWERSTATE _IOW(HBTP_INPUT_IOCTL_BASE, 203, \
|
|
enum hbtp_afe_power_cmd)
|
|
#define HBTP_SET_KEYDATA _IOW(HBTP_INPUT_IOCTL_BASE, 204, \
|
|
struct hbtp_input_key)
|
|
#define HBTP_SET_SYNCSIGNAL _IOW(HBTP_INPUT_IOCTL_BASE, 205, \
|
|
enum hbtp_afe_signal)
|
|
#define HBTP_SET_POWER_CTRL _IOW(HBTP_INPUT_IOCTL_BASE, 206, \
|
|
enum hbtp_afe_power_ctrl)
|
|
#define HBTP_SET_SENSORDATA _IOW(HBTP_INPUT_IOCTL_BASE, 207, \
|
|
struct hbtp_sensor_data)
|
|
|
|
#endif /* _UAPI_HBTP_INPUT_H */
|
|
|