6db4831e98
Android 14
152 lines
4.4 KiB
C
152 lines
4.4 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* Copyright (C) 2019 Samsung Electronics
|
|
*/
|
|
|
|
#ifndef SEC_VIBRATOR_H
|
|
#define SEC_VIBRATOR_H
|
|
|
|
#include <linux/kthread.h>
|
|
#include <linux/kdev_t.h>
|
|
#include <linux/device.h>
|
|
|
|
#define MAX_DUTY 100
|
|
#define MAX_INTENSITY 10000
|
|
#define MAX_TIMEOUT 10000
|
|
#define PACKET_MAX_SIZE 1000
|
|
|
|
#define HAPTIC_ENGINE_FREQ_MIN 1200
|
|
#define HAPTIC_ENGINE_FREQ_MAX 3500
|
|
|
|
#define VIB_BUFSIZE 30
|
|
|
|
#define HOMEKEY_DURATION 7
|
|
|
|
struct vib_packet {
|
|
int time;
|
|
int intensity;
|
|
int freq;
|
|
int overdrive;
|
|
int fifo_flag;
|
|
};
|
|
|
|
enum {
|
|
VIB_PACKET_TIME = 0,
|
|
VIB_PACKET_INTENSITY,
|
|
VIB_PACKET_FREQUENCY,
|
|
VIB_PACKET_OVERDRIVE,
|
|
VIB_PACKET_MAX,
|
|
};
|
|
|
|
enum {
|
|
FREQ_ALERT = 0, /* 157.5Hz */
|
|
FREQ_ZERO, /* 180Hz */
|
|
FREQ_LOW, /* 120Hz */
|
|
FREQ_MID, /* 150Hz */
|
|
FREQ_HIGH, /* 200Hz */
|
|
FREQ_PRESS, /* force touch press */
|
|
FREQ_RELEASE, /* force touch release */
|
|
FREQ_MAX,
|
|
};
|
|
|
|
enum EVENT_CMD {
|
|
EVENT_CMD_NONE = 0,
|
|
EVENT_CMD_FOLDER_CLOSE,
|
|
EVENT_CMD_FOLDER_OPEN,
|
|
EVENT_CMD_ACCESSIBILITY_BOOST_ON,
|
|
EVENT_CMD_ACCESSIBILITY_BOOST_OFF,
|
|
EVENT_CMD_TENT_CLOSE,
|
|
EVENT_CMD_TENT_OPEN,
|
|
EVENT_CMD_MAX,
|
|
};
|
|
|
|
#define MAX_STR_LEN_VIB_TYPE 32
|
|
#define MAX_STR_LEN_EVENT_CMD 32
|
|
|
|
#define SEC_VIBRATOR_DEFAULT_HIGH_TEMP_REF INT_MAX
|
|
#define SEC_VIBRATOR_DEFAULT_HIGH_TEMP_RATIO 100
|
|
|
|
struct sec_vibrator_ops {
|
|
int (*enable)(struct device *dev, bool en);
|
|
int (*set_default_duty)(struct device *dev, int default_duty);
|
|
int (*get_default_duty)(struct device *dev, char *buf);
|
|
int (*set_fold_open_duty)(struct device *dev, int fold_open_duty);
|
|
int (*get_fold_open_duty)(struct device *dev, char *buf);
|
|
int (*set_fold_close_duty)(struct device *dev, int fold_close_duty);
|
|
int (*get_fold_close_duty)(struct device *dev, char *buf);
|
|
int (*set_intensity)(struct device *dev, int intensity);
|
|
int (*set_fifo_intensity)(struct device *dev, int intensity);
|
|
int (*set_frequency)(struct device *dev, int frequency);
|
|
int (*set_overdrive)(struct device *dev, bool en);
|
|
int (*get_motor_type)(struct device *dev, char *buf);
|
|
int (*set_use_sep_index)(struct device *dev, bool use_sep_index);
|
|
ssize_t (*get_num_waves)(struct device *dev, char *buf);
|
|
ssize_t (*set_cp_trigger_index)(struct device *dev, const char *buf);
|
|
ssize_t (*get_cp_trigger_index)(struct device *dev, char *buf);
|
|
ssize_t (*set_cp_trigger_queue)(struct device *dev, const char *buf);
|
|
ssize_t (*get_cp_trigger_queue)(struct device *dev, char *buf);
|
|
int (*set_force_touch_intensity)(struct device *dev, int intensity);
|
|
int (*set_tuning_with_temp)(struct device *dev, int temperature);
|
|
int (*set_event_cmd)(struct device *dev, int event_idx);
|
|
bool (*get_calibration)(struct device *dev);
|
|
int (*get_step_size)(struct device *dev, int *step_size);
|
|
int (*get_intensities)(struct device *dev, int *buf);
|
|
int (*set_intensities)(struct device *dev, int *buf);
|
|
int (*get_haptic_intensities)(struct device *dev, int *buf);
|
|
int (*set_haptic_intensities)(struct device *dev, int *buf);
|
|
int (*get_haptic_durations)(struct device *dev, int *buf);
|
|
int (*set_haptic_durations)(struct device *dev, int *buf);
|
|
ssize_t (*set_pwle)(struct device *dev, const char *buf);
|
|
ssize_t (*get_pwle)(struct device *dev, char *buf);
|
|
ssize_t (*get_virtual_composite_indexes)(struct device *dev, char *buf);
|
|
ssize_t (*get_virtual_pwle_indexes)(struct device *dev, char *buf);
|
|
int (*get_fifo_filepath)(struct device *dev, char *buf);
|
|
int (*enable_fifo)(struct device *dev, int file_num);
|
|
int (*update_packet_params)(struct device *dev);
|
|
};
|
|
|
|
struct sec_vibrator_pdata {
|
|
bool probe_done;
|
|
int normal_ratio;
|
|
int high_temp_ratio;
|
|
int high_temp_ref;
|
|
};
|
|
|
|
struct sec_vibrator_drvdata {
|
|
struct class *to_class;
|
|
struct device *to_dev;
|
|
struct device *dev;
|
|
struct hrtimer timer;
|
|
struct kthread_worker kworker;
|
|
struct kthread_work kwork;
|
|
struct mutex vib_mutex;
|
|
struct vib_packet vib_pac[PACKET_MAX_SIZE];
|
|
const struct sec_vibrator_ops *vib_ops;
|
|
|
|
bool f_packet_en;
|
|
bool packet_running;
|
|
int packet_size;
|
|
int packet_cnt;
|
|
unsigned int index;
|
|
|
|
int temperature;
|
|
int force_touch_intensity;
|
|
int intensity;
|
|
int frequency;
|
|
bool overdrive;
|
|
|
|
int timeout;
|
|
int time_compensation;
|
|
int max_delay_ms;
|
|
|
|
struct sec_vibrator_pdata *pdata;
|
|
|
|
char event_cmd[MAX_STR_LEN_EVENT_CMD];
|
|
|
|
bool is_registered;
|
|
};
|
|
|
|
extern int sec_vibrator_register(struct sec_vibrator_drvdata *ddata);
|
|
extern int sec_vibrator_unregister(struct sec_vibrator_drvdata *ddata);
|
|
extern int sec_vibrator_recheck_ratio(struct sec_vibrator_drvdata *ddata);
|
|
#endif /* SEC_VIBRATOR_H */
|