OSDN Git Service

input: goodix: update from hadess's repo
authorChih-Wei Huang <cwhuang@linux.org.tw>
Sat, 6 Jun 2015 01:45:04 +0000 (09:45 +0800)
committerChih-Wei Huang <cwhuang@linux.org.tw>
Sat, 6 Jun 2015 01:45:04 +0000 (09:45 +0800)
Copied from the latest commit d9a4611 of
https://github.com/hadess/gt9xx.

drivers/input/touchscreen/goodix.c

index ca19668..95e7ea9 100644 (file)
@@ -23,6 +23,8 @@
 #include <linux/irq.h>
 #include <linux/interrupt.h>
 #include <linux/slab.h>
+#include <linux/acpi.h>
+#include <linux/of.h>
 #include <asm/unaligned.h>
 
 struct goodix_ts_data {
@@ -48,6 +50,7 @@ struct goodix_ts_data {
 #define GOODIX_REG_VERSION             0x8140
 
 #define RESOLUTION_LOC         1
+#define MAX_CONTACTS_LOC       5
 #define TRIGGER_LOC            6
 
 static const unsigned long goodix_irq_flags[] = {
@@ -98,8 +101,11 @@ static int goodix_ts_read_input_report(struct goodix_ts_data *ts, u8 *data)
                return error;
        }
 
+       if (!(data[0] & 0x80))
+               return -EAGAIN;
+
        touch_num = data[0] & 0x0f;
-       if (touch_num > GOODIX_MAX_CONTACTS)
+       if (touch_num > ts->max_touch_num)
                return -EPROTO;
 
        if (touch_num > 1) {
@@ -141,7 +147,7 @@ static void goodix_ts_report_touch(struct goodix_ts_data *ts, u8 *coor_data)
  */
 static void goodix_process_events(struct goodix_ts_data *ts)
 {
-       u8  point_data[1 + GOODIX_CONTACT_SIZE * GOODIX_MAX_CONTACTS];
+       u8  point_data[1 + GOODIX_CONTACT_SIZE * ts->max_touch_num];
        int touch_num;
        int i;
 
@@ -202,21 +208,23 @@ static void goodix_read_config(struct goodix_ts_data *ts)
                ts->abs_x_max = GOODIX_MAX_WIDTH;
                ts->abs_y_max = GOODIX_MAX_HEIGHT;
                ts->int_trigger_type = GOODIX_INT_TRIGGER;
+               ts->max_touch_num = GOODIX_MAX_CONTACTS;
                return;
        }
 
        ts->abs_x_max = get_unaligned_le16(&config[RESOLUTION_LOC]);
        ts->abs_y_max = get_unaligned_le16(&config[RESOLUTION_LOC + 2]);
        ts->int_trigger_type = (config[TRIGGER_LOC]) & 0x03;
-       if (!ts->abs_x_max || !ts->abs_y_max) {
+       ts->max_touch_num = (config[MAX_CONTACTS_LOC]) & 0x0f;
+       if (!ts->abs_x_max || !ts->abs_y_max || !ts->max_touch_num) {
                dev_err(&ts->client->dev,
                        "Invalid config, using defaults\n");
                ts->abs_x_max = GOODIX_MAX_WIDTH;
                ts->abs_y_max = GOODIX_MAX_HEIGHT;
+               ts->max_touch_num = GOODIX_MAX_CONTACTS;
        }
 }
 
-
 /**
  * goodix_read_version - Read goodix touchscreen version
  *
@@ -295,7 +303,7 @@ static int goodix_request_input_dev(struct goodix_ts_data *ts)
        input_set_abs_params(ts->input_dev, ABS_MT_WIDTH_MAJOR, 0, 255, 0, 0);
        input_set_abs_params(ts->input_dev, ABS_MT_TOUCH_MAJOR, 0, 255, 0, 0);
 
-       input_mt_init_slots(ts->input_dev, GOODIX_MAX_CONTACTS,
+       input_mt_init_slots(ts->input_dev, ts->max_touch_num,
                            INPUT_MT_DIRECT | INPUT_MT_DROP_UNUSED);
 
        ts->input_dev->name = "Goodix Capacitive TouchScreen";
@@ -360,7 +368,7 @@ static int goodix_ts_probe(struct i2c_client *client,
                                          NULL, goodix_ts_irq_handler,
                                          irq_flags, client->name, ts);
        if (error) {
-               dev_err(&client->dev, "request IRQ failed: %d\n", error);
+               dev_err(&client->dev, "request IRQ failed: %d.\n", error);
                return error;
        }
 
@@ -372,11 +380,27 @@ static const struct i2c_device_id goodix_ts_id[] = {
        { }
 };
 
+#ifdef CONFIG_ACPI
 static const struct acpi_device_id goodix_acpi_match[] = {
        { "GDIX1001", 0 },
        { }
 };
 MODULE_DEVICE_TABLE(acpi, goodix_acpi_match);
+#endif
+
+#ifdef CONFIG_OF
+static const struct of_device_id goodix_of_match[] = {
+       { .compatible = "goodix,gt911" },
+       { .compatible = "goodix,gt9110" },
+       { .compatible = "goodix,gt912" },
+       { .compatible = "goodix,gt927" },
+       { .compatible = "goodix,gt9271" },
+       { .compatible = "goodix,gt928" },
+       { .compatible = "goodix,gt967" },
+       { }
+};
+MODULE_DEVICE_TABLE(of, goodix_of_match);
+#endif
 
 static struct i2c_driver goodix_ts_driver = {
        .probe = goodix_ts_probe,
@@ -384,7 +408,8 @@ static struct i2c_driver goodix_ts_driver = {
        .driver = {
                .name = "Goodix-TS",
                .owner = THIS_MODULE,
-               .acpi_match_table = goodix_acpi_match,
+               .acpi_match_table = ACPI_PTR(goodix_acpi_match),
+               .of_match_table = of_match_ptr(goodix_of_match),
        },
 };
 module_i2c_driver(goodix_ts_driver);