2 * Driver for Goodix Touchscreens
4 * Copyright (c) 2014 Red Hat Inc.
6 * This code is based on gt9xx.c authored by andrew@goodix.com:
8 * 2010 - 2012 Goodix Technology.
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the Free
14 * Software Foundation; version 2 of the License.
17 #include <linux/kernel.h>
18 #include <linux/i2c.h>
19 #include <linux/input.h>
20 #include <linux/input/mt.h>
21 #include <linux/module.h>
22 #include <linux/delay.h>
23 #include <linux/irq.h>
24 #include <linux/interrupt.h>
25 #include <linux/slab.h>
26 #include <linux/acpi.h>
28 #include <asm/unaligned.h>
30 struct goodix_ts_data
{
31 struct i2c_client
*client
;
32 struct input_dev
*input_dev
;
35 unsigned int max_touch_num
;
36 unsigned int int_trigger_type
;
39 #define GOODIX_MAX_HEIGHT 4096
40 #define GOODIX_MAX_WIDTH 4096
41 #define GOODIX_INT_TRIGGER 1
42 #define GOODIX_CONTACT_SIZE 8
43 #define GOODIX_MAX_CONTACTS 10
45 #define GOODIX_CONFIG_MAX_LENGTH 240
47 /* Register defines */
48 #define GOODIX_READ_COOR_ADDR 0x814E
49 #define GOODIX_REG_CONFIG_DATA 0x8047
50 #define GOODIX_REG_VERSION 0x8140
52 #define RESOLUTION_LOC 1
53 #define MAX_CONTACTS_LOC 5
56 static const unsigned long goodix_irq_flags
[] = {
58 IRQ_TYPE_EDGE_FALLING
,
64 * goodix_i2c_read - read data from a register of the i2c slave device.
66 * @client: i2c device.
67 * @reg: the register to read from.
68 * @buf: raw write data buffer.
69 * @len: length of the buffer to write
71 static int goodix_i2c_read(struct i2c_client
*client
,
72 u16 reg
, u8
*buf
, int len
)
74 struct i2c_msg msgs
[2];
75 u16 wbuf
= cpu_to_be16(reg
);
79 msgs
[0].addr
= client
->addr
;
81 msgs
[0].buf
= (u8
*) &wbuf
;
83 msgs
[1].flags
= I2C_M_RD
;
84 msgs
[1].addr
= client
->addr
;
88 ret
= i2c_transfer(client
->adapter
, msgs
, 2);
89 return ret
< 0 ? ret
: (ret
!= ARRAY_SIZE(msgs
) ? -EIO
: 0);
92 static int goodix_ts_read_input_report(struct goodix_ts_data
*ts
, u8
*data
)
97 error
= goodix_i2c_read(ts
->client
, GOODIX_READ_COOR_ADDR
, data
,
98 GOODIX_CONTACT_SIZE
+ 1);
100 dev_err(&ts
->client
->dev
, "I2C transfer error: %d\n", error
);
104 touch_num
= data
[0] & 0x0f;
105 if (touch_num
> ts
->max_touch_num
)
109 data
+= 1 + GOODIX_CONTACT_SIZE
;
110 error
= goodix_i2c_read(ts
->client
,
111 GOODIX_READ_COOR_ADDR
+
112 1 + GOODIX_CONTACT_SIZE
,
114 GOODIX_CONTACT_SIZE
* (touch_num
- 1));
122 static void goodix_ts_report_touch(struct goodix_ts_data
*ts
, u8
*coor_data
)
124 int id
= coor_data
[0] & 0x0F;
125 int input_x
= get_unaligned_le16(&coor_data
[1]);
126 int input_y
= get_unaligned_le16(&coor_data
[3]);
127 int input_w
= get_unaligned_le16(&coor_data
[5]);
129 input_mt_slot(ts
->input_dev
, id
);
130 input_mt_report_slot_state(ts
->input_dev
, MT_TOOL_FINGER
, true);
131 input_report_abs(ts
->input_dev
, ABS_MT_POSITION_X
, input_x
);
132 input_report_abs(ts
->input_dev
, ABS_MT_POSITION_Y
, input_y
);
133 input_report_abs(ts
->input_dev
, ABS_MT_TOUCH_MAJOR
, input_w
);
134 input_report_abs(ts
->input_dev
, ABS_MT_WIDTH_MAJOR
, input_w
);
138 * goodix_process_events - Process incoming events
140 * @ts: our goodix_ts_data pointer
142 * Called when the IRQ is triggered. Read the current device state, and push
143 * the input events to the user space.
145 static void goodix_process_events(struct goodix_ts_data
*ts
)
147 u8 point_data
[1 + GOODIX_CONTACT_SIZE
* ts
->max_touch_num
];
151 touch_num
= goodix_ts_read_input_report(ts
, point_data
);
155 for (i
= 0; i
< touch_num
; i
++)
156 goodix_ts_report_touch(ts
,
157 &point_data
[1 + GOODIX_CONTACT_SIZE
* i
]);
159 input_mt_sync_frame(ts
->input_dev
);
160 input_sync(ts
->input_dev
);
164 * goodix_ts_irq_handler - The IRQ handler
166 * @irq: interrupt number.
167 * @dev_id: private data pointer.
169 static irqreturn_t
goodix_ts_irq_handler(int irq
, void *dev_id
)
171 static const u8 end_cmd
[] = {
172 GOODIX_READ_COOR_ADDR
>> 8,
173 GOODIX_READ_COOR_ADDR
& 0xff,
176 struct goodix_ts_data
*ts
= dev_id
;
178 goodix_process_events(ts
);
180 if (i2c_master_send(ts
->client
, end_cmd
, sizeof(end_cmd
)) < 0)
181 dev_err(&ts
->client
->dev
, "I2C write end_cmd error\n");
187 * goodix_read_config - Read the embedded configuration of the panel
189 * @ts: our goodix_ts_data pointer
191 * Must be called during probe
193 static void goodix_read_config(struct goodix_ts_data
*ts
)
195 u8 config
[GOODIX_CONFIG_MAX_LENGTH
];
198 error
= goodix_i2c_read(ts
->client
, GOODIX_REG_CONFIG_DATA
,
200 GOODIX_CONFIG_MAX_LENGTH
);
202 dev_warn(&ts
->client
->dev
,
203 "Error reading config (%d), using defaults\n",
205 ts
->abs_x_max
= GOODIX_MAX_WIDTH
;
206 ts
->abs_y_max
= GOODIX_MAX_HEIGHT
;
207 ts
->int_trigger_type
= GOODIX_INT_TRIGGER
;
208 ts
->max_touch_num
= GOODIX_MAX_CONTACTS
;
212 ts
->abs_x_max
= get_unaligned_le16(&config
[RESOLUTION_LOC
]);
213 ts
->abs_y_max
= get_unaligned_le16(&config
[RESOLUTION_LOC
+ 2]);
214 ts
->int_trigger_type
= config
[TRIGGER_LOC
] & 0x03;
215 ts
->max_touch_num
= config
[MAX_CONTACTS_LOC
] & 0x0f;
216 if (!ts
->abs_x_max
|| !ts
->abs_y_max
|| !ts
->max_touch_num
) {
217 dev_err(&ts
->client
->dev
,
218 "Invalid config, using defaults\n");
219 ts
->abs_x_max
= GOODIX_MAX_WIDTH
;
220 ts
->abs_y_max
= GOODIX_MAX_HEIGHT
;
221 ts
->max_touch_num
= GOODIX_MAX_CONTACTS
;
226 * goodix_read_version - Read goodix touchscreen version
228 * @client: the i2c client
229 * @version: output buffer containing the version on success
231 static int goodix_read_version(struct i2c_client
*client
, u16
*version
)
236 error
= goodix_i2c_read(client
, GOODIX_REG_VERSION
, buf
, sizeof(buf
));
238 dev_err(&client
->dev
, "read version failed: %d\n", error
);
243 *version
= get_unaligned_le16(&buf
[4]);
245 dev_info(&client
->dev
, "IC VERSION: %6ph\n", buf
);
251 * goodix_i2c_test - I2C test function to check if the device answers.
253 * @client: the i2c client
255 static int goodix_i2c_test(struct i2c_client
*client
)
261 while (retry
++ < 2) {
262 error
= goodix_i2c_read(client
, GOODIX_REG_CONFIG_DATA
,
267 dev_err(&client
->dev
, "i2c test failed attempt %d: %d\n",
276 * goodix_request_input_dev - Allocate, populate and register the input device
278 * @ts: our goodix_ts_data pointer
280 * Must be called during probe
282 static int goodix_request_input_dev(struct goodix_ts_data
*ts
)
286 ts
->input_dev
= devm_input_allocate_device(&ts
->client
->dev
);
287 if (!ts
->input_dev
) {
288 dev_err(&ts
->client
->dev
, "Failed to allocate input device.");
292 ts
->input_dev
->evbit
[0] = BIT_MASK(EV_SYN
) |
296 input_set_abs_params(ts
->input_dev
, ABS_MT_POSITION_X
, 0,
297 ts
->abs_x_max
, 0, 0);
298 input_set_abs_params(ts
->input_dev
, ABS_MT_POSITION_Y
, 0,
299 ts
->abs_y_max
, 0, 0);
300 input_set_abs_params(ts
->input_dev
, ABS_MT_WIDTH_MAJOR
, 0, 255, 0, 0);
301 input_set_abs_params(ts
->input_dev
, ABS_MT_TOUCH_MAJOR
, 0, 255, 0, 0);
303 input_mt_init_slots(ts
->input_dev
, ts
->max_touch_num
,
304 INPUT_MT_DIRECT
| INPUT_MT_DROP_UNUSED
);
306 ts
->input_dev
->name
= "Goodix Capacitive TouchScreen";
307 ts
->input_dev
->phys
= "input/ts";
308 ts
->input_dev
->id
.bustype
= BUS_I2C
;
309 ts
->input_dev
->id
.vendor
= 0x0416;
310 ts
->input_dev
->id
.product
= 0x1001;
311 ts
->input_dev
->id
.version
= 10427;
313 error
= input_register_device(ts
->input_dev
);
315 dev_err(&ts
->client
->dev
,
316 "Failed to register input device: %d", error
);
323 static int goodix_ts_probe(struct i2c_client
*client
,
324 const struct i2c_device_id
*id
)
326 struct goodix_ts_data
*ts
;
327 unsigned long irq_flags
;
331 dev_dbg(&client
->dev
, "I2C Address: 0x%02x\n", client
->addr
);
333 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
334 dev_err(&client
->dev
, "I2C check functionality failed.\n");
338 ts
= devm_kzalloc(&client
->dev
, sizeof(*ts
), GFP_KERNEL
);
343 i2c_set_clientdata(client
, ts
);
345 error
= goodix_i2c_test(client
);
347 dev_err(&client
->dev
, "I2C communication failure: %d\n", error
);
351 error
= goodix_read_version(client
, &version_info
);
353 dev_err(&client
->dev
, "Read version failed.\n");
357 goodix_read_config(ts
);
359 error
= goodix_request_input_dev(ts
);
363 irq_flags
= goodix_irq_flags
[ts
->int_trigger_type
] | IRQF_ONESHOT
;
364 error
= devm_request_threaded_irq(&ts
->client
->dev
, client
->irq
,
365 NULL
, goodix_ts_irq_handler
,
366 irq_flags
, client
->name
, ts
);
368 dev_err(&client
->dev
, "request IRQ failed: %d\n", error
);
375 static const struct i2c_device_id goodix_ts_id
[] = {
376 { "GDIX1001:00", 0 },
381 static const struct acpi_device_id goodix_acpi_match
[] = {
385 MODULE_DEVICE_TABLE(acpi
, goodix_acpi_match
);
389 static const struct of_device_id goodix_of_match
[] = {
390 { .compatible
= "goodix,gt911" },
391 { .compatible
= "goodix,gt9110" },
392 { .compatible
= "goodix,gt912" },
393 { .compatible
= "goodix,gt927" },
394 { .compatible
= "goodix,gt9271" },
395 { .compatible
= "goodix,gt928" },
396 { .compatible
= "goodix,gt967" },
399 MODULE_DEVICE_TABLE(of
, goodix_of_match
);
402 static struct i2c_driver goodix_ts_driver
= {
403 .probe
= goodix_ts_probe
,
404 .id_table
= goodix_ts_id
,
407 .owner
= THIS_MODULE
,
408 .acpi_match_table
= ACPI_PTR(goodix_acpi_match
),
409 .of_match_table
= of_match_ptr(goodix_of_match
),
412 module_i2c_driver(goodix_ts_driver
);
414 MODULE_AUTHOR("Benjamin Tissoires <benjamin.tissoires@gmail.com>");
415 MODULE_AUTHOR("Bastien Nocera <hadess@hadess.net>");
416 MODULE_DESCRIPTION("Goodix touchscreen driver");
417 MODULE_LICENSE("GPL v2");