summaryrefslogtreecommitdiff
path: root/syna_tcm2.c
diff options
context:
space:
mode:
authorYen-Chao Chen <davidycchen@google.com>2022-02-21 10:00:23 +0000
committerAndroid Partner Code Review <android-gerrit-partner@google.com>2022-02-21 10:00:23 +0000
commitdf62c0c6d6af7052fcbd62f270fe9224daad34f2 (patch)
tree223d217c29fe9329a3a2c5417221eb3e7498589a /syna_tcm2.c
parenta2a6d77276ead3abb9200d417906641cf2dbb0af (diff)
parent15833c2bfe2d17dc577e6476b6673b0e058ea341 (diff)
downloadsynaptics_touch-df62c0c6d6af7052fcbd62f270fe9224daad34f2.tar.gz
Merge changes I428f1b9d,I00318352 into android13-gs-pixel-5.10
* changes: synaptics: enable continuously touch reporting synaptics: support to enable/disable the firmware grip and plam mode
Diffstat (limited to 'syna_tcm2.c')
-rw-r--r--syna_tcm2.c127
1 files changed, 126 insertions, 1 deletions
diff --git a/syna_tcm2.c b/syna_tcm2.c
index 9a8159d..61d98c8 100644
--- a/syna_tcm2.c
+++ b/syna_tcm2.c
@@ -272,6 +272,109 @@ static void syna_dev_set_heatmap_mode(struct syna_tcm *tcm, bool en)
}
}
+/**
+ * syna_dev_restore_feature_setting()
+ *
+ * Restore the feature settings after the device resume.
+ *
+ * @param
+ * [ in] tcm: tcm driver handle
+ *
+ * @return
+ * on success, 0; otherwise, negative value on error.
+ */
+static void syna_dev_restore_feature_setting(struct syna_tcm *tcm)
+{
+ syna_dev_set_heatmap_mode(tcm, true);
+
+ syna_tcm_set_dynamic_config(tcm->tcm_dev,
+ DC_ENABLE_PALM_REJECTION,
+ (tcm->enable_fw_palm & 0x01),
+ RESP_IN_POLLING);
+
+ syna_tcm_set_dynamic_config(tcm->tcm_dev,
+ DC_ENABLE_GRIP_SUPPRESSION,
+ (tcm->enable_fw_grip & 0x01),
+ RESP_IN_POLLING);
+}
+/* Update a state machine used to toggle control of the touch IC's motion
+ * filter.
+ */
+static int syna_update_motion_filter(struct syna_tcm *tcm, u8 touches)
+{
+ /* Motion filter timeout, in milliseconds */
+ const u32 mf_timeout_ms = 500;
+ u8 next_state;
+
+ if (tcm->mf_mode == 0) {
+ if (touches != 0)
+ next_state = MF_UNFILTERED;
+ else
+ next_state = MF_FILTERED;
+ } else if (tcm->mf_mode == 1) {
+ /* Determine the next filter state. The motion filter is enabled by
+ * default and it is disabled while a single finger is touching the
+ * screen. If another finger is touched down or if a timeout expires,
+ * the motion filter is reenabled and remains enabled until all fingers
+ * are lifted.
+ */
+ next_state = tcm->mf_state;
+ switch (tcm->mf_state) {
+ case MF_FILTERED:
+ if (touches == 1) {
+ next_state = MF_UNFILTERED;
+ tcm->mf_downtime = ktime_get();
+ }
+ break;
+ case MF_UNFILTERED:
+ if (touches == 0) {
+ next_state = MF_FILTERED;
+ } else if (touches > 1 ||
+ ktime_after(ktime_get(),
+ ktime_add_ms(tcm->mf_downtime,
+ mf_timeout_ms))) {
+ next_state = MF_FILTERED_LOCKED;
+ }
+ break;
+ case MF_FILTERED_LOCKED:
+ if (touches == 0) {
+ next_state = MF_FILTERED;
+ }
+ break;
+ }
+ } else if (tcm->mf_mode == 2) {
+ next_state = MF_FILTERED;
+ } else {
+ /* Set 0 as default when an invalid value is found. */
+ tcm->mf_mode = 0;
+ return 0;
+ }
+
+ /* Queue work to update filter state */
+ if ((next_state == MF_UNFILTERED) !=
+ (tcm->mf_state == MF_UNFILTERED)) {
+ tcm->set_continuously_report = (next_state == MF_UNFILTERED) ? 0x01 : 0x00;
+ queue_work(tcm->event_wq, &tcm->motion_filter_work);
+ }
+
+ tcm->mf_state = next_state;
+
+ return 0;
+}
+
+static void syna_motion_filter_work(struct work_struct *work)
+{
+ struct syna_tcm *tcm = container_of(work, struct syna_tcm, motion_filter_work);
+
+ /* Send command to update filter state */
+ LOGD("setting motion filter = %s.\n",
+ tcm->set_continuously_report ? "false" : "true");
+ syna_tcm_set_dynamic_config(tcm->tcm_dev,
+ DC_CONTINUOUSLY_REPORT,
+ tcm->set_continuously_report,
+ RESP_IN_ATTN);
+}
+
#ifdef ENABLE_CUSTOM_TOUCH_ENTITY
/**
* syna_dev_parse_custom_touch_data_cb()
@@ -553,6 +656,7 @@ static void syna_dev_report_input_events(struct syna_tcm *tcm)
break;
case FINGER:
case GLOVED_OBJECT:
+ case PALM:
x = object_data[idx].x_pos;
y = object_data[idx].y_pos;
wx = object_data[idx].x_width;
@@ -630,6 +734,8 @@ static void syna_dev_report_input_events(struct syna_tcm *tcm)
input_set_timestamp(input_dev, tcm->coords_timestamp);
input_sync(input_dev);
+ syna_update_motion_filter(tcm, touch_count);
+
#if IS_ENABLED(CONFIG_TOUCHSCREEN_OFFLOAD)
}
#endif
@@ -839,6 +945,13 @@ static void syna_offload_set_running(struct syna_tcm *tcm, bool running)
if (tcm->offload.offload_running != running) {
tcm->offload.offload_running = running;
}
+ if (tcm->offload.offload_running == tcm->enable_fw_grip && tcm->enable_fw_grip < 2) {
+ tcm->enable_fw_grip = tcm->offload.offload_running ? 0 : 1;
+ syna_tcm_set_dynamic_config(tcm->tcm_dev,
+ DC_ENABLE_GRIP_SUPPRESSION,
+ tcm->enable_fw_grip,
+ RESP_IN_POLLING);
+ }
}
static void syna_offload_report(void *handle,
@@ -847,6 +960,7 @@ static void syna_offload_report(void *handle,
struct syna_tcm *tcm = (struct syna_tcm *)handle;
bool touch_down = 0;
int i;
+ int touch_count = 0;
syna_pal_mutex_lock(&tcm->tp_event_mutex);
@@ -855,6 +969,7 @@ static void syna_offload_report(void *handle,
for (i = 0; i < MAX_COORDS; i++) {
if (report->coords[i].status == COORD_STATUS_FINGER) {
input_mt_slot(tcm->input_dev, i);
+ touch_count++;
touch_down = 1;
input_report_key(tcm->input_dev, BTN_TOUCH,
touch_down);
@@ -885,6 +1000,7 @@ static void syna_offload_report(void *handle,
input_report_key(tcm->input_dev, BTN_TOOL_FINGER, touch_down);
input_sync(tcm->input_dev);
+ syna_update_motion_filter(tcm, touch_count);
syna_pal_mutex_unlock(&tcm->tp_event_mutex);
}
@@ -1737,7 +1853,7 @@ static int syna_dev_resume(struct device *dev)
goto exit;
}
- syna_dev_set_heatmap_mode(tcm, true);
+ syna_dev_restore_feature_setting(tcm);
retval = 0;
@@ -2512,6 +2628,11 @@ static int syna_dev_probe(struct platform_device *pdev)
goto err_heatmap_probe;
#endif
+ /* init motion filter mode */
+ tcm->mf_mode = 0;
+
+ INIT_WORK(&tcm->motion_filter_work, syna_motion_filter_work);
+
#ifdef HAS_SYSFS_INTERFACE
/* create the device file and register to char device classes */
retval = syna_cdev_create_sysfs(tcm, pdev);
@@ -2522,6 +2643,10 @@ static int syna_dev_probe(struct platform_device *pdev)
}
#endif
+ tcm->enable_fw_grip = 0x00;
+ tcm->enable_fw_palm = 0x01;
+ syna_dev_restore_feature_setting(tcm);
+
#if defined(USE_DRM_BRIDGE)
retval = syna_register_panel_bridge(tcm);
#elif defined(ENABLE_DISP_NOTIFIER)