|
@@ -27,7 +27,7 @@
|
|
|
|
|
|
#include "goodix_ts_core.h"
|
|
|
|
|
|
-#define GOODIX_DEFAULT_CFG_NAME "goodix_cfg_group.cfg"
|
|
|
+#define GOODIX_DEFAULT_CFG_NAME "goodix_cfg_group.cfg"
|
|
|
#define GOOIDX_INPUT_PHYS "goodix_ts/input0"
|
|
|
|
|
|
struct goodix_module goodix_modules;
|
|
@@ -91,7 +91,8 @@ static int __do_register_ext_module(struct goodix_ext_module *module)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-static void goodix_register_ext_module_work(struct work_struct *work) {
|
|
|
+static void goodix_register_ext_module_work(struct work_struct *work)
|
|
|
+{
|
|
|
struct goodix_ext_module *module =
|
|
|
container_of(work, struct goodix_ext_module, work);
|
|
|
|
|
@@ -132,13 +133,13 @@ int goodix_register_ext_module(struct goodix_ext_module *module)
|
|
|
if (!module)
|
|
|
return -EINVAL;
|
|
|
|
|
|
- ts_info("goodix_register_ext_module IN");
|
|
|
+ ts_info("IN");
|
|
|
|
|
|
goodix_core_module_init();
|
|
|
INIT_WORK(&module->work, goodix_register_ext_module_work);
|
|
|
schedule_work(&module->work);
|
|
|
|
|
|
- ts_info("goodix_register_ext_module OUT");
|
|
|
+ ts_info("OUT");
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
@@ -150,7 +151,8 @@ int goodix_register_ext_module_no_wait(struct goodix_ext_module *module)
|
|
|
{
|
|
|
if (!module)
|
|
|
return -EINVAL;
|
|
|
- ts_info("goodix_register_ext_module_no_wait IN");
|
|
|
+
|
|
|
+ ts_info("IN");
|
|
|
goodix_core_module_init();
|
|
|
/* driver probe failed */
|
|
|
if (core_module_prob_sate != CORE_MODULE_PROB_SUCCESS) {
|
|
@@ -273,7 +275,7 @@ struct kobject *goodix_get_default_kobj(void)
|
|
|
}
|
|
|
|
|
|
/* show driver infomation */
|
|
|
-static ssize_t goodix_ts_driver_info_show(struct device *dev,
|
|
|
+static ssize_t driver_info_show(struct device *dev,
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
{
|
|
|
return snprintf(buf, PAGE_SIZE, "DriverVersion:%s\n",
|
|
@@ -281,20 +283,22 @@ static ssize_t goodix_ts_driver_info_show(struct device *dev,
|
|
|
}
|
|
|
|
|
|
/* show chip infoamtion */
|
|
|
-static ssize_t goodix_ts_chip_info_show(struct device *dev,
|
|
|
+static ssize_t chip_info_show(struct device *dev,
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
{
|
|
|
- struct goodix_ts_core *core_data = dev_get_drvdata(dev);
|
|
|
- struct goodix_ts_hw_ops *hw_ops = core_data->hw_ops;
|
|
|
+ struct goodix_ts_core *cd = dev_get_drvdata(dev);
|
|
|
+ struct goodix_ts_hw_ops *hw_ops = cd->hw_ops;
|
|
|
struct goodix_fw_version chip_ver;
|
|
|
+ struct goodix_ic_info ic_info;
|
|
|
u8 temp_pid[8] = {0};
|
|
|
int ret;
|
|
|
int cnt = -EINVAL;
|
|
|
|
|
|
if (hw_ops->read_version) {
|
|
|
- ret = hw_ops->read_version(core_data, &chip_ver);
|
|
|
+ ret = hw_ops->read_version(cd, &chip_ver);
|
|
|
if (!ret) {
|
|
|
- memcpy(temp_pid, chip_ver.rom_pid, sizeof(chip_ver.rom_pid));
|
|
|
+ memcpy(temp_pid, chip_ver.rom_pid,
|
|
|
+ sizeof(chip_ver.rom_pid));
|
|
|
cnt = snprintf(&buf[0], PAGE_SIZE,
|
|
|
"rom_pid:%s\nrom_vid:%02x%02x%02x\n",
|
|
|
temp_pid, chip_ver.rom_vid[0],
|
|
@@ -310,12 +314,14 @@ static ssize_t goodix_ts_chip_info_show(struct device *dev,
|
|
|
}
|
|
|
|
|
|
if (hw_ops->get_ic_info) {
|
|
|
- ret = hw_ops->get_ic_info(core_data, &core_data->ic_info);
|
|
|
+ ret = hw_ops->get_ic_info(cd, &ic_info);
|
|
|
if (!ret) {
|
|
|
cnt += snprintf(&buf[cnt], PAGE_SIZE,
|
|
|
- "config_id:%x\n", core_data->ic_info.version.config_id);
|
|
|
+ "config_id:%x\n",
|
|
|
+ ic_info.version.config_id);
|
|
|
cnt += snprintf(&buf[cnt], PAGE_SIZE,
|
|
|
- "config_version:%x\n", core_data->ic_info.version.config_version);
|
|
|
+ "config_version:%x\n",
|
|
|
+ ic_info.version.config_version);
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -339,7 +345,7 @@ static ssize_t goodix_ts_reset_store(struct device *dev,
|
|
|
}
|
|
|
|
|
|
/* read config */
|
|
|
-static ssize_t goodix_ts_read_cfg_show(struct device *dev,
|
|
|
+static ssize_t read_cfg_show(struct device *dev,
|
|
|
struct device_attribute *attr,
|
|
|
char *buf)
|
|
|
{
|
|
@@ -415,9 +421,8 @@ static int goodix_ts_convert_0x_data(const u8 *buf, int buf_size,
|
|
|
continue;
|
|
|
|
|
|
if (temp_index >= m_size) {
|
|
|
- ts_err("exchange cfg data error, overflow,"
|
|
|
- "temp_index:%d,m_size:%d",
|
|
|
- temp_index, m_size);
|
|
|
+ ts_err("exchange cfg data error, overflow, temp_index:%d,m_size:%d",
|
|
|
+ temp_index, m_size);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
high = ascii2hex(buf[i + 1]);
|
|
@@ -441,13 +446,9 @@ static ssize_t goodix_ts_send_cfg_store(struct device *dev,
|
|
|
struct goodix_ts_hw_ops *hw_ops = core_data->hw_ops;
|
|
|
struct goodix_ic_config *config = NULL;
|
|
|
const struct firmware *cfg_img = NULL;
|
|
|
- int en;
|
|
|
int ret;
|
|
|
|
|
|
- if (sscanf(buf, "%d", &en) != 1)
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- if (en != 1)
|
|
|
+ if (buf[0] != '1')
|
|
|
return -EINVAL;
|
|
|
|
|
|
hw_ops->irq_enable(core_data, false);
|
|
@@ -476,7 +477,7 @@ static ssize_t goodix_ts_send_cfg_store(struct device *dev,
|
|
|
if (ret < 0)
|
|
|
ts_err("send config failed");
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
exit:
|
|
|
hw_ops->irq_enable(core_data, true);
|
|
|
kfree(config);
|
|
@@ -513,7 +514,8 @@ static ssize_t goodix_ts_reg_rw_show(struct device *dev,
|
|
|
ret = hw_ops->read(core_data, rw_addr, show_buf, rw_len);
|
|
|
if (ret < 0) {
|
|
|
ts_err("failed read addr(%x) length(%d)", rw_addr, rw_len);
|
|
|
- return snprintf(buf, PAGE_SIZE, "failed read addr(%x), len(%d)\n",
|
|
|
+ return snprintf(buf, PAGE_SIZE,
|
|
|
+ "failed read addr(%x), len(%d)\n",
|
|
|
rw_addr, rw_len);
|
|
|
}
|
|
|
|
|
@@ -692,7 +694,7 @@ static ssize_t goodix_ts_esd_info_show(struct device *dev,
|
|
|
"enabled" : "disabled");
|
|
|
|
|
|
return r;
|
|
|
-}
|
|
|
+}
|
|
|
|
|
|
/* enable/disable esd */
|
|
|
static ssize_t goodix_ts_esd_info_store(struct device *dev,
|
|
@@ -736,17 +738,26 @@ static ssize_t goodix_ts_debug_log_store(struct device *dev,
|
|
|
else
|
|
|
debug_log_flag = false;
|
|
|
return count;
|
|
|
-}
|
|
|
-
|
|
|
-static DEVICE_ATTR(driver_info, 0444, goodix_ts_driver_info_show, NULL);
|
|
|
-static DEVICE_ATTR(chip_info, 0444, goodix_ts_chip_info_show, NULL);
|
|
|
-static DEVICE_ATTR(reset, 0220, NULL, goodix_ts_reset_store);
|
|
|
-static DEVICE_ATTR(send_cfg, 0220, NULL, goodix_ts_send_cfg_store);
|
|
|
-static DEVICE_ATTR(read_cfg, 0444, goodix_ts_read_cfg_show, NULL);
|
|
|
-static DEVICE_ATTR(reg_rw, 0664, goodix_ts_reg_rw_show, goodix_ts_reg_rw_store);
|
|
|
-static DEVICE_ATTR(irq_info, 0664, goodix_ts_irq_info_show, goodix_ts_irq_info_store);
|
|
|
-static DEVICE_ATTR(esd_info, 0664, goodix_ts_esd_info_show, goodix_ts_esd_info_store);
|
|
|
-static DEVICE_ATTR(debug_log, 0664, goodix_ts_debug_log_show, goodix_ts_debug_log_store);
|
|
|
+}
|
|
|
+
|
|
|
+static DEVICE_ATTR(driver_info, 0440,
|
|
|
+ driver_info_show, NULL);
|
|
|
+static DEVICE_ATTR(chip_info, 0440,
|
|
|
+ chip_info_show, NULL);
|
|
|
+static DEVICE_ATTR(reset, 0220,
|
|
|
+ NULL, goodix_ts_reset_store);
|
|
|
+static DEVICE_ATTR(send_cfg, 0220,
|
|
|
+ NULL, goodix_ts_send_cfg_store);
|
|
|
+static DEVICE_ATTR(read_cfg, 0440,
|
|
|
+ read_cfg_show, NULL);
|
|
|
+static DEVICE_ATTR(reg_rw, 0664,
|
|
|
+ goodix_ts_reg_rw_show, goodix_ts_reg_rw_store);
|
|
|
+static DEVICE_ATTR(irq_info, 0664,
|
|
|
+ goodix_ts_irq_info_show, goodix_ts_irq_info_store);
|
|
|
+static DEVICE_ATTR(esd_info, 0664,
|
|
|
+ goodix_ts_esd_info_show, goodix_ts_esd_info_store);
|
|
|
+static DEVICE_ATTR(debug_log, 0664,
|
|
|
+ goodix_ts_debug_log_show, goodix_ts_debug_log_store);
|
|
|
|
|
|
static struct attribute *sysfs_attrs[] = {
|
|
|
&dev_attr_driver_info.attr,
|
|
@@ -794,16 +805,12 @@ static int rawdata_proc_show(struct seq_file *m, void *v)
|
|
|
int i;
|
|
|
int index;
|
|
|
|
|
|
- if (!m || !v || !cd) {
|
|
|
- ts_err("rawdata_proc_show, input null ptr");
|
|
|
+ if (!m || !v || !cd)
|
|
|
return -EIO;
|
|
|
- }
|
|
|
|
|
|
info = kzalloc(sizeof(*info), GFP_KERNEL);
|
|
|
- if (!info) {
|
|
|
- ts_err("Failed to alloc rawdata info memory");
|
|
|
+ if (!info)
|
|
|
return -ENOMEM;
|
|
|
- }
|
|
|
|
|
|
ret = cd->hw_ops->get_capacitance_data(cd, info);
|
|
|
if (ret < 0) {
|
|
@@ -814,19 +821,19 @@ static int rawdata_proc_show(struct seq_file *m, void *v)
|
|
|
rx = info->buff[0];
|
|
|
tx = info->buff[1];
|
|
|
seq_printf(m, "TX:%d RX:%d\n", tx, rx);
|
|
|
- seq_printf(m, "mutual_rawdata:\n");
|
|
|
+ seq_puts(m, "mutual_rawdata:\n");
|
|
|
index = 2;
|
|
|
for (i = 0; i < tx * rx; i++) {
|
|
|
seq_printf(m, "%5d,", info->buff[index + i]);
|
|
|
if ((i + 1) % tx == 0)
|
|
|
- seq_printf(m, "\n");
|
|
|
+ seq_puts(m, "\n");
|
|
|
}
|
|
|
- seq_printf(m, "mutual_diffdata:\n");
|
|
|
+ seq_puts(m, "mutual_diffdata:\n");
|
|
|
index += tx * rx;
|
|
|
for (i = 0; i < tx * rx; i++) {
|
|
|
seq_printf(m, "%3d,", info->buff[index + i]);
|
|
|
if ((i + 1) % tx == 0)
|
|
|
- seq_printf(m, "\n");
|
|
|
+ seq_puts(m, "\n");
|
|
|
}
|
|
|
|
|
|
exit:
|
|
@@ -836,22 +843,36 @@ exit:
|
|
|
|
|
|
static int rawdata_proc_open(struct inode *inode, struct file *file)
|
|
|
{
|
|
|
- return single_open_size(file, rawdata_proc_show, PDE_DATA(inode), PAGE_SIZE * 10);
|
|
|
+ return single_open_size(file, rawdata_proc_show,
|
|
|
+ PDE_DATA(inode), PAGE_SIZE * 10);
|
|
|
}
|
|
|
|
|
|
+#if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0))
|
|
|
+static const struct proc_ops rawdata_proc_fops = {
|
|
|
+ .proc_open = rawdata_proc_open,
|
|
|
+ .proc_read = seq_read,
|
|
|
+ .proc_lseek = seq_lseek,
|
|
|
+ .proc_release = single_release,
|
|
|
+};
|
|
|
+#else
|
|
|
static const struct file_operations rawdata_proc_fops = {
|
|
|
.open = rawdata_proc_open,
|
|
|
.read = seq_read,
|
|
|
.llseek = seq_lseek,
|
|
|
.release = single_release,
|
|
|
};
|
|
|
+#endif
|
|
|
|
|
|
static void goodix_ts_procfs_init(struct goodix_ts_core *core_data)
|
|
|
{
|
|
|
+ struct proc_dir_entry *proc_entry;
|
|
|
+
|
|
|
if (!proc_mkdir("goodix_ts", NULL))
|
|
|
return;
|
|
|
- proc_create_data("goodix_ts/tp_capacitance_data",
|
|
|
- 0666, NULL, &rawdata_proc_fops, core_data);
|
|
|
+ proc_entry = proc_create_data("goodix_ts/tp_capacitance_data",
|
|
|
+ 0664, NULL, &rawdata_proc_fops, core_data);
|
|
|
+ if (!proc_entry)
|
|
|
+ ts_err("failed to create proc entry");
|
|
|
}
|
|
|
|
|
|
static void goodix_ts_procfs_exit(struct goodix_ts_core *core_data)
|
|
@@ -895,7 +916,7 @@ int goodix_ts_blocking_notify(enum ts_notify_event evt, void *v)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_OF
|
|
|
+#if IS_ENABLED(CONFIG_OF)
|
|
|
/**
|
|
|
* goodix_parse_dt_resolution - parse resolution from dt
|
|
|
* @node: devicetree node
|
|
@@ -1026,20 +1047,28 @@ static int goodix_parse_dt(struct device_node *node,
|
|
|
r = of_property_read_string(node, "goodix,firmware-name", &name_tmp);
|
|
|
if (!r) {
|
|
|
ts_info("firmware name from dt: %s", name_tmp);
|
|
|
- strncpy(board_data->fw_name, name_tmp, sizeof(board_data->fw_name));
|
|
|
+ strncpy(board_data->fw_name,
|
|
|
+ name_tmp, sizeof(board_data->fw_name));
|
|
|
} else {
|
|
|
- ts_info("can't find firmware name, use default: %s", TS_DEFAULT_FIRMWARE);
|
|
|
- strncpy(board_data->fw_name, TS_DEFAULT_FIRMWARE, sizeof(board_data->fw_name));
|
|
|
+ ts_info("can't find firmware name, use default: %s",
|
|
|
+ TS_DEFAULT_FIRMWARE);
|
|
|
+ strncpy(board_data->fw_name,
|
|
|
+ TS_DEFAULT_FIRMWARE,
|
|
|
+ sizeof(board_data->fw_name));
|
|
|
}
|
|
|
|
|
|
/* get config file name */
|
|
|
r = of_property_read_string(node, "goodix,config-name", &name_tmp);
|
|
|
if (!r) {
|
|
|
ts_info("config name from dt: %s", name_tmp);
|
|
|
- strncpy(board_data->cfg_bin_name, name_tmp, sizeof(board_data->cfg_bin_name));
|
|
|
+ strncpy(board_data->cfg_bin_name, name_tmp,
|
|
|
+ sizeof(board_data->cfg_bin_name));
|
|
|
} else {
|
|
|
- ts_info("can't find config name, use default: %s", TS_DEFAULT_CFG_BIN);
|
|
|
- strncpy(board_data->cfg_bin_name, TS_DEFAULT_CFG_BIN, sizeof(board_data->cfg_bin_name));
|
|
|
+ ts_info("can't find config name, use default: %s",
|
|
|
+ TS_DEFAULT_CFG_BIN);
|
|
|
+ strncpy(board_data->cfg_bin_name,
|
|
|
+ TS_DEFAULT_CFG_BIN,
|
|
|
+ sizeof(board_data->cfg_bin_name));
|
|
|
}
|
|
|
|
|
|
/* get xyz resolutions */
|
|
@@ -1081,7 +1110,8 @@ static void goodix_ts_report_pen(struct input_dev *dev,
|
|
|
ts_debug("pen_data:x %d, y %d, p %d, tilt_x %d tilt_y %d key[%d %d]",
|
|
|
pen_data->coords.x, pen_data->coords.y,
|
|
|
pen_data->coords.p, pen_data->coords.tilt_x,
|
|
|
- pen_data->coords.tilt_y, pen_data->keys[0].status == TS_TOUCH ? 1 : 0,
|
|
|
+ pen_data->coords.tilt_y,
|
|
|
+ pen_data->keys[0].status == TS_TOUCH ? 1 : 0,
|
|
|
pen_data->keys[1].status == TS_TOUCH ? 1 : 0);
|
|
|
} else {
|
|
|
input_report_key(dev, BTN_TOUCH, 0);
|
|
@@ -1109,8 +1139,9 @@ static void goodix_ts_report_finger(struct input_dev *dev,
|
|
|
|
|
|
for (i = 0; i < GOODIX_MAX_TOUCH; i++) {
|
|
|
if (touch_data->coords[i].status == TS_TOUCH) {
|
|
|
- ts_debug("report: id %d, x %d, y %d, w %d", i,
|
|
|
- touch_data->coords[i].x, touch_data->coords[i].y,
|
|
|
+ ts_debug("report: id[%d], x %d, y %d, w %d", i,
|
|
|
+ touch_data->coords[i].x,
|
|
|
+ touch_data->coords[i].y,
|
|
|
touch_data->coords[i].w);
|
|
|
input_mt_slot(dev, i);
|
|
|
input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
|
|
@@ -1200,15 +1231,10 @@ static irqreturn_t goodix_ts_threadirq_func(int irq, void *data)
|
|
|
goodix_ts_report_pen(core_data->pen_dev,
|
|
|
&ts_event->pen_data);
|
|
|
}
|
|
|
- if (ts_event->event_type == EVENT_REQUEST) {
|
|
|
+ if (ts_event->event_type == EVENT_REQUEST)
|
|
|
goodix_ts_request_handle(core_data, ts_event);
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
- if (!core_data->tools_ctrl_sync && !ts_event->retry)
|
|
|
- hw_ops->after_event_handler(core_data);
|
|
|
- ts_event->retry = 0;
|
|
|
-
|
|
|
return IRQ_HANDLED;
|
|
|
}
|
|
|
|
|
@@ -1343,22 +1369,25 @@ static int goodix_ts_gpio_setup(struct goodix_ts_core *core_data)
|
|
|
* after kenerl3.13, gpio_ api is deprecated, new
|
|
|
* driver should use gpiod_ api.
|
|
|
*/
|
|
|
- r = devm_gpio_request_one(&core_data->pdev->dev, ts_bdata->reset_gpio,
|
|
|
- GPIOF_OUT_INIT_LOW, "ts_reset_gpio");
|
|
|
+ r = devm_gpio_request_one(&core_data->pdev->dev,
|
|
|
+ ts_bdata->reset_gpio,
|
|
|
+ GPIOF_OUT_INIT_LOW, "ts_reset_gpio");
|
|
|
if (r < 0) {
|
|
|
ts_err("Failed to request reset gpio, r:%d", r);
|
|
|
return r;
|
|
|
}
|
|
|
|
|
|
- r = devm_gpio_request_one(&core_data->pdev->dev, ts_bdata->irq_gpio,
|
|
|
- GPIOF_IN, "ts_irq_gpio");
|
|
|
+ r = devm_gpio_request_one(&core_data->pdev->dev,
|
|
|
+ ts_bdata->irq_gpio,
|
|
|
+ GPIOF_IN, "ts_irq_gpio");
|
|
|
if (r < 0) {
|
|
|
ts_err("Failed to request irq gpio, r:%d", r);
|
|
|
return r;
|
|
|
}
|
|
|
|
|
|
if (ts_bdata->avdd_gpio > 0) {
|
|
|
- r = devm_gpio_request_one(&core_data->pdev->dev, ts_bdata->avdd_gpio,
|
|
|
+ r = devm_gpio_request_one(&core_data->pdev->dev,
|
|
|
+ ts_bdata->avdd_gpio,
|
|
|
GPIOF_OUT_INIT_LOW, "ts_avdd_gpio");
|
|
|
if (r < 0) {
|
|
|
ts_err("Failed to request avdd-gpio, r:%d", r);
|
|
@@ -1367,7 +1396,8 @@ static int goodix_ts_gpio_setup(struct goodix_ts_core *core_data)
|
|
|
}
|
|
|
|
|
|
if (ts_bdata->iovdd_gpio > 0) {
|
|
|
- r = devm_gpio_request_one(&core_data->pdev->dev, ts_bdata->iovdd_gpio,
|
|
|
+ r = devm_gpio_request_one(&core_data->pdev->dev,
|
|
|
+ ts_bdata->iovdd_gpio,
|
|
|
GPIOF_OUT_INIT_LOW, "ts_iovdd_gpio");
|
|
|
if (r < 0) {
|
|
|
ts_err("Failed to request iovdd-gpio, r:%d", r);
|
|
@@ -1405,15 +1435,12 @@ static int goodix_ts_input_dev_config(struct goodix_ts_core *core_data)
|
|
|
input_dev->id.vendor = 0xBEEF;
|
|
|
input_dev->id.version = 10427;
|
|
|
|
|
|
- __set_bit(EV_SYN, input_dev->evbit);
|
|
|
- __set_bit(EV_KEY, input_dev->evbit);
|
|
|
- __set_bit(EV_ABS, input_dev->evbit);
|
|
|
- __set_bit(BTN_TOUCH, input_dev->keybit);
|
|
|
- __set_bit(BTN_TOOL_FINGER, input_dev->keybit);
|
|
|
-
|
|
|
-#ifdef INPUT_PROP_DIRECT
|
|
|
- __set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
|
|
|
-#endif
|
|
|
+ set_bit(EV_SYN, input_dev->evbit);
|
|
|
+ set_bit(EV_KEY, input_dev->evbit);
|
|
|
+ set_bit(EV_ABS, input_dev->evbit);
|
|
|
+ set_bit(BTN_TOUCH, input_dev->keybit);
|
|
|
+ set_bit(BTN_TOOL_FINGER, input_dev->keybit);
|
|
|
+ set_bit(INPUT_PROP_DIRECT, input_dev->propbit);
|
|
|
|
|
|
/* set input parameters */
|
|
|
input_set_abs_params(input_dev, ABS_MT_POSITION_X,
|
|
@@ -1432,6 +1459,8 @@ static int goodix_ts_input_dev_config(struct goodix_ts_core *core_data)
|
|
|
#endif
|
|
|
|
|
|
input_set_capability(input_dev, EV_KEY, KEY_POWER);
|
|
|
+ input_set_capability(input_dev, EV_KEY, KEY_WAKEUP);
|
|
|
+ input_set_capability(input_dev, EV_KEY, KEY_GOTO);
|
|
|
|
|
|
r = input_register_device(input_dev);
|
|
|
if (r < 0) {
|
|
@@ -1464,15 +1493,15 @@ static int goodix_ts_pen_dev_config(struct goodix_ts_core *core_data)
|
|
|
pen_dev->id.version = 10427;
|
|
|
|
|
|
pen_dev->evbit[0] |= BIT_MASK(EV_KEY) | BIT_MASK(EV_ABS);
|
|
|
- __set_bit(ABS_X, pen_dev->absbit);
|
|
|
- __set_bit(ABS_Y, pen_dev->absbit);
|
|
|
- __set_bit(ABS_TILT_X, pen_dev->absbit);
|
|
|
- __set_bit(ABS_TILT_Y, pen_dev->absbit);
|
|
|
- __set_bit(BTN_STYLUS, pen_dev->keybit);
|
|
|
- __set_bit(BTN_STYLUS2, pen_dev->keybit);
|
|
|
- __set_bit(BTN_TOUCH, pen_dev->keybit);
|
|
|
- __set_bit(BTN_TOOL_PEN, pen_dev->keybit);
|
|
|
- __set_bit(INPUT_PROP_DIRECT, pen_dev->propbit);
|
|
|
+ set_bit(ABS_X, pen_dev->absbit);
|
|
|
+ set_bit(ABS_Y, pen_dev->absbit);
|
|
|
+ set_bit(ABS_TILT_X, pen_dev->absbit);
|
|
|
+ set_bit(ABS_TILT_Y, pen_dev->absbit);
|
|
|
+ set_bit(BTN_STYLUS, pen_dev->keybit);
|
|
|
+ set_bit(BTN_STYLUS2, pen_dev->keybit);
|
|
|
+ set_bit(BTN_TOUCH, pen_dev->keybit);
|
|
|
+ set_bit(BTN_TOOL_PEN, pen_dev->keybit);
|
|
|
+ set_bit(INPUT_PROP_DIRECT, pen_dev->propbit);
|
|
|
input_set_abs_params(pen_dev, ABS_X, 0, ts_bdata->panel_max_x, 0, 0);
|
|
|
input_set_abs_params(pen_dev, ABS_Y, 0, ts_bdata->panel_max_y, 0, 0);
|
|
|
input_set_abs_params(pen_dev, ABS_PRESSURE, 0,
|
|
@@ -1480,7 +1509,7 @@ static int goodix_ts_pen_dev_config(struct goodix_ts_core *core_data)
|
|
|
input_set_abs_params(pen_dev, ABS_TILT_X,
|
|
|
-GOODIX_PEN_MAX_TILT, GOODIX_PEN_MAX_TILT, 0, 0);
|
|
|
input_set_abs_params(pen_dev, ABS_TILT_Y,
|
|
|
- -GOODIX_PEN_MAX_TILT, GOODIX_PEN_MAX_TILT, 0, 0);
|
|
|
+ -GOODIX_PEN_MAX_TILT, GOODIX_PEN_MAX_TILT, 0, 0);
|
|
|
|
|
|
r = input_register_device(pen_dev);
|
|
|
if (r < 0) {
|
|
@@ -1562,9 +1591,9 @@ static void goodix_ts_esd_on(struct goodix_ts_core *cd)
|
|
|
return;
|
|
|
|
|
|
atomic_set(&ts_esd->esd_on, 1);
|
|
|
- if (!schedule_delayed_work(&ts_esd->esd_work, 2 * HZ)) {
|
|
|
+ if (!schedule_delayed_work(&ts_esd->esd_work, 2 * HZ))
|
|
|
ts_info("esd work already in workqueue");
|
|
|
- }
|
|
|
+
|
|
|
ts_info("esd on");
|
|
|
}
|
|
|
|
|
@@ -1752,6 +1781,7 @@ static int goodix_ts_resume(struct goodix_ts_core *core_data)
|
|
|
|
|
|
ts_info("Resume start");
|
|
|
atomic_set(&core_data->suspended, 0);
|
|
|
+ hw_ops->irq_enable(core_data, false);
|
|
|
|
|
|
mutex_lock(&goodix_modules.mutex);
|
|
|
if (!list_empty(&goodix_modules.head)) {
|
|
@@ -1804,7 +1834,25 @@ out:
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_FB
|
|
|
+/* goodix FB test */
|
|
|
+/*
|
|
|
+void goodix_fb_ext_ctrl(int suspend)
|
|
|
+{
|
|
|
+ struct goodix_ts_core *cd = goodix_modules.core_data;
|
|
|
+
|
|
|
+ if (!cd)
|
|
|
+ return;
|
|
|
+
|
|
|
+ if (suspend)
|
|
|
+ goodix_ts_suspend(cd);
|
|
|
+ else
|
|
|
+ goodix_ts_resume(cd);
|
|
|
+}
|
|
|
+EXPORT_SYMBOL(goodix_fb_ext_ctrl);
|
|
|
+*/
|
|
|
+
|
|
|
+
|
|
|
+#if IS_ENABLED(CONFIG_FB)
|
|
|
/**
|
|
|
* goodix_ts_fb_notifier_callback - Framebuffer notifier callback
|
|
|
* Called by kernel during framebuffer blanck/unblank phrase
|
|
@@ -1821,6 +1869,7 @@ int goodix_ts_fb_notifier_callback(struct notifier_block *self,
|
|
|
/* before fb blank */
|
|
|
} else if (event == FB_EVENT_BLANK) {
|
|
|
int *blank = fb_event->data;
|
|
|
+
|
|
|
if (*blank == FB_BLANK_UNBLANK)
|
|
|
goodix_ts_resume(core_data);
|
|
|
else if (*blank == FB_BLANK_POWERDOWN)
|
|
@@ -1832,9 +1881,8 @@ int goodix_ts_fb_notifier_callback(struct notifier_block *self,
|
|
|
}
|
|
|
#endif
|
|
|
|
|
|
-
|
|
|
-#ifdef CONFIG_PM
|
|
|
-#if !defined(CONFIG_FB) && !defined(CONFIG_HAS_EARLYSUSPEND)
|
|
|
+#if IS_ENABLED(CONFIG_PM)
|
|
|
+#if !IS_ENABLED(CONFIG_FB) && !IS_ENABLED(CONFIG_HAS_EARLYSUSPEND)
|
|
|
/**
|
|
|
* goodix_ts_pm_suspend - PM suspend function
|
|
|
* Called by kernel during system suspend phrase
|
|
@@ -1917,7 +1965,7 @@ int goodix_ts_stage2_init(struct goodix_ts_core *cd)
|
|
|
}
|
|
|
ts_info("success register irq");
|
|
|
|
|
|
-#ifdef CONFIG_FB
|
|
|
+#if IS_ENABLED(CONFIG_FB)
|
|
|
cd->fb_notifier.notifier_call = goodix_ts_fb_notifier_callback;
|
|
|
if (fb_register_client(&cd->fb_notifier))
|
|
|
ts_err("Failed to register fb notifier client:%d", ret);
|
|
@@ -2010,7 +2058,8 @@ upgrade:
|
|
|
}
|
|
|
|
|
|
ts_info("update flag: 0x%X", update_flag);
|
|
|
- ret = goodix_do_fw_update(cd->ic_configs[CONFIG_TYPE_NORMAL], update_flag);
|
|
|
+ ret = goodix_do_fw_update(cd->ic_configs[CONFIG_TYPE_NORMAL],
|
|
|
+ update_flag);
|
|
|
if (ret)
|
|
|
ts_err("failed do fw update");
|
|
|
|
|
@@ -2051,8 +2100,7 @@ err_out:
|
|
|
ts_err("stage2 init failed");
|
|
|
cd->init_stage = CORE_INIT_FAIL;
|
|
|
for (i = 0; i < GOODIX_MAX_CONFIG_GROUP; i++) {
|
|
|
- if (cd->ic_configs[i])
|
|
|
- kfree(cd->ic_configs[i]);
|
|
|
+ kfree(cd->ic_configs[i]);
|
|
|
cd->ic_configs[i] = NULL;
|
|
|
}
|
|
|
return ret;
|
|
@@ -2082,7 +2130,7 @@ static int goodix_ts_probe(struct platform_device *pdev)
|
|
|
struct goodix_bus_interface *bus_interface;
|
|
|
int ret;
|
|
|
|
|
|
- ts_info("goodix_ts_probe IN");
|
|
|
+ ts_info("IN");
|
|
|
|
|
|
bus_interface = pdev->dev.platform_data;
|
|
|
if (!bus_interface) {
|
|
@@ -2094,7 +2142,6 @@ static int goodix_ts_probe(struct platform_device *pdev)
|
|
|
core_data = devm_kzalloc(&pdev->dev,
|
|
|
sizeof(struct goodix_ts_core), GFP_KERNEL);
|
|
|
if (!core_data) {
|
|
|
- ts_err("Failed to allocate memory for core data");
|
|
|
core_module_prob_sate = CORE_MODULE_PROB_FAILED;
|
|
|
return -ENOMEM;
|
|
|
}
|
|
@@ -2180,7 +2227,7 @@ static int goodix_ts_remove(struct platform_device *pdev)
|
|
|
gesture_module_exit();
|
|
|
inspect_module_exit();
|
|
|
hw_ops->irq_enable(core_data, false);
|
|
|
- #ifdef CONFIG_FB
|
|
|
+ #if IS_ENABLED(CONFIG_FB)
|
|
|
fb_unregister_client(&core_data->fb_notifier);
|
|
|
#endif
|
|
|
core_module_prob_sate = CORE_MODULE_REMOVED;
|
|
@@ -2199,9 +2246,9 @@ static int goodix_ts_remove(struct platform_device *pdev)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-#ifdef CONFIG_PM
|
|
|
+#if IS_ENABLED(CONFIG_PM)
|
|
|
static const struct dev_pm_ops dev_pm_ops = {
|
|
|
-#if !defined(CONFIG_FB) && !defined(CONFIG_HAS_EARLYSUSPEND)
|
|
|
+#if !IS_ENABLED(CONFIG_FB) && !IS_ENABLED(CONFIG_HAS_EARLYSUSPEND)
|
|
|
.suspend = goodix_ts_pm_suspend,
|
|
|
.resume = goodix_ts_pm_resume,
|
|
|
#endif
|
|
@@ -2218,7 +2265,7 @@ static struct platform_driver goodix_ts_driver = {
|
|
|
.driver = {
|
|
|
.name = GOODIX_CORE_DRIVER_NAME,
|
|
|
.owner = THIS_MODULE,
|
|
|
-#ifdef CONFIG_PM
|
|
|
+#if IS_ENABLED(CONFIG_PM)
|
|
|
.pm = &dev_pm_ops,
|
|
|
#endif
|
|
|
},
|