Skip to content

Commit 056115d

Browse files
jinglewudtor
authored andcommitted
Input: elan_i2c - add new trackpoint report type 0x5F
The 0x5F is a new trackpoint report type used by some modules. Signed-off-by: Jingle Wu <jingle.wu@emc.com.tw> Link: https://lore.kernel.org/r/20201211071511.32349-1-jingle.wu@emc.com.tw Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
1 parent c18b443 commit 056115d

File tree

3 files changed

+23
-14
lines changed

3 files changed

+23
-14
lines changed

drivers/input/mouse/elan_i2c.h

+16
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,22 @@
2828

2929
#define ETP_FEATURE_REPORT_MK BIT(0)
3030

31+
#define ETP_REPORT_ID 0x5D
32+
#define ETP_TP_REPORT_ID 0x5E
33+
#define ETP_TP_REPORT_ID2 0x5F
34+
#define ETP_REPORT_ID2 0x60 /* High precision report */
35+
36+
#define ETP_REPORT_ID_OFFSET 2
37+
#define ETP_TOUCH_INFO_OFFSET 3
38+
#define ETP_FINGER_DATA_OFFSET 4
39+
#define ETP_HOVER_INFO_OFFSET 30
40+
#define ETP_MK_DATA_OFFSET 33 /* For high precision reports */
41+
42+
#define ETP_MAX_REPORT_LEN 39
43+
44+
#define ETP_MAX_FINGERS 5
45+
#define ETP_FINGER_DATA_LEN 5
46+
3147
/* IAP Firmware handling */
3248
#define ETP_PRODUCT_ID_FORMAT_STRING "%d.0"
3349
#define ETP_FW_NAME "elan_i2c_" ETP_PRODUCT_ID_FORMAT_STRING ".bin"

drivers/input/mouse/elan_i2c_core.c

+1-12
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,6 @@
4646
#define ETP_FINGER_WIDTH 15
4747
#define ETP_RETRY_COUNT 3
4848

49-
#define ETP_MAX_FINGERS 5
50-
#define ETP_FINGER_DATA_LEN 5
51-
#define ETP_REPORT_ID 0x5D
52-
#define ETP_REPORT_ID2 0x60 /* High precision report */
53-
#define ETP_TP_REPORT_ID 0x5E
54-
#define ETP_REPORT_ID_OFFSET 2
55-
#define ETP_TOUCH_INFO_OFFSET 3
56-
#define ETP_FINGER_DATA_OFFSET 4
57-
#define ETP_HOVER_INFO_OFFSET 30
58-
#define ETP_MK_DATA_OFFSET 33 /* For high precision reports */
59-
#define ETP_MAX_REPORT_LEN 39
60-
6149
/* The main device structure */
6250
struct elan_tp_data {
6351
struct i2c_client *client;
@@ -1074,6 +1062,7 @@ static irqreturn_t elan_isr(int irq, void *dev_id)
10741062
elan_report_absolute(data, report, true);
10751063
break;
10761064
case ETP_TP_REPORT_ID:
1065+
case ETP_TP_REPORT_ID2:
10771066
elan_report_trackpoint(data, report);
10781067
break;
10791068
default:

drivers/input/mouse/elan_i2c_smbus.c

+6-2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#define ETP_SMBUS_CALIBRATE_QUERY 0xC5
4646

4747
#define ETP_SMBUS_REPORT_LEN 32
48+
#define ETP_SMBUS_REPORT_LEN2 7
4849
#define ETP_SMBUS_REPORT_OFFSET 2
4950
#define ETP_SMBUS_HELLOPACKET_LEN 5
5051
#define ETP_SMBUS_IAP_PASSWORD 0x1234
@@ -497,10 +498,13 @@ static int elan_smbus_get_report(struct i2c_client *client,
497498
return len;
498499
}
499500

500-
if (len != ETP_SMBUS_REPORT_LEN) {
501+
if (report[ETP_REPORT_ID_OFFSET] == ETP_TP_REPORT_ID2)
502+
report_len = ETP_SMBUS_REPORT_LEN2;
503+
504+
if (len != report_len) {
501505
dev_err(&client->dev,
502506
"wrong report length (%d vs %d expected)\n",
503-
len, ETP_SMBUS_REPORT_LEN);
507+
len, report_len);
504508
return -EIO;
505509
}
506510

0 commit comments

Comments
 (0)