blob: ed2d6879fa529aebc46d946e1b9c7341eee12b03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALPS touchpad PS/2 mouse driver
3 *
4 * Copyright (c) 2003 Peter Osterlund <petero2@telia.com>
5 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 */
11
12#ifndef _ALPS_H
13#define _ALPS_H
14
Hans de Goede02d04252014-07-25 22:43:35 -070015#include <linux/input/mt.h>
16
Dmitry Torokhovd7c13d32015-01-13 20:53:22 -080017#define ALPS_PROTO_V1 0x100
18#define ALPS_PROTO_V2 0x200
19#define ALPS_PROTO_V3 0x300
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -080020#define ALPS_PROTO_V3_RUSHMORE 0x310
Dmitry Torokhovd7c13d32015-01-13 20:53:22 -080021#define ALPS_PROTO_V4 0x400
22#define ALPS_PROTO_V5 0x500
23#define ALPS_PROTO_V6 0x600
24#define ALPS_PROTO_V7 0x700 /* t3btl t4s */
Masaki Ota3db5b9f2015-03-27 20:57:52 -070025#define ALPS_PROTO_V8 0x800 /* SS4btl SS4s */
Pali Rohárc9815232017-03-07 09:42:46 -080026#define ALPS_PROTO_V9 0x900 /* ss3btl */
Seth Forsheefa629ef2011-11-07 19:53:24 -080027
Masaki Ota3db5b9f2015-03-27 20:57:52 -070028#define MAX_TOUCHES 4
Hans de Goede02d04252014-07-25 22:43:35 -070029
Yunkang Tangee65d4b2013-12-26 14:54:19 -080030#define DOLPHIN_COUNT_PER_ELECTRODE 64
31#define DOLPHIN_PROFILE_XOFFSET 8 /* x-electrode offset */
32#define DOLPHIN_PROFILE_YOFFSET 1 /* y-electrode offset */
33
Yunkang Tang38088432014-07-26 13:51:41 -070034/*
Masaki Ota3db5b9f2015-03-27 20:57:52 -070035 * enum SS4_PACKET_ID - defines the packet type for V8
36 * SS4_PACKET_ID_IDLE: There's no finger and no button activity.
37 * SS4_PACKET_ID_ONE: There's one finger on touchpad
38 * or there's button activities.
39 * SS4_PACKET_ID_TWO: There's two or more fingers on touchpad
40 * SS4_PACKET_ID_MULTI: There's three or more fingers on touchpad
Ben Gamari4777ac22016-10-04 11:33:25 -070041 * SS4_PACKET_ID_STICK: A stick pointer packet
Masaki Ota3db5b9f2015-03-27 20:57:52 -070042*/
43enum SS4_PACKET_ID {
44 SS4_PACKET_ID_IDLE = 0,
45 SS4_PACKET_ID_ONE,
46 SS4_PACKET_ID_TWO,
47 SS4_PACKET_ID_MULTI,
Ben Gamari4777ac22016-10-04 11:33:25 -070048 SS4_PACKET_ID_STICK,
Masaki Ota3db5b9f2015-03-27 20:57:52 -070049};
50
51#define SS4_COUNT_PER_ELECTRODE 256
52#define SS4_NUMSENSOR_XOFFSET 7
53#define SS4_NUMSENSOR_YOFFSET 7
54#define SS4_MIN_PITCH_MM 50
55
56#define SS4_MASK_NORMAL_BUTTONS 0x07
57
Masaki Otae7348392017-03-17 14:10:57 -070058#define SS4PLUS_COUNT_PER_ELECTRODE 128
59#define SS4PLUS_NUMSENSOR_XOFFSET 16
60#define SS4PLUS_NUMSENSOR_YOFFSET 5
61#define SS4PLUS_MIN_PITCH_MM 37
62
63#define IS_SS4PLUS_DEV(_b) (((_b[0]) == 0x73) && \
64 ((_b[1]) == 0x03) && \
65 ((_b[2]) == 0x28) \
66 )
67
Paul Donohue23fce362016-11-28 20:16:21 -080068#define SS4_IS_IDLE_V2(_b) (((_b[0]) == 0x18) && \
69 ((_b[1]) == 0x10) && \
70 ((_b[2]) == 0x00) && \
71 ((_b[3] & 0x88) == 0x08) && \
72 ((_b[4]) == 0x10) && \
73 ((_b[5]) == 0x00) \
74 )
75
76#define SS4_1F_X_V2(_b) (((_b[0]) & 0x0007) | \
Masaki Ota3db5b9f2015-03-27 20:57:52 -070077 ((_b[1] << 3) & 0x0078) | \
78 ((_b[1] << 2) & 0x0380) | \
79 ((_b[2] << 5) & 0x1C00) \
80 )
81
82#define SS4_1F_Y_V2(_b) (((_b[2]) & 0x000F) | \
83 ((_b[3] >> 2) & 0x0030) | \
84 ((_b[4] << 6) & 0x03C0) | \
85 ((_b[4] << 5) & 0x0C00) \
86 )
87
88#define SS4_1F_Z_V2(_b) (((_b[5]) & 0x0F) | \
89 ((_b[5] >> 1) & 0x70) | \
90 ((_b[4]) & 0x80) \
91 )
92
93#define SS4_1F_LFB_V2(_b) (((_b[2] >> 4) & 0x01) == 0x01)
94
95#define SS4_MF_LF_V2(_b, _i) ((_b[1 + (_i) * 3] & 0x0004) == 0x0004)
96
97#define SS4_BTN_V2(_b) ((_b[0] >> 5) & SS4_MASK_NORMAL_BUTTONS)
98
99#define SS4_STD_MF_X_V2(_b, _i) (((_b[0 + (_i) * 3] << 5) & 0x00E0) | \
100 ((_b[1 + _i * 3] << 5) & 0x1F00) \
101 )
102
103#define SS4_STD_MF_Y_V2(_b, _i) (((_b[1 + (_i) * 3] << 3) & 0x0010) | \
104 ((_b[2 + (_i) * 3] << 5) & 0x01E0) | \
105 ((_b[2 + (_i) * 3] << 4) & 0x0E00) \
106 )
107
108#define SS4_BTL_MF_X_V2(_b, _i) (SS4_STD_MF_X_V2(_b, _i) | \
109 ((_b[0 + (_i) * 3] >> 3) & 0x0010) \
110 )
111
112#define SS4_BTL_MF_Y_V2(_b, _i) (SS4_STD_MF_Y_V2(_b, _i) | \
113 ((_b[0 + (_i) * 3] >> 3) & 0x0008) \
114 )
115
116#define SS4_MF_Z_V2(_b, _i) (((_b[1 + (_i) * 3]) & 0x0001) | \
117 ((_b[1 + (_i) * 3] >> 1) & 0x0002) \
118 )
119
120#define SS4_IS_MF_CONTINUE(_b) ((_b[2] & 0x10) == 0x10)
121#define SS4_IS_5F_DETECTED(_b) ((_b[2] & 0x10) == 0x10)
122
Paul Donohue23fce362016-11-28 20:16:21 -0800123#define SS4_TS_X_V2(_b) (s8)( \
124 ((_b[0] & 0x01) << 7) | \
125 (_b[1] & 0x7F) \
126 )
127
Paul Donohue47e3a5e2017-01-03 10:39:28 -0800128#define SS4_TS_Y_V2(_b) -(s8)( \
Paul Donohue23fce362016-11-28 20:16:21 -0800129 ((_b[3] & 0x01) << 7) | \
130 (_b[2] & 0x7F) \
131 )
132
133#define SS4_TS_Z_V2(_b) (s8)(_b[4] & 0x7F)
134
Masaki Ota3db5b9f2015-03-27 20:57:52 -0700135
136#define SS4_MFPACKET_NO_AX 8160 /* X-Coordinate value */
137#define SS4_MFPACKET_NO_AY 4080 /* Y-Coordinate value */
138#define SS4_MFPACKET_NO_AX_BL 8176 /* Buttonless X-Coordinate value */
139#define SS4_MFPACKET_NO_AY_BL 4088 /* Buttonless Y-Coordinate value */
140
141/*
Yunkang Tang38088432014-07-26 13:51:41 -0700142 * enum V7_PACKET_ID - defines the packet type for V7
143 * V7_PACKET_ID_IDLE: There's no finger and no button activity.
144 * V7_PACKET_ID_TWO: There's one or two non-resting fingers on touchpad
145 * or there's button activities.
146 * V7_PACKET_ID_MULTI: There are at least three non-resting fingers.
147 * V7_PACKET_ID_NEW: The finger position in slot is not continues from
148 * previous packet.
149*/
150enum V7_PACKET_ID {
151 V7_PACKET_ID_IDLE,
152 V7_PACKET_ID_TWO,
153 V7_PACKET_ID_MULTI,
154 V7_PACKET_ID_NEW,
155 V7_PACKET_ID_UNKNOWN,
156};
157
Kevin Cernekee88a80342013-02-13 20:55:19 -0800158/**
Dmitry Torokhov8326bb52015-01-13 21:08:00 -0800159 * struct alps_protocol_info - information about protocol used by a device
160 * @version: Indicates V1/V2/V3/...
161 * @byte0: Helps figure out whether a position report packet matches the
162 * known format for this model. The first byte of the report, ANDed with
163 * mask0, should match byte0.
164 * @mask0: The mask used to check the first byte of the report.
165 * @flags: Additional device capabilities (passthrough port, trackstick, etc.).
166 */
167struct alps_protocol_info {
168 u16 version;
169 u8 byte0, mask0;
170 unsigned int flags;
171};
172
173/**
Kevin Cernekee88a80342013-02-13 20:55:19 -0800174 * struct alps_model_info - touchpad ID table
175 * @signature: E7 response string to match.
Marcos Paulo de Souza7343d112016-12-12 10:59:56 -0800176 * @protocol_info: information about protocol used by the device.
Kevin Cernekee88a80342013-02-13 20:55:19 -0800177 *
178 * Many (but not all) ALPS touchpads can be identified by looking at the
179 * values returned in the "E7 report" and/or the "EC report." This table
180 * lists a number of such touchpads.
181 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182struct alps_model_info {
Dmitry Torokhovd7c13d32015-01-13 20:53:22 -0800183 u8 signature[3];
Dmitry Torokhov8326bb52015-01-13 21:08:00 -0800184 struct alps_protocol_info protocol_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
Kevin Cernekee88a80342013-02-13 20:55:19 -0800187/**
188 * struct alps_nibble_commands - encodings for register accesses
189 * @command: PS/2 command used for the nibble
190 * @data: Data supplied as an argument to the PS/2 command, if applicable
191 *
192 * The ALPS protocol uses magic sequences to transmit binary data to the
193 * touchpad, as it is generally not OK to send arbitrary bytes out the
194 * PS/2 port. Each of the sequences in this table sends one nibble of the
195 * register address or (write) data. Different versions of the ALPS protocol
196 * use slightly different encodings.
197 */
Seth Forshee25bded72011-11-07 19:53:36 -0800198struct alps_nibble_commands {
199 int command;
200 unsigned char data;
201};
202
Hans de Goede036e6c72014-07-25 22:38:51 -0700203struct alps_bitmap_point {
204 int start_bit;
205 int num_bits;
206};
207
Kevin Cernekee88a80342013-02-13 20:55:19 -0800208/**
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800209 * struct alps_fields - decoded version of the report packet
210 * @x_map: Bitmap of active X positions for MT.
211 * @y_map: Bitmap of active Y positions for MT.
212 * @fingers: Number of fingers for MT.
Hans de Goede02d04252014-07-25 22:43:35 -0700213 * @pressure: Pressure.
214 * @st: position for ST.
215 * @mt: position for MT.
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800216 * @first_mp: Packet is the first of a multi-packet report.
217 * @is_mp: Packet is part of a multi-packet report.
218 * @left: Left touchpad button is active.
219 * @right: Right touchpad button is active.
220 * @middle: Middle touchpad button is active.
221 * @ts_left: Left trackstick button is active.
222 * @ts_right: Right trackstick button is active.
223 * @ts_middle: Middle trackstick button is active.
224 */
225struct alps_fields {
226 unsigned int x_map;
227 unsigned int y_map;
228 unsigned int fingers;
Hans de Goede02d04252014-07-25 22:43:35 -0700229
230 int pressure;
231 struct input_mt_pos st;
232 struct input_mt_pos mt[MAX_TOUCHES];
233
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800234 unsigned int first_mp:1;
235 unsigned int is_mp:1;
236
237 unsigned int left:1;
238 unsigned int right:1;
239 unsigned int middle:1;
240
241 unsigned int ts_left:1;
242 unsigned int ts_right:1;
243 unsigned int ts_middle:1;
244};
245
246/**
Kevin Cernekee88a80342013-02-13 20:55:19 -0800247 * struct alps_data - private data structure for the ALPS driver
Pali Rohár04aae282015-01-14 13:18:30 -0800248 * @psmouse: Pointer to parent psmouse device
249 * @dev2: Trackstick device (can be NULL).
250 * @dev3: Generic PS/2 mouse (can be NULL, delayed registering).
251 * @phys2: Physical path for the trackstick device.
252 * @phys3: Physical path for the generic PS/2 mouse.
253 * @dev3_register_work: Delayed work for registering PS/2 mouse.
Kevin Cernekee88a80342013-02-13 20:55:19 -0800254 * @nibble_commands: Command mapping used for touchpad register accesses.
255 * @addr_command: Command used to tell the touchpad that a register address
256 * follows.
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800257 * @proto_version: Indicates V1/V2/V3/...
258 * @byte0: Helps figure out whether a position report packet matches the
259 * known format for this model. The first byte of the report, ANDed with
260 * mask0, should match byte0.
261 * @mask0: The mask used to check the first byte of the report.
Hans de Goedec0cd17f2014-07-25 22:49:14 -0700262 * @fw_ver: cached copy of firmware version (EC report)
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800263 * @flags: Additional device capabilities (passthrough port, trackstick, etc.).
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -0800264 * @x_max: Largest possible X position value.
265 * @y_max: Largest possible Y position value.
266 * @x_bits: Number of X bits in the MT bitmap.
267 * @y_bits: Number of Y bits in the MT bitmap.
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800268 * @hw_init: Protocol-specific hardware init function.
269 * @process_packet: Protocol-specific function to process a report packet.
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800270 * @decode_fields: Protocol-specific function to read packet bitfields.
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800271 * @set_abs_params: Protocol-specific function to configure the input_dev.
Kevin Cernekee88a80342013-02-13 20:55:19 -0800272 * @prev_fin: Finger bit from previous packet.
273 * @multi_packet: Multi-packet data in progress.
274 * @multi_data: Saved multi-packet data.
Hans de Goede02d04252014-07-25 22:43:35 -0700275 * @f: Decoded packet data fields.
Kevin Cernekee88a80342013-02-13 20:55:19 -0800276 * @quirks: Bitmap of ALPS_QUIRK_*.
277 * @timer: Timer for flushing out the final report packet in the stream.
278 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279struct alps_data {
Pali Rohár04aae282015-01-14 13:18:30 -0800280 struct psmouse *psmouse;
Kevin Cernekee88a80342013-02-13 20:55:19 -0800281 struct input_dev *dev2;
Pali Rohár04aae282015-01-14 13:18:30 -0800282 struct input_dev *dev3;
283 char phys2[32];
284 char phys3[32];
285 struct delayed_work dev3_register_work;
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800286
287 /* these are autodetected when the device is identified */
Seth Forshee25bded72011-11-07 19:53:36 -0800288 const struct alps_nibble_commands *nibble_commands;
Kevin Cernekee88a80342013-02-13 20:55:19 -0800289 int addr_command;
Dmitry Torokhovd7c13d32015-01-13 20:53:22 -0800290 u16 proto_version;
291 u8 byte0, mask0;
Masaki Otae7348392017-03-17 14:10:57 -0700292 u8 dev_id[3];
Dmitry Torokhovd7c13d32015-01-13 20:53:22 -0800293 u8 fw_ver[3];
Hans de Goede40e8f532014-07-25 22:37:15 -0700294 int flags;
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -0800295 int x_max;
296 int y_max;
297 int x_bits;
298 int y_bits;
Hans de Goedef3f33c62014-07-29 11:22:07 -0700299 unsigned int x_res;
300 unsigned int y_res;
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800301
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800302 int (*hw_init)(struct psmouse *psmouse);
303 void (*process_packet)(struct psmouse *psmouse);
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700304 int (*decode_fields)(struct alps_fields *f, unsigned char *p,
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800305 struct psmouse *psmouse);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800306 void (*set_abs_params)(struct alps_data *priv, struct input_dev *dev1);
307
Kevin Cernekee88a80342013-02-13 20:55:19 -0800308 int prev_fin;
309 int multi_packet;
Hans de Goede4dd26572015-05-20 14:41:10 -0700310 int second_touch;
Kevin Cernekee88a80342013-02-13 20:55:19 -0800311 unsigned char multi_data[6];
Hans de Goede02d04252014-07-25 22:43:35 -0700312 struct alps_fields f;
Seth Forshee25bded72011-11-07 19:53:36 -0800313 u8 quirks;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800314 struct timer_list timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315};
316
Seth Forshee25bded72011-11-07 19:53:36 -0800317#define ALPS_QUIRK_TRACKSTICK_BUTTONS 1 /* trakcstick buttons in trackstick packet */
318
Andres Salomon55e3d922007-03-10 01:39:54 -0500319#ifdef CONFIG_MOUSE_PS2_ALPS
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700320int alps_detect(struct psmouse *psmouse, bool set_properties);
Andres Salomon55e3d922007-03-10 01:39:54 -0500321int alps_init(struct psmouse *psmouse);
322#else
Dmitry Torokhovb7802c52009-09-09 19:13:20 -0700323inline int alps_detect(struct psmouse *psmouse, bool set_properties)
Andres Salomon55e3d922007-03-10 01:39:54 -0500324{
325 return -ENOSYS;
326}
327inline int alps_init(struct psmouse *psmouse)
328{
329 return -ENOSYS;
330}
331#endif /* CONFIG_MOUSE_PS2_ALPS */
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333#endif