6db4831e98
Android 14
1125 lines
28 KiB
C
1125 lines
28 KiB
C
/*
|
|
* ILITEK Touch IC driver
|
|
*
|
|
* Copyright (C) 2011 ILI Technology Corporation.
|
|
*
|
|
* Author: Dicky Chiang <dicky_chiang@ilitek.com>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#include "firmware/ilitek_fw.h"
|
|
#include "ilitek.h"
|
|
|
|
/* Debug level */
|
|
bool ipio_debug_level = DEBUG_OUTPUT;
|
|
EXPORT_SYMBOL(ipio_debug_level);
|
|
|
|
static struct workqueue_struct *esd_wq;
|
|
static struct workqueue_struct *bat_wq;
|
|
static struct delayed_work esd_work;
|
|
static struct delayed_work bat_work;
|
|
|
|
#if RESUME_BY_DDI
|
|
static struct workqueue_struct *resume_by_ddi_wq;
|
|
static struct work_struct resume_by_ddi_work;
|
|
|
|
static void ilitek_resume_by_ddi_work(struct work_struct *work)
|
|
{
|
|
mutex_lock(&idev->touch_mutex);
|
|
|
|
if (idev->gesture)
|
|
disable_irq_wake(idev->irq_num);
|
|
|
|
/* Set tp as demo mode and reload code if it's iram. */
|
|
idev->actual_tp_mode = P5_X_FW_AP_MODE;
|
|
if (idev->fw_upgrade_mode == UPGRADE_IRAM)
|
|
ilitek_tddi_fw_upgrade_handler(NULL);
|
|
else
|
|
ilitek_tddi_reset_ctrl(idev->reset);
|
|
|
|
ilitek_plat_irq_enable();
|
|
ipio_info("TP resume end by wq\n");
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
idev->tp_suspend = false;
|
|
mutex_unlock(&idev->touch_mutex);
|
|
}
|
|
|
|
void ilitek_resume_by_ddi(void)
|
|
{
|
|
if (!resume_by_ddi_wq) {
|
|
ipio_info("resume_by_ddi_wq is null\n");
|
|
return;
|
|
}
|
|
|
|
mutex_lock(&idev->touch_mutex);
|
|
|
|
ipio_info("TP resume start called by ddi\n");
|
|
|
|
/*
|
|
* To match the timing of sleep out, the first of mipi cmd must be sent within 10ms
|
|
* after TP reset. We then create a wq doing host download before resume.
|
|
*/
|
|
atomic_set(&idev->fw_stat, ENABLE);
|
|
ilitek_tddi_reset_ctrl(idev->reset);
|
|
ilitek_ice_mode_ctrl(ENABLE, OFF);
|
|
idev->ddi_rest_done = true;
|
|
mdelay(5);
|
|
queue_work(resume_by_ddi_wq, &(resume_by_ddi_work));
|
|
|
|
mutex_unlock(&idev->touch_mutex);
|
|
}
|
|
#endif
|
|
|
|
#ifdef ROI
|
|
static int ilitek_get_knuckle_roi_switch(u8 *roi_switch)
|
|
{
|
|
*roi_switch = ilitek_config_get_knuckle_roi_status();
|
|
|
|
ipio_info("get roi status = %d\n", *roi_switch);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ilitek_set_knuckle_roi_switch(bool roi_enable)
|
|
{
|
|
int ret = 0;
|
|
|
|
ret = ilitek_config_knuckle_roi_ctrl(roi_enable ? CMD_ENABLE : CMD_DISABLE);
|
|
if (ret) {
|
|
ipio_err("roi control failed, enable = %d, ret = %d\n", roi_enable, ret);
|
|
return ret;
|
|
}
|
|
|
|
ipio_info("set roi status = %d\n", roi_enable);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ilitek_knuckle_roi_switch(struct ts_roi_info *info)
|
|
{
|
|
int i = 0;
|
|
int ret = 0;
|
|
|
|
if (IS_ERR_OR_NULL(info)) {
|
|
ipio_err("info invaild\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
switch (info->op_action) {
|
|
case TS_ACTION_READ:
|
|
ret = ilitek_get_knuckle_roi_switch(&info->roi_switch);
|
|
if (ret) {
|
|
ipio_err("get roi switch failed, ret = %d\n", ret);
|
|
return ret;
|
|
}
|
|
break;
|
|
|
|
case TS_ACTION_WRITE:
|
|
ret = ilitek_set_knuckle_roi_switch(info->roi_switch);
|
|
if (ret) {
|
|
ipio_err("set roi switch failed, ret = %d\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
if(!info->roi_switch) {
|
|
for (i = 0; i < ROI_DATA_READ_LENGTH; i++) {
|
|
idev->knuckle_roi_data[i] = 0;
|
|
}
|
|
}
|
|
break;
|
|
|
|
default:
|
|
ipio_err("op action invalid : %d\n", info->op_action);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static unsigned char *ilitek_knuckle_roi_rawdata(void)
|
|
{
|
|
ipio_debug("return roi data\n");
|
|
return idev->knuckle_roi_data;
|
|
}
|
|
#endif
|
|
|
|
#if 0
|
|
int ilitek_tddi_mp_test_handler(char *apk, bool lcm_on)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (atomic_read(&idev->fw_stat)) {
|
|
ipio_err("fw upgrade processing, ignore\n");
|
|
return -EMP_FW_PROC;
|
|
}
|
|
|
|
atomic_set(&idev->mp_stat, ENABLE);
|
|
|
|
if (idev->actual_tp_mode != P5_X_FW_TEST_MODE) {
|
|
ret = ilitek_tddi_switch_tp_mode(P5_X_FW_TEST_MODE);
|
|
if (ret < 0) {
|
|
ipio_err("Switch MP mode failed\n");
|
|
ret = -EMP_MODE;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
ret = ilitek_tddi_mp_test_main(apk, lcm_on);
|
|
|
|
out:
|
|
/*
|
|
* If there's running mp test with lcm off, we suspose that
|
|
* users will soon call resume from suspend. TP mode will be changed
|
|
* from MP to AP mode until resume finished.
|
|
*/
|
|
if (!lcm_on) {
|
|
atomic_set(&idev->mp_stat, DISABLE);
|
|
return ret;
|
|
}
|
|
|
|
idev->actual_tp_mode = P5_X_FW_AP_MODE;
|
|
if (idev->fw_upgrade_mode == UPGRADE_IRAM) {
|
|
if (ilitek_tddi_fw_upgrade_handler(NULL) < 0)
|
|
ipio_err("FW upgrade failed during mp test\n");
|
|
} else {
|
|
if (ilitek_tddi_reset_ctrl(idev->reset) < 0)
|
|
ipio_err("TP Reset failed during mp test\n");
|
|
}
|
|
|
|
atomic_set(&idev->mp_stat, DISABLE);
|
|
return ret;
|
|
}
|
|
#endif
|
|
int ilitek_tddi_switch_tp_mode(u8 mode)
|
|
{
|
|
int ret = 0;
|
|
bool ges_dbg = false;
|
|
|
|
atomic_set(&idev->tp_sw_mode, START);
|
|
|
|
idev->actual_tp_mode = mode;
|
|
|
|
/* able to see cdc data in gesture mode */
|
|
if (idev->tp_data_format == DATA_FORMAT_DEBUG &&
|
|
idev->actual_tp_mode == P5_X_FW_GESTURE_MODE)
|
|
ges_dbg = true;
|
|
|
|
switch (idev->actual_tp_mode) {
|
|
case P5_X_FW_AP_MODE:
|
|
ipio_debug("Switch to AP mode\n");
|
|
idev->wait_int_timeout = AP_INT_TIMEOUT;
|
|
if (idev->fw_upgrade_mode == UPGRADE_IRAM) {
|
|
if (ilitek_tddi_fw_upgrade_handler(NULL) < 0)
|
|
ipio_err("FW upgrade failed\n");
|
|
} else {
|
|
ret = ilitek_tddi_reset_ctrl(idev->reset);
|
|
}
|
|
if (ret < 0)
|
|
ipio_err("TP Reset failed\n");
|
|
|
|
break;
|
|
case P5_X_FW_GESTURE_MODE:
|
|
ipio_debug("Switch to Gesture mode\n");
|
|
idev->wait_int_timeout = AP_INT_TIMEOUT;
|
|
ret = idev->gesture_move_code(idev->gesture_mode);
|
|
if (ret < 0)
|
|
ipio_err("Move gesture code failed\n");
|
|
if (ges_dbg) {
|
|
ipio_info("Enable gesture debug func\n");
|
|
ilitek_set_tp_data_len(DATA_FORMAT_GESTURE_DEBUG, false, NULL);
|
|
}
|
|
break;
|
|
case P5_X_FW_TEST_MODE:
|
|
ipio_debug("Switch to Test mode\n");
|
|
idev->wait_int_timeout = MP_INT_TIMEOUT;
|
|
ret = idev->mp_move_code();
|
|
break;
|
|
default:
|
|
ipio_err("Unknown TP mode: %x\n", mode);
|
|
ret = -1;
|
|
break;
|
|
}
|
|
|
|
if (ret < 0)
|
|
ipio_err("Switch TP mode (%d) failed \n", mode);
|
|
|
|
ipio_debug("Actual TP mode = %d\n", idev->actual_tp_mode);
|
|
atomic_set(&idev->tp_sw_mode, END);
|
|
return ret;
|
|
}
|
|
|
|
int ilitek_tddi_gesture_recovery(void)
|
|
{
|
|
int ret = 0;
|
|
|
|
atomic_set(&idev->esd_stat, START);
|
|
|
|
ipio_info("Doing gesture recovery\n");
|
|
ret = idev->ges_recover();
|
|
|
|
atomic_set(&idev->esd_stat, END);
|
|
return ret;
|
|
}
|
|
|
|
void ilitek_tddi_spi_recovery(void)
|
|
{
|
|
atomic_set(&idev->esd_stat, START);
|
|
|
|
ipio_info("Doing spi recovery\n");
|
|
if (ilitek_tddi_fw_upgrade_handler(NULL) < 0)
|
|
ipio_err("FW upgrade failed\n");
|
|
|
|
atomic_set(&idev->esd_stat, END);
|
|
}
|
|
|
|
int ilitek_tddi_wq_esd_spi_check(void)
|
|
{
|
|
return (idev->spi_ack() != SPI_ACK) ? -1 : 0;
|
|
}
|
|
|
|
int ilitek_tddi_wq_esd_i2c_check(void)
|
|
{
|
|
ipio_debug("");
|
|
return 0;
|
|
}
|
|
|
|
static void ilitek_tddi_wq_esd_check(struct work_struct *work)
|
|
{
|
|
mutex_lock(&idev->touch_mutex);
|
|
if (idev->esd_recover() < 0) {
|
|
ipio_err("SPI ACK failed, doing spi recovery\n");
|
|
ilitek_tddi_spi_recovery();
|
|
}
|
|
mutex_unlock(&idev->touch_mutex);
|
|
complete_all(&idev->esd_done);
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
}
|
|
|
|
static int read_power_status(u8 *buf)
|
|
{
|
|
struct file *f = NULL;
|
|
mm_segment_t old_fs;
|
|
ssize_t byte = 0;
|
|
|
|
old_fs = get_fs();
|
|
set_fs(get_ds());
|
|
|
|
f = filp_open(POWER_STATUS_PATH, O_RDONLY, 0);
|
|
if (ERR_ALLOC_MEM(f)) {
|
|
ipio_err("Failed to open %s\n", POWER_STATUS_PATH);
|
|
return -1;
|
|
}
|
|
|
|
f->f_op->llseek(f, 0, SEEK_SET);
|
|
byte = f->f_op->read(f, buf, 20, &f->f_pos);
|
|
|
|
ipio_debug("Read %d bytes\n", (int)byte);
|
|
|
|
set_fs(old_fs);
|
|
filp_close(f, NULL);
|
|
return 0;
|
|
}
|
|
|
|
static void ilitek_tddi_wq_bat_check(struct work_struct *work)
|
|
{
|
|
u8 str[20] = {0};
|
|
static int charge_mode;
|
|
|
|
if (read_power_status(str) < 0)
|
|
ipio_err("Read power status failed\n");
|
|
|
|
ipio_debug("Batter Status: %s\n", str);
|
|
|
|
if (strstr(str, "Charging") != NULL || strstr(str, "Full") != NULL
|
|
|| strstr(str, "Fully charged") != NULL) {
|
|
if (charge_mode != 1) {
|
|
ipio_debug("Charging mode\n");
|
|
if (ilitek_tddi_ic_func_ctrl("plug", DISABLE, NULL, 0) < 0) // plug in
|
|
ipio_err("Write plug in failed\n");
|
|
charge_mode = 1;
|
|
}
|
|
} else {
|
|
if (charge_mode != 2) {
|
|
ipio_debug("Not charging mode\n");
|
|
if (ilitek_tddi_ic_func_ctrl("plug", ENABLE, NULL, 0) < 0) // plug out
|
|
ipio_err("Write plug out failed\n");
|
|
charge_mode = 2;
|
|
}
|
|
}
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
}
|
|
|
|
void ilitek_tddi_wq_ctrl(int type, int ctrl)
|
|
{
|
|
switch (type) {
|
|
case WQ_ESD:
|
|
if (ENABLE_WQ_ESD || idev->wq_ctrl) {
|
|
if (!esd_wq) {
|
|
ipio_err("wq esd is null\n");
|
|
break;
|
|
}
|
|
idev->wq_esd_ctrl = ctrl;
|
|
if (ctrl == ENABLE) {
|
|
ipio_debug("execute esd check\n");
|
|
if (!queue_delayed_work(esd_wq, &esd_work, msecs_to_jiffies(WQ_ESD_DELAY)))
|
|
ipio_debug("esd check was already on queue\n");
|
|
} else {
|
|
cancel_delayed_work_sync(&esd_work);
|
|
flush_workqueue(esd_wq);
|
|
ipio_debug("cancel esd wq\n");
|
|
}
|
|
}
|
|
break;
|
|
case WQ_BAT:
|
|
if (ENABLE_WQ_BAT || idev->wq_ctrl) {
|
|
if (!bat_wq) {
|
|
ipio_err("WQ BAT is null\n");
|
|
break;
|
|
}
|
|
idev->wq_bat_ctrl = ctrl;
|
|
if (ctrl == ENABLE) {
|
|
ipio_debug("execute bat check\n");
|
|
if (!queue_delayed_work(bat_wq, &bat_work, msecs_to_jiffies(WQ_BAT_DELAY)))
|
|
ipio_debug("bat check was already on queue\n");
|
|
} else {
|
|
cancel_delayed_work_sync(&bat_work);
|
|
flush_workqueue(bat_wq);
|
|
ipio_debug("cancel bat wq\n");
|
|
}
|
|
}
|
|
break;
|
|
default:
|
|
ipio_err("Unknown WQ type, %d\n", type);
|
|
break;
|
|
}
|
|
}
|
|
|
|
static void ilitek_tddi_wq_init(void)
|
|
{
|
|
esd_wq = alloc_workqueue("esd_check", WQ_MEM_RECLAIM, 0);
|
|
bat_wq = alloc_workqueue("bat_check", WQ_MEM_RECLAIM, 0);
|
|
|
|
WARN_ON(!esd_wq);
|
|
WARN_ON(!bat_wq);
|
|
|
|
INIT_DELAYED_WORK(&esd_work, ilitek_tddi_wq_esd_check);
|
|
INIT_DELAYED_WORK(&bat_work, ilitek_tddi_wq_bat_check);
|
|
|
|
#if RESUME_BY_DDI
|
|
resume_by_ddi_wq = create_singlethread_workqueue("resume_by_ddi_wq");
|
|
WARN_ON(!resume_by_ddi_wq);
|
|
INIT_WORK(&resume_by_ddi_work, ilitek_resume_by_ddi_work);
|
|
#endif
|
|
}
|
|
|
|
int ilitek_tddi_sleep_handler(int mode)
|
|
{
|
|
int ret = 0;
|
|
bool sense_stop = true;
|
|
|
|
mutex_lock(&idev->touch_mutex);
|
|
atomic_set(&idev->tp_sleep, START);
|
|
|
|
if (atomic_read(&idev->fw_stat) ||
|
|
atomic_read(&idev->mp_stat)) {
|
|
ipio_info("fw upgrade or mp still running, ignore sleep requst\n");
|
|
atomic_set(&idev->tp_sleep, END);
|
|
mutex_unlock(&idev->touch_mutex);
|
|
return 0;
|
|
}
|
|
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, DISABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, DISABLE);
|
|
|
|
ipio_debug("Sleep Mode = %d\n", mode);
|
|
|
|
if (idev->ss_ctrl)
|
|
sense_stop = true;
|
|
else if ((idev->chip->core_ver >= CORE_VER_1430))
|
|
sense_stop = false;
|
|
else
|
|
sense_stop = true;
|
|
|
|
switch (mode) {
|
|
case TP_SUSPEND:
|
|
ipio_info("TP suspend start\n");
|
|
idev->tp_suspend = true;
|
|
if (sense_stop) {
|
|
if (ilitek_tddi_ic_func_ctrl("sense", DISABLE, NULL, 0) < 0)
|
|
ipio_err("Write sense stop cmd failed\n");
|
|
|
|
if (ilitek_tddi_ic_check_busy(50, 20) < 0)
|
|
ipio_err("Check busy timeout during suspend\n");
|
|
}
|
|
|
|
if (idev->gesture) {
|
|
ilitek_tddi_switch_tp_mode(P5_X_FW_GESTURE_MODE);
|
|
enable_irq_wake(idev->irq_num);
|
|
} else {
|
|
ilitek_plat_irq_disable();
|
|
if (ilitek_tddi_ic_func_ctrl("sleep", SLEEP_IN, NULL, 0) < 0)
|
|
ipio_err("Write sleep in cmd failed\n");
|
|
}
|
|
ipio_info("TP suspend end\n");
|
|
break;
|
|
case TP_DEEP_SLEEP:
|
|
ipio_info("TP deep suspend start\n");
|
|
idev->tp_suspend = true;
|
|
if (sense_stop) {
|
|
if (ilitek_tddi_ic_func_ctrl("sense", DISABLE, NULL, 0) < 0)
|
|
ipio_err("Write sense stop cmd failed\n");
|
|
|
|
if (ilitek_tddi_ic_check_busy(50, 20) < 0)
|
|
ipio_err("Check busy timeout during deep suspend\n");
|
|
}
|
|
|
|
if (idev->gesture) {
|
|
ilitek_tddi_switch_tp_mode(P5_X_FW_GESTURE_MODE);
|
|
enable_irq_wake(idev->irq_num);
|
|
} else {
|
|
ilitek_plat_irq_disable();
|
|
if (ilitek_tddi_ic_func_ctrl("sleep", DEEP_SLEEP_IN, NULL, 0) < 0)
|
|
ipio_err("Write deep sleep in cmd failed\n");
|
|
}
|
|
ipio_info("TP deep suspend end\n");
|
|
break;
|
|
case TP_RESUME:
|
|
#if !RESUME_BY_DDI
|
|
ipio_info("TP resume start\n");
|
|
|
|
if (idev->gesture)
|
|
disable_irq_wake(idev->irq_num);
|
|
|
|
/* Set tp as demo mode and reload code if it's iram. */
|
|
idev->actual_tp_mode = P5_X_FW_AP_MODE;
|
|
if (idev->fw_upgrade_mode == UPGRADE_IRAM) {
|
|
if (ilitek_tddi_fw_upgrade_handler(NULL) < 0)
|
|
ipio_err("FW upgrade failed during resume\n");
|
|
} else {
|
|
if (ilitek_tddi_reset_ctrl(idev->reset) < 0)
|
|
ipio_err("TP Reset failed during resume\n");
|
|
ilitek_tddi_ic_func_ctrl_reset();
|
|
}
|
|
idev->tp_suspend = false;
|
|
ipio_info("TP resume end\n");
|
|
#endif
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
ilitek_plat_irq_enable();
|
|
break;
|
|
default:
|
|
ipio_err("Unknown sleep mode, %d\n", mode);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
|
|
ilitek_tddi_touch_release_all_point();
|
|
atomic_set(&idev->tp_sleep, END);
|
|
mutex_unlock(&idev->touch_mutex);
|
|
return ret;
|
|
}
|
|
|
|
int ilitek_tddi_fw_upgrade_handler(void *data)
|
|
{
|
|
int ret = 0;
|
|
|
|
atomic_set(&idev->fw_stat, START);
|
|
|
|
idev->fw_update_stat = FW_STAT_INIT;
|
|
ret = ilitek_tddi_fw_upgrade(idev->fw_open);
|
|
if (ret != 0) {
|
|
ipio_info("FW upgrade fail\n");
|
|
idev->fw_update_stat = FW_UPDATE_FAIL;
|
|
} else {
|
|
ipio_info("FW upgrade pass\n");
|
|
idev->fw_update_stat = FW_UPDATE_PASS;
|
|
#if CHARGER_NOTIFIER_CALLBACK
|
|
#if KERNEL_VERSION(4, 1, 0) <= LINUX_VERSION_CODE
|
|
/* add_for_charger_start */
|
|
if((idev->usb_plug_status)&&(idev->actual_tp_mode !=P5_X_FW_TEST_MODE)) {
|
|
ret = ilitek_tddi_ic_func_ctrl("plug", !idev->usb_plug_status, NULL, 0);// plug in
|
|
if(ret<0) {
|
|
ipio_err("Write plug in failed\n");
|
|
}
|
|
}
|
|
/* add_for_charger_end */
|
|
#endif
|
|
#endif
|
|
}
|
|
|
|
if (!idev->boot) {
|
|
idev->boot = true;
|
|
ipio_info("Registre touch to input subsystem\n");
|
|
ilitek_plat_input_register();
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
}
|
|
|
|
atomic_set(&idev->fw_stat, END);
|
|
return ret;
|
|
}
|
|
|
|
int ilitek_set_tp_data_len(int format, bool send, u8* data)
|
|
{
|
|
u8 cmd[10] = {0}, ctrl = 0, debug_ctrl = 0;
|
|
u16 self_key = 2;
|
|
int ret = 0, tp_mode = idev->actual_tp_mode, len = 0;
|
|
|
|
switch (format) {
|
|
case DATA_FORMAT_DEMO:
|
|
len = P5_X_DEMO_MODE_PACKET_LEN;
|
|
ctrl = DATA_FORMAT_DEMO_CMD;
|
|
break;
|
|
case DATA_FORMAT_GESTURE_DEMO:
|
|
len = P5_X_DEMO_MODE_PACKET_LEN;
|
|
ctrl = DATA_FORMAT_DEMO_CMD;
|
|
break;
|
|
case DATA_FORMAT_DEBUG:
|
|
case DATA_FORMAT_GESTURE_DEBUG:
|
|
len = (2 * idev->xch_num * idev->ych_num) + (idev->stx * 2) + (idev->srx * 2);
|
|
len += 2 * self_key + (8 * 2) + 1 + 35;
|
|
ctrl = DATA_FORMAT_DEBUG_CMD;
|
|
break;
|
|
case DATA_FORMAT_DEMO_DEBUG_INFO:
|
|
/*only suport SPI interface now, so defult use size 1024 buffer*/
|
|
len = P5_X_DEMO_MODE_PACKET_LEN +
|
|
P5_X_DEMO_DEBUG_INFO_ID0_LENGTH + P5_X_INFO_HEADER_LENGTH;
|
|
ctrl = DATA_FORMAT_DEMO_DEBUG_INFO_CMD;
|
|
break;
|
|
case DATA_FORMAT_GESTURE_INFO:
|
|
len = P5_X_GESTURE_INFO_LENGTH;
|
|
ctrl = DATA_FORMAT_GESTURE_INFO_CMD;
|
|
break;
|
|
case DATA_FORMAT_GESTURE_NORMAL:
|
|
len = P5_X_GESTURE_NORMAL_LENGTH;
|
|
ctrl = DATA_FORMAT_GESTURE_NORMAL_CMD;
|
|
break;
|
|
case DATA_FORMAT_GESTURE_SPECIAL_DEMO:
|
|
if (idev->gesture_demo_ctrl == ENABLE) {
|
|
if (idev->gesture_mode == DATA_FORMAT_GESTURE_INFO)
|
|
len = P5_X_GESTURE_INFO_LENGTH + P5_X_INFO_HEADER_LENGTH + P5_X_INFO_CHECKSUM_LENGTH;
|
|
else
|
|
len = P5_X_DEMO_MODE_PACKET_LEN + P5_X_INFO_HEADER_LENGTH + P5_X_INFO_CHECKSUM_LENGTH;
|
|
} else {
|
|
if (idev->gesture_mode == DATA_FORMAT_GESTURE_INFO)
|
|
len = P5_X_GESTURE_INFO_LENGTH;
|
|
else
|
|
len = P5_X_GESTURE_NORMAL_LENGTH;
|
|
}
|
|
ipio_info("Gesture demo mode control = %d\n", idev->gesture_demo_ctrl);
|
|
ilitek_tddi_ic_func_ctrl("gesture_demo_en", idev->gesture_demo_ctrl, NULL, 0);
|
|
ipio_info("knock_en setting\n");
|
|
ilitek_tddi_ic_func_ctrl("knock_en", 0x8, NULL, 0);
|
|
break;
|
|
case DATA_FORMAT_DEBUG_LITE_ROI:
|
|
debug_ctrl = DATA_FORMAT_DEBUG_LITE_ROI_CMD;
|
|
ctrl = DATA_FORMAT_DEBUG_LITE_CMD;
|
|
break;
|
|
case DATA_FORMAT_DEBUG_LITE_WINDOW:
|
|
debug_ctrl = DATA_FORMAT_DEBUG_LITE_WINDOW_CMD;
|
|
ctrl = DATA_FORMAT_DEBUG_LITE_CMD;
|
|
break;
|
|
case DATA_FORMAT_DEBUG_LITE_AREA:
|
|
debug_ctrl = DATA_FORMAT_DEBUG_LITE_AREA_CMD;
|
|
ctrl = DATA_FORMAT_DEBUG_LITE_CMD;
|
|
cmd[3] = data[0];
|
|
cmd[4] = data[1];
|
|
cmd[5] = data[2];
|
|
cmd[6] = data[3];
|
|
break;
|
|
default:
|
|
ipio_err("Unknow TP data format\n");
|
|
return -1;
|
|
}
|
|
|
|
if (ctrl == DATA_FORMAT_DEBUG_LITE_CMD) {
|
|
len = P5_X_DEBUG_LITE_LENGTH;
|
|
cmd[0] = P5_X_MODE_CONTROL;
|
|
cmd[1] = ctrl;
|
|
cmd[2] = debug_ctrl;
|
|
ret = idev->wrapper(cmd, sizeof(cmd), NULL, 0, OFF, OFF);
|
|
if (ret < 0) {
|
|
ipio_err("switch to format %d failed\n", format);
|
|
ilitek_tddi_switch_tp_mode(P5_X_FW_AP_MODE);
|
|
}
|
|
|
|
} else if (tp_mode == P5_X_FW_AP_MODE ||
|
|
format == DATA_FORMAT_GESTURE_DEMO ||
|
|
format == DATA_FORMAT_GESTURE_DEBUG ||
|
|
format == DATA_FORMAT_DEMO) {
|
|
cmd[0] = P5_X_MODE_CONTROL;
|
|
cmd[1] = ctrl;
|
|
ret = idev->wrapper(cmd, 2, NULL, 0, OFF, OFF);
|
|
|
|
if (ret < 0) {
|
|
ipio_err("switch to format %d failed\n", format);
|
|
ilitek_tddi_switch_tp_mode(P5_X_FW_AP_MODE);
|
|
}
|
|
} else if (tp_mode == P5_X_FW_GESTURE_MODE) {
|
|
/*set gesture symbol*/
|
|
ilitek_set_gesture_symbol();
|
|
|
|
if (send) {
|
|
ret = ilitek_tddi_ic_func_ctrl("lpwg", ctrl, NULL, 0);
|
|
if (ret < 0)
|
|
ipio_err("write gesture mode failed\n");
|
|
}
|
|
}
|
|
|
|
idev->tp_data_format = format;
|
|
idev->tp_data_len = len;
|
|
ipio_debug("TP mode = %d, format = %d, len = %d\n",
|
|
tp_mode, idev->tp_data_format, idev->tp_data_len);
|
|
|
|
return ret;
|
|
}
|
|
|
|
int ilitek_tddi_report_handler(void)
|
|
{
|
|
int ret = 0, pid = 0;
|
|
u8 checksum = 0, pack_checksum;
|
|
u8 *trdata = NULL;
|
|
int rlen = 0;
|
|
int tmp = ipio_debug_level;
|
|
|
|
/* Just in case these stats couldn't be blocked in top half context */
|
|
if (!idev->report || atomic_read(&idev->tp_reset) ||
|
|
atomic_read(&idev->fw_stat) || atomic_read(&idev->tp_sw_mode) ||
|
|
atomic_read(&idev->mp_stat) || atomic_read(&idev->tp_sleep)) {
|
|
ipio_info("ignore report request\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (idev->irq_after_recovery) {
|
|
ipio_info("ignore int triggered by recovery\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, DISABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, DISABLE);
|
|
|
|
if (idev->actual_tp_mode == P5_X_FW_GESTURE_MODE) {
|
|
__pm_stay_awake(idev->ws);
|
|
|
|
if (idev->pm_suspend) {
|
|
/* Waiting for pm resume completed */
|
|
ret = wait_for_completion_timeout(&idev->pm_completion, msecs_to_jiffies(700));
|
|
if (!ret) {
|
|
ipio_err("system(spi) can't finished resuming procedure");
|
|
}
|
|
}
|
|
}
|
|
|
|
rlen = idev->tp_data_len;
|
|
ipio_debug("Packget length = %d\n", rlen);
|
|
|
|
if (!rlen || rlen > TR_BUF_SIZE) {
|
|
ipio_err("Length of packet (%d) is invaild\n", rlen);
|
|
goto out;
|
|
}
|
|
|
|
memset(idev->tr_buf, 0x0, TR_BUF_SIZE);
|
|
|
|
ret = idev->wrapper(NULL, 0, idev->tr_buf, rlen, OFF, OFF);
|
|
if (ret < 0) {
|
|
ipio_err("Read report packet failed, ret = %d\n", ret);
|
|
if (ret == DO_SPI_RECOVER) {
|
|
idev->irq_after_recovery = true;
|
|
ilitek_tddi_ic_get_pc_counter(DO_SPI_RECOVER);
|
|
if (idev->tp_suspend && idev->gesture && !idev->prox_near) {
|
|
ipio_err("Gesture failed, doing gesture recovery\n");
|
|
if (ilitek_tddi_gesture_recovery() < 0)
|
|
ipio_err("Failed to recover gesture\n");
|
|
} else {
|
|
ipio_err("SPI ACK failed, doing spi recovery\n");
|
|
ilitek_tddi_spi_recovery();
|
|
}
|
|
msleep(100);
|
|
idev->irq_after_recovery = false;
|
|
}
|
|
goto out;
|
|
}
|
|
|
|
if (ret == SPI_IS_LOCKED)
|
|
goto out;
|
|
|
|
if (ret > TR_BUF_SIZE) {
|
|
ipio_err("Returned length (%d) is invaild\n", ret);
|
|
goto out;
|
|
}
|
|
|
|
rlen = ret;
|
|
|
|
ilitek_dump_data(idev->tr_buf, 8, rlen, 0, "finger report");
|
|
|
|
checksum = ilitek_calc_packet_checksum(idev->tr_buf, rlen - 1);
|
|
pack_checksum = idev->tr_buf[rlen-1];
|
|
trdata = idev->tr_buf;
|
|
pid = idev->tr_buf[0];
|
|
ipio_debug("Packet ID = %x\n", pid);
|
|
|
|
if (checksum != pack_checksum && pid != P5_X_I2CUART_PACKET_ID) {
|
|
ipio_err("Checksum Error (0x%X)! Pack = 0x%X, len = %d\n", checksum, pack_checksum, rlen);
|
|
ipio_debug_level = DEBUG_ALL;
|
|
ilitek_dump_data(trdata, 8, rlen, 0, "finger report with wrong");
|
|
ipio_debug_level = tmp;
|
|
ret = -EINVAL;
|
|
goto out;
|
|
}
|
|
|
|
if (pid == P5_X_INFO_HEADER_PACKET_ID) {
|
|
trdata = idev->tr_buf + P5_X_INFO_HEADER_LENGTH;
|
|
pid = trdata[0];
|
|
}
|
|
|
|
switch (pid) {
|
|
case P5_X_DEMO_PACKET_ID:
|
|
ilitek_tddi_report_ap_mode(trdata, rlen);
|
|
break;
|
|
case P5_X_DEBUG_PACKET_ID:
|
|
ilitek_tddi_report_debug_mode(trdata, rlen);
|
|
break;
|
|
case P5_X_DEBUG_LITE_PACKET_ID:
|
|
ilitek_tddi_report_debug_lite_mode(trdata, rlen);
|
|
break;
|
|
case P5_X_I2CUART_PACKET_ID:
|
|
ilitek_tddi_report_i2cuart_mode(trdata, rlen);
|
|
break;
|
|
case P5_X_GESTURE_PACKET_ID:
|
|
ilitek_tddi_report_gesture_mode(trdata, rlen);
|
|
break;
|
|
case P5_X_GESTURE_FAIL_ID:
|
|
ipio_info("gesture fail reason code = 0x%02x", trdata[1]);
|
|
break;
|
|
case P5_X_DEMO_DEBUG_INFO_PACKET_ID:
|
|
demo_debug_info_mode(trdata, rlen);
|
|
break;
|
|
default:
|
|
ipio_err("Unknown packet id, %x\n", pid);
|
|
#if (TDDI_INTERFACE == BUS_I2C)
|
|
msleep(50);
|
|
ilitek_tddi_ic_get_pc_counter(DO_I2C_RECOVER);
|
|
if (idev->fw_latch != 0) {
|
|
msleep(50);
|
|
ilitek_tddi_ic_func_ctrl_reset();
|
|
ipio_err("I2C func_ctrl_reset\n");
|
|
}
|
|
if ((idev->actual_tp_mode == P5_X_FW_GESTURE_MODE) && idev->fw_latch != 0) {
|
|
msleep(50);
|
|
ilitek_set_gesture_symbol();
|
|
ipio_err("I2C gesture_symbol\n");
|
|
}
|
|
#endif
|
|
break;
|
|
}
|
|
|
|
out:
|
|
if (idev->actual_tp_mode != P5_X_FW_GESTURE_MODE) {
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
}
|
|
|
|
if (idev->actual_tp_mode == P5_X_FW_GESTURE_MODE)
|
|
__pm_relax(idev->ws);
|
|
return ret;
|
|
}
|
|
|
|
int ilitek_tddi_reset_ctrl(int mode)
|
|
{
|
|
int ret = 0;
|
|
|
|
atomic_set(&idev->tp_reset, START);
|
|
|
|
if (mode != TP_IC_CODE_RST)
|
|
ilitek_tddi_ic_check_otp_prog_mode(OFF);
|
|
|
|
switch (mode) {
|
|
case TP_IC_CODE_RST:
|
|
ipio_info("TP IC Code RST \n");
|
|
ret = ilitek_tddi_ic_code_reset(OFF);
|
|
if (ret < 0)
|
|
ipio_err("IC Code reset failed\n");
|
|
break;
|
|
case TP_IC_WHOLE_RST:
|
|
ipio_info("TP IC whole RST\n");
|
|
ret = ilitek_tddi_ic_whole_reset(OFF);
|
|
if (ret < 0)
|
|
ipio_err("IC whole reset failed\n");
|
|
break;
|
|
case TP_HW_RST_ONLY:
|
|
ipio_info("TP HW RST\n");
|
|
ilitek_plat_tp_reset();
|
|
break;
|
|
default:
|
|
ipio_err("Unknown reset mode, %d\n", mode);
|
|
ret = -EINVAL;
|
|
break;
|
|
}
|
|
|
|
/*
|
|
* Since OTP must be folloing with reset, except for code rest,
|
|
* the stat of ice mode should be set as 0.
|
|
*/
|
|
if (mode != TP_IC_CODE_RST)
|
|
atomic_set(&idev->ice_stat, DISABLE);
|
|
|
|
idev->tp_data_format = DATA_FORMAT_DEMO;
|
|
idev->tp_data_len = P5_X_DEMO_MODE_PACKET_LEN;
|
|
idev->pll_clk_wakeup = true;
|
|
atomic_set(&idev->tp_reset, END);
|
|
return ret;
|
|
}
|
|
|
|
static int ilitek_get_tp_module(void)
|
|
{
|
|
/*
|
|
* TODO: users should implement this function
|
|
* if there are various tp modules been used in projects.
|
|
*/
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void ilitek_update_tp_module_info(void)
|
|
{
|
|
int module;
|
|
|
|
module = ilitek_get_tp_module();
|
|
|
|
switch (module) {
|
|
case MODEL_CSOT:
|
|
idev->md_name = "CSOT";
|
|
idev->md_fw_filp_path = CSOT_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = CSOT_FW_REQUEST_PATH;
|
|
idev->md_ini_path = CSOT_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = CSOT_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_CSOT;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_CSOT);
|
|
break;
|
|
case MODEL_AUO:
|
|
idev->md_name = "AUO";
|
|
idev->md_fw_filp_path = AUO_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = AUO_FW_REQUEST_PATH;
|
|
idev->md_ini_path = AUO_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = AUO_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_AUO;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_AUO);
|
|
break;
|
|
case MODEL_BOE:
|
|
idev->md_name = "BOE";
|
|
idev->md_fw_filp_path = BOE_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = BOE_FW_REQUEST_PATH;
|
|
idev->md_ini_path = BOE_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = BOE_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_BOE;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_BOE);
|
|
break;
|
|
case MODEL_INX:
|
|
idev->md_name = "INX";
|
|
idev->md_fw_filp_path = INX_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = INX_FW_REQUEST_PATH;
|
|
idev->md_ini_path = INX_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = INX_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_INX;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_INX);
|
|
break;
|
|
case MODEL_DJ:
|
|
idev->md_name = "DJ";
|
|
idev->md_fw_filp_path = DJ_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = DJ_FW_REQUEST_PATH;
|
|
idev->md_ini_path = DJ_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = DJ_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_DJ;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_DJ);
|
|
break;
|
|
case MODEL_TXD:
|
|
idev->md_name = "TXD";
|
|
idev->md_fw_filp_path = TXD_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = TXD_FW_REQUEST_PATH;
|
|
idev->md_ini_path = TXD_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = TXD_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_TXD;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_TXD);
|
|
break;
|
|
case MODEL_TM:
|
|
idev->md_name = "TM";
|
|
idev->md_fw_filp_path = TM_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = TM_FW_REQUEST_PATH;
|
|
idev->md_ini_path = TM_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = TM_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_TM;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_TM);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
if (module == 0 || idev->md_fw_ili_size < ILI_FILE_HEADER) {
|
|
ipio_err("Couldn't find any tp modules, applying default settings\n");
|
|
idev->md_name = "DEF";
|
|
idev->md_fw_filp_path = DEF_FW_FILP_PATH;
|
|
idev->md_fw_rq_path = DEF_FW_REQUEST_PATH;
|
|
idev->md_ini_path = DEF_INI_NAME_PATH;
|
|
idev->md_ini_rq_path = DEF_INI_REQUEST_PATH;
|
|
idev->md_fw_ili = CTPM_FW_DEF;
|
|
idev->md_fw_ili_size = sizeof(CTPM_FW_DEF);
|
|
}
|
|
|
|
ipio_info("Found %s module: ini path = %s, fw path = (%s, %s, %d)\n",
|
|
idev->md_name,
|
|
idev->md_ini_path,
|
|
idev->md_fw_filp_path,
|
|
idev->md_fw_rq_path,
|
|
idev->md_fw_ili_size);
|
|
|
|
idev->tp_module = module;
|
|
}
|
|
|
|
int ilitek_tddi_init(void)
|
|
{
|
|
#if (BOOT_FW_UPDATE | HOST_DOWN_LOAD)
|
|
struct task_struct *fw_boot_th;
|
|
#endif
|
|
|
|
ipio_info("driver version = %s\n", DRIVER_VERSION);
|
|
|
|
mutex_init(&idev->touch_mutex);
|
|
mutex_init(&idev->debug_mutex);
|
|
mutex_init(&idev->debug_read_mutex);
|
|
init_waitqueue_head(&(idev->inq));
|
|
spin_lock_init(&idev->irq_spin);
|
|
init_completion(&idev->esd_done);
|
|
|
|
atomic_set(&idev->irq_stat, DISABLE);
|
|
atomic_set(&idev->ice_stat, DISABLE);
|
|
atomic_set(&idev->tp_reset, END);
|
|
atomic_set(&idev->fw_stat, END);
|
|
atomic_set(&idev->mp_stat, DISABLE);
|
|
atomic_set(&idev->tp_sleep, END);
|
|
atomic_set(&idev->cmd_int_check, DISABLE);
|
|
atomic_set(&idev->esd_stat, END);
|
|
atomic_set(&idev->tp_sw_mode, END);
|
|
|
|
ilitek_tddi_ic_init();
|
|
ilitek_tddi_wq_init();
|
|
|
|
idev->fix_ice = DISABLE;
|
|
|
|
/* Must do hw reset once in first time for work normally if tp reset is avaliable */
|
|
#if !TDDI_RST_BIND
|
|
if (ilitek_tddi_reset_ctrl(idev->reset) < 0)
|
|
ipio_err("TP Reset failed during init\n");
|
|
#endif
|
|
|
|
idev->do_otp_check = ENABLE;
|
|
idev->demo_debug_info[0] = demo_debug_info_id0;
|
|
idev->tp_data_format = DATA_FORMAT_DEMO;
|
|
idev->boot = false;
|
|
|
|
/*
|
|
* This status of ice enable will be reset until process of fw upgrade runs.
|
|
* it might cause unknown problems if we disable ice mode without any
|
|
* codes inside touch ic.
|
|
*/
|
|
if (ilitek_tddi_ic_dummy_check(OFF) < 0) {
|
|
ipio_err("Not found ilitek chip\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (ilitek_tddi_ic_get_info() < 0)
|
|
ipio_err("Chip info is incorrect\n");
|
|
|
|
ilitek_update_tp_module_info();
|
|
|
|
ilitek_tddi_node_init();
|
|
|
|
ilitek_tddi_fw_read_flash_info(OFF);
|
|
|
|
#if (BOOT_FW_UPDATE | HOST_DOWN_LOAD)
|
|
fw_boot_th = kthread_run(ilitek_tddi_fw_upgrade_handler, NULL, "ili_fw_boot");
|
|
if (fw_boot_th == (struct task_struct *)ERR_PTR) {
|
|
fw_boot_th = NULL;
|
|
WARN_ON(!fw_boot_th);
|
|
ipio_err("Failed to create fw upgrade thread\n");
|
|
}
|
|
#else
|
|
if (ilitek_ice_mode_ctrl(DISABLE, OFF) < 0)
|
|
ipio_err("Failed to disable ice mode failed during init\n");
|
|
|
|
#if (TDDI_INTERFACE == BUS_I2C)
|
|
idev->info_from_hex = DISABLE;
|
|
#endif
|
|
|
|
ilitek_tddi_ic_get_core_ver();
|
|
ilitek_tddi_ic_get_protocl_ver();
|
|
ilitek_tddi_ic_get_fw_ver();
|
|
ilitek_tddi_ic_get_tp_info();
|
|
ilitek_tddi_ic_get_panel_info();
|
|
|
|
#if (TDDI_INTERFACE == BUS_I2C)
|
|
idev->info_from_hex = ENABLE;
|
|
#endif
|
|
|
|
ipio_info("Registre touch to input subsystem\n");
|
|
ilitek_plat_input_register();
|
|
ilitek_tddi_wq_ctrl(WQ_ESD, ENABLE);
|
|
ilitek_tddi_wq_ctrl(WQ_BAT, ENABLE);
|
|
idev->boot = true;
|
|
#endif
|
|
|
|
idev->ws = wakeup_source_register(NULL, "ili_wakelock");
|
|
if (!idev->ws)
|
|
ipio_err("wakeup source request failed\n");
|
|
|
|
ilitek_tddi_ic_edge_palm_para_init();
|
|
return 0;
|
|
}
|
|
|
|
void ilitek_tddi_dev_remove(void)
|
|
{
|
|
ipio_info("remove ilitek dev\n");
|
|
|
|
if (!idev)
|
|
return;
|
|
|
|
gpio_free(idev->tp_int);
|
|
gpio_free(idev->tp_rst);
|
|
|
|
if (esd_wq != NULL) {
|
|
cancel_delayed_work_sync(&esd_work);
|
|
flush_workqueue(esd_wq);
|
|
destroy_workqueue(esd_wq);
|
|
}
|
|
if (bat_wq != NULL) {
|
|
cancel_delayed_work_sync(&bat_work);
|
|
flush_workqueue(bat_wq);
|
|
destroy_workqueue(bat_wq);
|
|
}
|
|
|
|
if (idev->ws)
|
|
wakeup_source_unregister(idev->ws);
|
|
|
|
kfree(idev->tr_buf);
|
|
kfree(idev->gcoord);
|
|
ilitek_tddi_interface_dev_exit(idev);
|
|
}
|
|
|
|
int ilitek_tddi_dev_init(struct ilitek_hwif_info *hwif)
|
|
{
|
|
ipio_info("TP Interface: %s\n", (hwif->bus_type == BUS_I2C) ? "I2C" : "SPI");
|
|
return ilitek_tddi_interface_dev_init(hwif);
|
|
}
|