blob: 08533d1b1b16fc2c924fca4cc2759e18b67a2fd6 [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Synaptics TouchPad PS/2 mouse driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 */
5
6#ifndef _SYNAPTICS_H
7#define _SYNAPTICS_H
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009/* synaptics queries */
10#define SYN_QUE_IDENTIFY 0x00
11#define SYN_QUE_MODES 0x01
12#define SYN_QUE_CAPABILITIES 0x02
13#define SYN_QUE_MODEL 0x03
14#define SYN_QUE_SERIAL_NUMBER_PREFIX 0x06
15#define SYN_QUE_SERIAL_NUMBER_SUFFIX 0x07
16#define SYN_QUE_RESOLUTION 0x08
17#define SYN_QUE_EXT_CAPAB 0x09
Daniel Kurtzc6bd9d42012-07-07 18:08:51 -070018#define SYN_QUE_FIRMWARE_ID 0x0a
Takashi Iwai5f57d672010-04-19 10:37:21 -070019#define SYN_QUE_EXT_CAPAB_0C 0x0c
Dmitry Torokhova66413f2011-07-09 12:32:56 -070020#define SYN_QUE_EXT_MAX_COORDS 0x0d
21#define SYN_QUE_EXT_MIN_COORDS 0x0f
Benjamin Tissoires06aa3742015-03-08 22:34:03 -070022#define SYN_QUE_MEXT_CAPAB_10 0x10
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/* synatics modes */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -070025#define SYN_BIT_ABSOLUTE_MODE BIT(7)
26#define SYN_BIT_HIGH_RATE BIT(6)
27#define SYN_BIT_SLEEP_MODE BIT(3)
28#define SYN_BIT_DISABLE_GESTURE BIT(2)
29#define SYN_BIT_FOUR_BYTE_CLIENT BIT(1)
30#define SYN_BIT_W_MODE BIT(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/* synaptics model ID bits */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -070033#define SYN_MODEL_ROT180(m) ((m) & BIT(23))
34#define SYN_MODEL_PORTRAIT(m) ((m) & BIT(22))
35#define SYN_MODEL_SENSOR(m) (((m) & GENMASK(21, 16)) >> 16)
36#define SYN_MODEL_HARDWARE(m) (((m) & GENMASK(15, 9)) >> 9)
37#define SYN_MODEL_NEWABS(m) ((m) & BIT(7))
38#define SYN_MODEL_PEN(m) ((m) & BIT(6))
39#define SYN_MODEL_SIMPLIC(m) ((m) & BIT(5))
40#define SYN_MODEL_GEOMETRY(m) ((m) & GENMASK(3, 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/* synaptics capability bits */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -070043#define SYN_CAP_EXTENDED(c) ((c) & BIT(23))
44#define SYN_CAP_MIDDLE_BUTTON(c) ((c) & BIT(18))
45#define SYN_CAP_PASS_THROUGH(c) ((c) & BIT(7))
46#define SYN_CAP_SLEEP(c) ((c) & BIT(4))
47#define SYN_CAP_FOUR_BUTTON(c) ((c) & BIT(3))
48#define SYN_CAP_MULTIFINGER(c) ((c) & BIT(1))
49#define SYN_CAP_PALMDETECT(c) ((c) & BIT(0))
50#define SYN_CAP_SUBMODEL_ID(c) (((c) & GENMASK(15, 8)) >> 8)
51#define SYN_EXT_CAP_REQUESTS(c) (((c) & GENMASK(22, 20)) >> 20)
Dmitry Torokhov2c6ecbb2017-03-23 17:40:57 -070052#define SYN_CAP_MB_MASK GENMASK(15, 12)
53#define SYN_CAP_MULTI_BUTTON_NO(ec) (((ec) & SYN_CAP_MB_MASK) >> 12)
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -070054#define SYN_CAP_PRODUCT_ID(ec) (((ec) & GENMASK(23, 16)) >> 16)
55#define SYN_MEXT_CAP_BIT(m) ((m) & BIT(1))
Dmitry Torokhov9bb794a2011-02-22 20:15:07 -080056
57/*
58 * The following describes response for the 0x0c query.
59 *
60 * byte mask name meaning
61 * ---- ---- ------- ------------
62 * 1 0x01 adjustable threshold capacitive button sensitivity
63 * can be adjusted
64 * 1 0x02 report max query 0x0d gives max coord reported
65 * 1 0x04 clearpad sensor is ClearPad product
66 * 1 0x08 advanced gesture not particularly meaningful
67 * 1 0x10 clickpad bit 0 1-button ClickPad
68 * 1 0x60 multifinger mode identifies firmware finger counting
69 * (not reporting!) algorithm.
70 * Not particularly meaningful
Daniel Kurtza9f0b792011-07-06 22:39:14 -070071 * 1 0x80 covered pad W clipped to 14, 15 == pad mostly covered
72 * 2 0x01 clickpad bit 1 2-button ClickPad
73 * 2 0x02 deluxe LED controls touchpad support LED commands
Dmitry Torokhov9bb794a2011-02-22 20:15:07 -080074 * ala multimedia control bar
75 * 2 0x04 reduced filtering firmware does less filtering on
76 * position data, driver should watch
77 * for noise.
Daniel Kurtz3cdfee92011-08-23 23:02:25 -070078 * 2 0x08 image sensor image sensor tracks 5 fingers, but only
79 * reports 2.
Dmitry Torokhovaa97240992014-09-02 09:49:18 -070080 * 2 0x01 uniform clickpad whole clickpad moves instead of being
81 * hinged at the top.
Dmitry Torokhova66413f2011-07-09 12:32:56 -070082 * 2 0x20 report min query 0x0f gives min coord reported
Dmitry Torokhov9bb794a2011-02-22 20:15:07 -080083 */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -070084#define SYN_CAP_CLICKPAD(ex0c) ((ex0c) & BIT(20)) /* 1-button ClickPad */
85#define SYN_CAP_CLICKPAD2BTN(ex0c) ((ex0c) & BIT(8)) /* 2-button ClickPad */
86#define SYN_CAP_MAX_DIMENSIONS(ex0c) ((ex0c) & BIT(17))
87#define SYN_CAP_MIN_DIMENSIONS(ex0c) ((ex0c) & BIT(13))
88#define SYN_CAP_ADV_GESTURE(ex0c) ((ex0c) & BIT(19))
89#define SYN_CAP_REDUCED_FILTERING(ex0c) ((ex0c) & BIT(10))
90#define SYN_CAP_IMAGE_SENSOR(ex0c) ((ex0c) & BIT(11))
91#define SYN_CAP_INTERTOUCH(ex0c) ((ex0c) & BIT(14))
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Benjamin Tissoires06aa3742015-03-08 22:34:03 -070093/*
94 * The following descibes response for the 0x10 query.
95 *
96 * byte mask name meaning
97 * ---- ---- ------- ------------
98 * 1 0x01 ext buttons are stick buttons exported in the extended
99 * capability are actually meant to be used
100 * by the tracktick (pass-through).
101 * 1 0x02 SecurePad the touchpad is a SecurePad, so it
102 * contains a built-in fingerprint reader.
103 * 1 0xe0 more ext count how many more extented queries are
104 * available after this one.
105 * 2 0xff SecurePad width the width of the SecurePad fingerprint
106 * reader.
107 * 3 0xff SecurePad height the height of the SecurePad fingerprint
108 * reader.
109 */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -0700110#define SYN_CAP_EXT_BUTTONS_STICK(ex10) ((ex10) & BIT(16))
111#define SYN_CAP_SECUREPAD(ex10) ((ex10) & BIT(17))
Benjamin Tissoires06aa3742015-03-08 22:34:03 -0700112
Dmitry Torokhov996b9ee2017-03-23 10:02:50 -0700113#define SYN_EXT_BUTTON_STICK_L(eb) (((eb) & BIT(0)) >> 0)
114#define SYN_EXT_BUTTON_STICK_M(eb) (((eb) & BIT(1)) >> 1)
115#define SYN_EXT_BUTTON_STICK_R(eb) (((eb) & BIT(2)) >> 2)
Benjamin Tissoirescdd9dc12015-03-08 22:35:41 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/* synaptics modes query bits */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -0700118#define SYN_MODE_ABSOLUTE(m) ((m) & BIT(7))
119#define SYN_MODE_RATE(m) ((m) & BIT(6))
120#define SYN_MODE_BAUD_SLEEP(m) ((m) & BIT(3))
121#define SYN_MODE_DISABLE_GESTURE(m) ((m) & BIT(2))
122#define SYN_MODE_PACKSIZE(m) ((m) & BIT(1))
123#define SYN_MODE_WMODE(m) ((m) & BIT(0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125/* synaptics identify query bits */
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -0700126#define SYN_ID_MODEL(i) (((i) & GENMASK(7, 4)) >> 4)
127#define SYN_ID_MAJOR(i) (((i) & GENMASK(3, 0)) >> 0)
128#define SYN_ID_MINOR(i) (((i) & GENMASK(23, 16)) >> 16)
Dmitry Torokhov3619b8f2010-07-21 00:01:19 -0700129#define SYN_ID_FULL(i) ((SYN_ID_MAJOR(i) << 8) | SYN_ID_MINOR(i))
Dmitry Torokhov991d29fe02017-03-23 14:56:06 -0700130#define SYN_ID_IS_SYNAPTICS(i) (((i) & GENMASK(15, 8)) == 0x004700U)
Daniel Drake7968a5d2011-11-08 00:00:35 -0800131#define SYN_ID_DISGEST_SUPPORTED(i) (SYN_ID_MAJOR(i) >= 4)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133/* synaptics special commands */
134#define SYN_PS_SET_MODE2 0x14
135#define SYN_PS_CLIENT_CMD 0x28
136
Daniel Kurtza9f0b792011-07-06 22:39:14 -0700137/* amount to fuzz position data when touchpad reports reduced filtering */
138#define SYN_REDUCED_FILTER_FUZZ 8
139
Dmitry Torokhovf6c44422017-03-24 11:20:38 -0700140/* synaptics packet types */
141enum synaptics_pkt_type {
142 SYN_NEWABS,
143 SYN_NEWABS_STRICT,
144 SYN_NEWABS_RELAXED,
145 SYN_OLDABS,
146};
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * A structure to describe the state of the touchpad hardware (buttons and pad)
150 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151struct synaptics_hw_state {
152 int x;
153 int y;
154 int z;
155 int w;
156 unsigned int left:1;
157 unsigned int right:1;
158 unsigned int middle:1;
159 unsigned int up:1;
160 unsigned int down:1;
Dmitry Torokhovf6c44422017-03-24 11:20:38 -0700161 u8 ext_buttons;
162 s8 scroll;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
Dmitry Torokhov6c536942017-03-05 15:51:33 -0800165/* Data read from the touchpad */
166struct synaptics_device_info {
167 u32 model_id; /* Model-ID */
168 u32 firmware_id; /* Firmware-ID */
169 u32 board_id; /* Board-ID */
170 u32 capabilities; /* Capabilities */
171 u32 ext_cap; /* Extended Capabilities */
172 u32 ext_cap_0c; /* Ext Caps from 0x0c query */
173 u32 ext_cap_10; /* Ext Caps from 0x10 query */
174 u32 identity; /* Identification */
175 u32 x_res, y_res; /* X/Y resolution in units/mm */
176 u32 x_max, y_max; /* Max coordinates (from FW) */
177 u32 x_min, y_min; /* Min coordinates (from FW) */
178};
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180struct synaptics_data {
Dmitry Torokhov6c536942017-03-05 15:51:33 -0800181 struct synaptics_device_info info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Dmitry Torokhovf6c44422017-03-24 11:20:38 -0700183 enum synaptics_pkt_type pkt_type; /* packet type - old, new, etc */
184 u8 mode; /* current mode byte */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 int scroll;
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700186
Daniel Drake7968a5d2011-11-08 00:00:35 -0800187 bool absolute_mode; /* run in Absolute mode */
188 bool disable_gesture; /* disable gestures */
189
Dmitry Torokhova8b3c0f2010-10-04 21:46:10 -0700190 struct serio *pt_port; /* Pass-through serio port */
Henrik Rydbergfec6e522010-12-21 18:11:25 +0100191
Daniel Kurtz7afdb842011-08-23 23:00:33 -0700192 /*
193 * Last received Advanced Gesture Mode (AGM) packet. An AGM packet
194 * contains position data for a second contact, at half resolution.
195 */
196 struct synaptics_hw_state agm;
Benjamin Tissoirese9e85202014-12-29 14:15:24 -0800197 unsigned int agm_count; /* finger count reported by agm */
Dmitry Torokhov5715fc72014-08-30 13:51:06 -0700198
199 /* ForcePad handling */
200 unsigned long press_start;
201 bool press;
202 bool report_press;
Dmitry Torokhovde4e3742014-12-29 14:43:44 -0800203 bool is_forcepad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204};
205
Dmitry Torokhov7705d542009-12-03 23:21:14 -0800206void synaptics_module_init(void);
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700207int synaptics_detect(struct psmouse *psmouse, bool set_properties);
Benjamin Tissoirese839ffa2017-03-02 14:13:53 -0800208int synaptics_init_absolute(struct psmouse *psmouse);
Daniel Drake7968a5d2011-11-08 00:00:35 -0800209int synaptics_init_relative(struct psmouse *psmouse);
Benjamin Tissoirese839ffa2017-03-02 14:13:53 -0800210int synaptics_init_smbus(struct psmouse *psmouse);
211int synaptics_init(struct psmouse *psmouse);
Andres Salomon55e3d922007-03-10 01:39:54 -0500212void synaptics_reset(struct psmouse *psmouse);
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214#endif /* _SYNAPTICS_H */