1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Elantech Touchpad driver (v6)
5 * Copyright (C) 2007-2009 Arjan Opmeer <arjan@opmeer.net>
7 * Trademarks are the property of their respective owners.
14 * Command values for Synaptics style queries
16 #define ETP_FW_ID_QUERY 0x00
17 #define ETP_FW_VERSION_QUERY 0x01
18 #define ETP_CAPABILITIES_QUERY 0x02
19 #define ETP_SAMPLE_QUERY 0x03
20 #define ETP_RESOLUTION_QUERY 0x04
23 * Command values for register reading or writing
25 #define ETP_REGISTER_READ 0x10
26 #define ETP_REGISTER_WRITE 0x11
27 #define ETP_REGISTER_READWRITE 0x00
30 * Hardware version 2 custom PS/2 command value
32 #define ETP_PS2_CUSTOM_COMMAND 0xf8
35 * Times to retry a ps2_command and millisecond delay between tries
37 #define ETP_PS2_COMMAND_TRIES 3
38 #define ETP_PS2_COMMAND_DELAY 500
41 * Times to try to read back a register and millisecond delay between tries
43 #define ETP_READ_BACK_TRIES 5
44 #define ETP_READ_BACK_DELAY 2000
47 * Register bitmasks for hardware version 1
49 #define ETP_R10_ABSOLUTE_MODE 0x04
50 #define ETP_R11_4_BYTE_MODE 0x02
55 #define ETP_CAP_HAS_ROCKER 0x04
58 * One hard to find application note states that X axis range is 0 to 576
59 * and Y axis range is 0 to 384 for harware version 1.
60 * Edge fuzz might be necessary because of bezel around the touchpad
62 #define ETP_EDGE_FUZZ_V1 32
64 #define ETP_XMIN_V1 ( 0 + ETP_EDGE_FUZZ_V1)
65 #define ETP_XMAX_V1 (576 - ETP_EDGE_FUZZ_V1)
66 #define ETP_YMIN_V1 ( 0 + ETP_EDGE_FUZZ_V1)
67 #define ETP_YMAX_V1 (384 - ETP_EDGE_FUZZ_V1)
70 * The resolution for older v2 hardware doubled.
71 * (newer v2's firmware provides command so we can query)
74 #define ETP_XMAX_V2 1152
76 #define ETP_YMAX_V2 768
79 #define ETP_PMAX_V2 255
81 #define ETP_WMAX_V2 15
84 * v3 hardware has 2 kinds of packet types,
87 #define PACKET_UNKNOWN 0x01
88 #define PACKET_DEBOUNCE 0x02
89 #define PACKET_V3_HEAD 0x03
90 #define PACKET_V3_TAIL 0x04
91 #define PACKET_V4_HEAD 0x05
92 #define PACKET_V4_MOTION 0x06
93 #define PACKET_V4_STATUS 0x07
94 #define PACKET_TRACKPOINT 0x08
97 * track up to 5 fingers for v4 hardware
99 #define ETP_MAX_FINGERS 5
102 * weight value for v4 hardware
104 #define ETP_WEIGHT_VALUE 5
107 * Bus information on 3rd byte of query ETP_RESOLUTION_QUERY(0x04)
109 #define ETP_BUS_PS2_ONLY 0
110 #define ETP_BUS_SMB_ALERT_ONLY 1
111 #define ETP_BUS_SMB_HST_NTFY_ONLY 2
112 #define ETP_BUS_PS2_SMB_ALERT 3
113 #define ETP_BUS_PS2_SMB_HST_NTFY 4
116 * New ICs are either using SMBus Host Notify or just plain PS2.
118 * ETP_FW_VERSION_QUERY is:
120 * - bit 0..3: IC BODY
122 * - bit 4: HiddenButton
123 * - bit 5: PS2_SMBUS_NOTIFY
124 * - bit 6: PS2CRCCheck
126 #define ETP_NEW_IC_SMBUS_HOST_NOTIFY(fw_version) \
127 ((((fw_version) & 0x0f2000) == 0x0f2000) && \
128 ((fw_version) & 0x0000ff) > 0)
131 * The base position for one finger, v4 hardware
138 struct elantech_device_info
{
139 unsigned char capabilities
[3];
140 unsigned char samples
[3];
142 unsigned char hw_version
;
143 unsigned int fw_version
;
150 unsigned int x_traces
;
151 unsigned int y_traces
;
156 bool reports_pressure
;
158 bool set_hw_resolution
;
160 bool has_middle_button
;
161 int (*send_cmd
)(struct psmouse
*psmouse
, unsigned char c
,
162 unsigned char *param
);
165 struct elantech_data
{
166 struct input_dev
*tp_dev
; /* Relative device for trackpoint */
168 unsigned char reg_07
;
169 unsigned char reg_10
;
170 unsigned char reg_11
;
171 unsigned char reg_20
;
172 unsigned char reg_21
;
173 unsigned char reg_22
;
174 unsigned char reg_23
;
175 unsigned char reg_24
;
176 unsigned char reg_25
;
177 unsigned char reg_26
;
178 unsigned int single_finger_reports
;
181 struct finger_pos mt
[ETP_MAX_FINGERS
];
182 unsigned char parity
[256];
183 struct elantech_device_info info
;
184 void (*original_set_rate
)(struct psmouse
*psmouse
, unsigned int rate
);
187 int elantech_detect(struct psmouse
*psmouse
, bool set_properties
);
188 int elantech_init_ps2(struct psmouse
*psmouse
);
190 #ifdef CONFIG_MOUSE_PS2_ELANTECH
191 int elantech_init(struct psmouse
*psmouse
);
193 static inline int elantech_init(struct psmouse
*psmouse
)
197 #endif /* CONFIG_MOUSE_PS2_ELANTECH */
199 int elantech_init_smbus(struct psmouse
*psmouse
);