blob: f210e19ddba66b86312b09c6925c55ea9fc0fab7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * ALPS touchpad PS/2 mouse driver
3 *
4 * Copyright (c) 2003 Neil Brown <neilb@cse.unsw.edu.au>
Peter Osterlund963f6262005-07-11 01:08:04 -05005 * Copyright (c) 2003-2005 Peter Osterlund <petero2@telia.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * Copyright (c) 2004 Dmitry Torokhov <dtor@mail.ru>
7 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08008 * Copyright (c) 2009 Sebastian Kapfer <sebastian_kapfer@gmx.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * ALPS detection, tap switching and status querying info is taken from
11 * tpconfig utility (by C. Scott Ananian and Bruce Kall).
12 *
13 * This program is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License version 2 as published by
15 * the Free Software Foundation.
16 */
17
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/input.h>
Seth Forshee01ce6612011-11-07 19:54:13 -080020#include <linux/input/mt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/serio.h>
22#include <linux/libps2.h>
Hans de Goede073e5702015-08-03 14:06:24 -070023#include <linux/dmi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "psmouse.h"
26#include "alps.h"
27
Seth Forshee25bded72011-11-07 19:53:36 -080028/*
29 * Definitions for ALPS version 3 and 4 command mode protocol
30 */
31#define ALPS_CMD_NIBBLE_10 0x01f2
32
Kevin Cernekeecd401202013-02-13 22:28:07 -080033#define ALPS_REG_BASE_RUSHMORE 0xc2c0
Pali Rohárdae928e2016-01-06 15:50:08 -080034#define ALPS_REG_BASE_V7 0xc2c0
Kevin Cernekeecd401202013-02-13 22:28:07 -080035#define ALPS_REG_BASE_PINNACLE 0x0000
36
Seth Forshee25bded72011-11-07 19:53:36 -080037static const struct alps_nibble_commands alps_v3_nibble_commands[] = {
38 { PSMOUSE_CMD_SETPOLL, 0x00 }, /* 0 */
39 { PSMOUSE_CMD_RESET_DIS, 0x00 }, /* 1 */
40 { PSMOUSE_CMD_SETSCALE21, 0x00 }, /* 2 */
41 { PSMOUSE_CMD_SETRATE, 0x0a }, /* 3 */
42 { PSMOUSE_CMD_SETRATE, 0x14 }, /* 4 */
43 { PSMOUSE_CMD_SETRATE, 0x28 }, /* 5 */
44 { PSMOUSE_CMD_SETRATE, 0x3c }, /* 6 */
45 { PSMOUSE_CMD_SETRATE, 0x50 }, /* 7 */
46 { PSMOUSE_CMD_SETRATE, 0x64 }, /* 8 */
47 { PSMOUSE_CMD_SETRATE, 0xc8 }, /* 9 */
48 { ALPS_CMD_NIBBLE_10, 0x00 }, /* a */
49 { PSMOUSE_CMD_SETRES, 0x00 }, /* b */
50 { PSMOUSE_CMD_SETRES, 0x01 }, /* c */
51 { PSMOUSE_CMD_SETRES, 0x02 }, /* d */
52 { PSMOUSE_CMD_SETRES, 0x03 }, /* e */
53 { PSMOUSE_CMD_SETSCALE11, 0x00 }, /* f */
54};
55
56static const struct alps_nibble_commands alps_v4_nibble_commands[] = {
57 { PSMOUSE_CMD_ENABLE, 0x00 }, /* 0 */
58 { PSMOUSE_CMD_RESET_DIS, 0x00 }, /* 1 */
59 { PSMOUSE_CMD_SETSCALE21, 0x00 }, /* 2 */
60 { PSMOUSE_CMD_SETRATE, 0x0a }, /* 3 */
61 { PSMOUSE_CMD_SETRATE, 0x14 }, /* 4 */
62 { PSMOUSE_CMD_SETRATE, 0x28 }, /* 5 */
63 { PSMOUSE_CMD_SETRATE, 0x3c }, /* 6 */
64 { PSMOUSE_CMD_SETRATE, 0x50 }, /* 7 */
65 { PSMOUSE_CMD_SETRATE, 0x64 }, /* 8 */
66 { PSMOUSE_CMD_SETRATE, 0xc8 }, /* 9 */
67 { ALPS_CMD_NIBBLE_10, 0x00 }, /* a */
68 { PSMOUSE_CMD_SETRES, 0x00 }, /* b */
69 { PSMOUSE_CMD_SETRES, 0x01 }, /* c */
70 { PSMOUSE_CMD_SETRES, 0x02 }, /* d */
71 { PSMOUSE_CMD_SETRES, 0x03 }, /* e */
72 { PSMOUSE_CMD_SETSCALE11, 0x00 }, /* f */
73};
74
Yunkang Tang95f75e92013-12-01 22:33:52 -080075static const struct alps_nibble_commands alps_v6_nibble_commands[] = {
76 { PSMOUSE_CMD_ENABLE, 0x00 }, /* 0 */
77 { PSMOUSE_CMD_SETRATE, 0x0a }, /* 1 */
78 { PSMOUSE_CMD_SETRATE, 0x14 }, /* 2 */
79 { PSMOUSE_CMD_SETRATE, 0x28 }, /* 3 */
80 { PSMOUSE_CMD_SETRATE, 0x3c }, /* 4 */
81 { PSMOUSE_CMD_SETRATE, 0x50 }, /* 5 */
82 { PSMOUSE_CMD_SETRATE, 0x64 }, /* 6 */
83 { PSMOUSE_CMD_SETRATE, 0xc8 }, /* 7 */
84 { PSMOUSE_CMD_GETID, 0x00 }, /* 8 */
85 { PSMOUSE_CMD_GETINFO, 0x00 }, /* 9 */
86 { PSMOUSE_CMD_SETRES, 0x00 }, /* a */
87 { PSMOUSE_CMD_SETRES, 0x01 }, /* b */
88 { PSMOUSE_CMD_SETRES, 0x02 }, /* c */
89 { PSMOUSE_CMD_SETRES, 0x03 }, /* d */
90 { PSMOUSE_CMD_SETSCALE21, 0x00 }, /* e */
91 { PSMOUSE_CMD_SETSCALE11, 0x00 }, /* f */
92};
93
Seth Forshee25bded72011-11-07 19:53:36 -080094
Maxim Levitsky71bb21b2009-11-16 22:12:22 -080095#define ALPS_DUALPOINT 0x02 /* touchpad has trackstick */
96#define ALPS_PASS 0x04 /* device has a pass-through port */
97
98#define ALPS_WHEEL 0x08 /* hardware wheel present */
99#define ALPS_FW_BK_1 0x10 /* front & back buttons present */
100#define ALPS_FW_BK_2 0x20 /* front & back buttons present */
101#define ALPS_FOUR_BUTTONS 0x40 /* 4 direction button present */
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800102#define ALPS_PS2_INTERLEAVED 0x80 /* 3-byte PS/2 packet interleaved with
103 6-byte ALPS packet */
Hans de Goede19556212015-10-26 01:50:28 -0700104#define ALPS_STICK_BITS 0x100 /* separate stick button bits */
Yunkang Tang38088432014-07-26 13:51:41 -0700105#define ALPS_BUTTONPAD 0x200 /* device is a clickpad */
Ben Gamari7ad8a102016-10-04 11:41:58 -0700106#define ALPS_DUALPOINT_WITH_PRESSURE 0x400 /* device can report trackpoint pressure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Helge Dellere38de672006-09-10 21:54:39 -0400108static const struct alps_model_info alps_model_data[] = {
Dmitry Torokhov8326bb52015-01-13 21:08:00 -0800109 { { 0x32, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, /* Toshiba Salellite Pro M10 */
110 { { 0x33, 0x02, 0x0a }, 0x00, { ALPS_PROTO_V1, 0x88, 0xf8, 0 } }, /* UMAX-530T */
111 { { 0x53, 0x02, 0x0a }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
112 { { 0x53, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
113 { { 0x60, 0x03, 0xc8 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, /* HP ze1115 */
114 { { 0x63, 0x02, 0x0a }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
115 { { 0x63, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
116 { { 0x63, 0x02, 0x28 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 } }, /* Fujitsu Siemens S6010 */
117 { { 0x63, 0x02, 0x3c }, 0x00, { ALPS_PROTO_V2, 0x8f, 0x8f, ALPS_WHEEL } }, /* Toshiba Satellite S2400-103 */
118 { { 0x63, 0x02, 0x50 }, 0x00, { ALPS_PROTO_V2, 0xef, 0xef, ALPS_FW_BK_1 } }, /* NEC Versa L320 */
119 { { 0x63, 0x02, 0x64 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
120 { { 0x63, 0x03, 0xc8 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, /* Dell Latitude D800 */
121 { { 0x73, 0x00, 0x0a }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_DUALPOINT } }, /* ThinkPad R61 8918-5QG */
122 { { 0x73, 0x02, 0x0a }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } },
123 { { 0x73, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 } }, /* Ahtec Laptop */
Dmitry Torokhov626b9da2015-02-15 15:55:16 -0800124
125 /*
126 * XXX This entry is suspicious. First byte has zero lower nibble,
127 * which is what a normal mouse would report. Also, the value 0x0e
128 * isn't valid per PS/2 spec.
129 */
130 { { 0x20, 0x02, 0x0e }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } },
131
Dmitry Torokhov8326bb52015-01-13 21:08:00 -0800132 { { 0x22, 0x02, 0x0a }, 0x00, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } },
133 { { 0x22, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xff, 0xff, ALPS_PASS | ALPS_DUALPOINT } }, /* Dell Latitude D600 */
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800134 /* Dell Latitude E5500, E6400, E6500, Precision M4400 */
Dmitry Torokhov8326bb52015-01-13 21:08:00 -0800135 { { 0x62, 0x02, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xcf, 0xcf,
136 ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED } },
137 { { 0x73, 0x00, 0x14 }, 0x00, { ALPS_PROTO_V6, 0xff, 0xff, ALPS_DUALPOINT } }, /* Dell XT2 */
138 { { 0x73, 0x02, 0x50 }, 0x00, { ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_FOUR_BUTTONS } }, /* Dell Vostro 1400 */
139 { { 0x52, 0x01, 0x14 }, 0x00, { ALPS_PROTO_V2, 0xff, 0xff,
140 ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED } }, /* Toshiba Tecra A11-11L */
141 { { 0x73, 0x02, 0x64 }, 0x8a, { ALPS_PROTO_V4, 0x8f, 0x8f, 0 } },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
Dmitry Torokhov3296f712015-01-12 00:30:32 -0800144static const struct alps_protocol_info alps_v3_protocol_data = {
145 ALPS_PROTO_V3, 0x8f, 0x8f, ALPS_DUALPOINT
146};
147
148static const struct alps_protocol_info alps_v3_rushmore_data = {
149 ALPS_PROTO_V3_RUSHMORE, 0x8f, 0x8f, ALPS_DUALPOINT
150};
151
152static const struct alps_protocol_info alps_v5_protocol_data = {
153 ALPS_PROTO_V5, 0xc8, 0xd8, 0
154};
155
156static const struct alps_protocol_info alps_v7_protocol_data = {
157 ALPS_PROTO_V7, 0x48, 0x48, ALPS_DUALPOINT
158};
159
Masaki Ota3db5b9f2015-03-27 20:57:52 -0700160static const struct alps_protocol_info alps_v8_protocol_data = {
161 ALPS_PROTO_V8, 0x18, 0x18, 0
162};
163
Hans de Goede19556212015-10-26 01:50:28 -0700164/*
165 * Some v2 models report the stick buttons in separate bits
166 */
167static const struct dmi_system_id alps_dmi_has_separate_stick_buttons[] = {
168#if defined(CONFIG_DMI) && defined(CONFIG_X86)
169 {
170 /* Extrapolated from other entries */
171 .matches = {
172 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
173 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D420"),
174 },
175 },
176 {
177 /* Reported-by: Hans de Bruin <jmdebruin@xmsnet.nl> */
178 .matches = {
179 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
180 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D430"),
181 },
182 },
183 {
184 /* Reported-by: Hans de Goede <hdegoede@redhat.com> */
185 .matches = {
186 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
187 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D620"),
188 },
189 },
190 {
191 /* Extrapolated from other entries */
192 .matches = {
193 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
194 DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D630"),
195 },
196 },
197#endif
198 { }
199};
200
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800201static void alps_set_abs_params_st(struct alps_data *priv,
202 struct input_dev *dev1);
Hans de Goede688ea362015-05-20 14:42:50 -0700203static void alps_set_abs_params_semi_mt(struct alps_data *priv,
204 struct input_dev *dev1);
Masaki Ota8eccd392015-03-27 20:44:21 -0700205static void alps_set_abs_params_v7(struct alps_data *priv,
206 struct input_dev *dev1);
Masaki Ota3db5b9f2015-03-27 20:57:52 -0700207static void alps_set_abs_params_ss4_v2(struct alps_data *priv,
208 struct input_dev *dev1);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -0800209
Seth Forsheed4b347b2011-11-07 19:53:15 -0800210/* Packet formats are described in Documentation/input/alps.txt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800212static bool alps_is_valid_first_byte(struct alps_data *priv,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800213 unsigned char data)
214{
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800215 return (data & priv->mask0) == priv->byte0;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800216}
217
Pali Rohár04aae282015-01-14 13:18:30 -0800218static void alps_report_buttons(struct input_dev *dev1, struct input_dev *dev2,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800219 int left, int right, int middle)
220{
Martin Buckc91ed052010-03-13 22:23:58 -0800221 struct input_dev *dev;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800222
Martin Buckc91ed052010-03-13 22:23:58 -0800223 /*
224 * If shared button has already been reported on the
225 * other device (dev2) then this event should be also
226 * sent through that device.
227 */
Pali Rohár04aae282015-01-14 13:18:30 -0800228 dev = (dev2 && test_bit(BTN_LEFT, dev2->key)) ? dev2 : dev1;
Martin Buckc91ed052010-03-13 22:23:58 -0800229 input_report_key(dev, BTN_LEFT, left);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800230
Pali Rohár04aae282015-01-14 13:18:30 -0800231 dev = (dev2 && test_bit(BTN_RIGHT, dev2->key)) ? dev2 : dev1;
Martin Buckc91ed052010-03-13 22:23:58 -0800232 input_report_key(dev, BTN_RIGHT, right);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800233
Pali Rohár04aae282015-01-14 13:18:30 -0800234 dev = (dev2 && test_bit(BTN_MIDDLE, dev2->key)) ? dev2 : dev1;
Martin Buckc91ed052010-03-13 22:23:58 -0800235 input_report_key(dev, BTN_MIDDLE, middle);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800236
Martin Buckc91ed052010-03-13 22:23:58 -0800237 /*
238 * Sync the _other_ device now, we'll do the first
239 * device later once we report the rest of the events.
240 */
Pali Rohár04aae282015-01-14 13:18:30 -0800241 if (dev2)
242 input_sync(dev2);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -0800243}
244
Seth Forshee25bded72011-11-07 19:53:36 -0800245static void alps_process_packet_v1_v2(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246{
247 struct alps_data *priv = psmouse->private;
248 unsigned char *packet = psmouse->packet;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -0500249 struct input_dev *dev = psmouse->dev;
250 struct input_dev *dev2 = priv->dev2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 int x, y, z, ges, fin, left, right, middle;
Ivan Casado Ruizc30b4c12005-06-01 02:39:18 -0500252 int back = 0, forward = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800254 if (priv->proto_version == ALPS_PROTO_V1) {
Yotam Medinid2f40122006-05-29 23:30:36 -0400255 left = packet[2] & 0x10;
256 right = packet[2] & 0x08;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 middle = 0;
258 x = packet[1] | ((packet[0] & 0x07) << 7);
259 y = packet[4] | ((packet[3] & 0x07) << 7);
260 z = packet[5];
261 } else {
262 left = packet[3] & 1;
263 right = packet[3] & 2;
264 middle = packet[3] & 4;
265 x = packet[1] | ((packet[2] & 0x78) << (7 - 3));
266 y = packet[4] | ((packet[3] & 0x70) << (7 - 4));
267 z = packet[5];
268 }
269
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800270 if (priv->flags & ALPS_FW_BK_1) {
Laszlo Kajan3c00bb92008-03-18 00:39:55 -0400271 back = packet[0] & 0x10;
272 forward = packet[2] & 4;
Ivan Casado Ruizc30b4c12005-06-01 02:39:18 -0500273 }
274
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800275 if (priv->flags & ALPS_FW_BK_2) {
Ivan Casado Ruizc30b4c12005-06-01 02:39:18 -0500276 back = packet[3] & 4;
277 forward = packet[2] & 4;
278 if ((middle = forward && back))
279 forward = back = 0;
280 }
281
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 ges = packet[2] & 1;
283 fin = packet[2] & 2;
284
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800285 if ((priv->flags & ALPS_DUALPOINT) && z == 127) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 input_report_rel(dev2, REL_X, (x > 383 ? (x - 768) : x));
287 input_report_rel(dev2, REL_Y, -(y > 255 ? (y - 512) : y));
Ulrich Dangeld7ed5d82009-06-11 00:15:09 -0700288
Pali Rohár04aae282015-01-14 13:18:30 -0800289 alps_report_buttons(dev2, dev, left, right, middle);
Ulrich Dangeld7ed5d82009-06-11 00:15:09 -0700290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 input_sync(dev2);
292 return;
293 }
294
Hans de Goede19556212015-10-26 01:50:28 -0700295 /* Some models have separate stick button bits */
296 if (priv->flags & ALPS_STICK_BITS) {
Hans de Goede92bac832015-04-12 15:42:35 -0700297 left |= packet[0] & 1;
298 right |= packet[0] & 2;
299 middle |= packet[0] & 4;
300 }
301
Pali Rohár04aae282015-01-14 13:18:30 -0800302 alps_report_buttons(dev, dev2, left, right, middle);
Ulrich Dangeld7ed5d82009-06-11 00:15:09 -0700303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 /* Convert hardware tap to a reasonable Z value */
Maxim Levitsky71bb21b2009-11-16 22:12:22 -0800305 if (ges && !fin)
306 z = 40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /*
309 * A "tap and drag" operation is reported by the hardware as a transition
310 * from (!fin && ges) to (fin && ges). This should be translated to the
311 * sequence Z>0, Z==0, Z>0, so the Z==0 event has to be generated manually.
312 */
313 if (ges && fin && !priv->prev_fin) {
314 input_report_abs(dev, ABS_X, x);
315 input_report_abs(dev, ABS_Y, y);
316 input_report_abs(dev, ABS_PRESSURE, 0);
317 input_report_key(dev, BTN_TOOL_FINGER, 0);
318 input_sync(dev);
319 }
320 priv->prev_fin = fin;
321
Maxim Levitsky71bb21b2009-11-16 22:12:22 -0800322 if (z > 30)
323 input_report_key(dev, BTN_TOUCH, 1);
324 if (z < 25)
325 input_report_key(dev, BTN_TOUCH, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 if (z > 0) {
328 input_report_abs(dev, ABS_X, x);
329 input_report_abs(dev, ABS_Y, y);
330 }
331
332 input_report_abs(dev, ABS_PRESSURE, z);
333 input_report_key(dev, BTN_TOOL_FINGER, z > 0);
334
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800335 if (priv->flags & ALPS_WHEEL)
Vojtech Pavlike6c047b2005-09-04 01:40:43 -0500336 input_report_rel(dev, REL_WHEEL, ((packet[2] << 1) & 0x08) - ((packet[0] >> 4) & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800338 if (priv->flags & (ALPS_FW_BK_1 | ALPS_FW_BK_2)) {
Ivan Casado Ruizc30b4c12005-06-01 02:39:18 -0500339 input_report_key(dev, BTN_FORWARD, forward);
340 input_report_key(dev, BTN_BACK, back);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Kevin Cernekee99df65e2013-02-13 20:56:33 -0800343 if (priv->flags & ALPS_FOUR_BUTTONS) {
Maxim Levitsky71bb21b2009-11-16 22:12:22 -0800344 input_report_key(dev, BTN_0, packet[2] & 4);
345 input_report_key(dev, BTN_1, packet[0] & 0x10);
346 input_report_key(dev, BTN_2, packet[3] & 4);
347 input_report_key(dev, BTN_3, packet[0] & 0x20);
348 }
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 input_sync(dev);
351}
352
Hans de Goede036e6c72014-07-25 22:38:51 -0700353static void alps_get_bitmap_points(unsigned int map,
354 struct alps_bitmap_point *low,
355 struct alps_bitmap_point *high,
356 int *fingers)
357{
358 struct alps_bitmap_point *point;
359 int i, bit, prev_bit = 0;
360
361 point = low;
362 for (i = 0; map != 0; i++, map >>= 1) {
363 bit = map & 1;
364 if (bit) {
365 if (!prev_bit) {
366 point->start_bit = i;
Hans de Goede105affb2014-07-25 22:41:51 -0700367 point->num_bits = 0;
Hans de Goede036e6c72014-07-25 22:38:51 -0700368 (*fingers)++;
369 }
370 point->num_bits++;
371 } else {
372 if (prev_bit)
373 point = high;
Hans de Goede036e6c72014-07-25 22:38:51 -0700374 }
375 prev_bit = bit;
376 }
377}
378
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800379/*
Hans de Goededccf1dd2015-05-20 14:43:09 -0700380 * Process bitmap data from semi-mt protocols. Returns the number of
Seth Forshee01ce6612011-11-07 19:54:13 -0800381 * fingers detected. A return value of 0 means at least one of the
382 * bitmaps was empty.
383 *
384 * The bitmaps don't have enough data to track fingers, so this function
385 * only generates points representing a bounding box of all contacts.
Hans de Goede02d04252014-07-25 22:43:35 -0700386 * These points are returned in fields->mt when the return value
Seth Forshee01ce6612011-11-07 19:54:13 -0800387 * is greater than 0.
388 */
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -0800389static int alps_process_bitmap(struct alps_data *priv,
Hans de Goede02d04252014-07-25 22:43:35 -0700390 struct alps_fields *fields)
Seth Forshee01ce6612011-11-07 19:54:13 -0800391{
Hans de Goede4dd26572015-05-20 14:41:10 -0700392 int i, fingers_x = 0, fingers_y = 0, fingers, closest;
Seth Forshee01ce6612011-11-07 19:54:13 -0800393 struct alps_bitmap_point x_low = {0,}, x_high = {0,};
394 struct alps_bitmap_point y_low = {0,}, y_high = {0,};
Hans de Goede4dd26572015-05-20 14:41:10 -0700395 struct input_mt_pos corner[4];
Seth Forshee01ce6612011-11-07 19:54:13 -0800396
Hans de Goede02d04252014-07-25 22:43:35 -0700397 if (!fields->x_map || !fields->y_map)
Seth Forshee01ce6612011-11-07 19:54:13 -0800398 return 0;
399
Hans de Goede02d04252014-07-25 22:43:35 -0700400 alps_get_bitmap_points(fields->x_map, &x_low, &x_high, &fingers_x);
401 alps_get_bitmap_points(fields->y_map, &y_low, &y_high, &fingers_y);
Seth Forshee01ce6612011-11-07 19:54:13 -0800402
403 /*
404 * Fingers can overlap, so we use the maximum count of fingers
405 * on either axis as the finger count.
406 */
407 fingers = max(fingers_x, fingers_y);
408
409 /*
Hans de Goede20bea682014-07-25 22:33:33 -0700410 * If an axis reports only a single contact, we have overlapping or
411 * adjacent fingers. Divide the single contact between the two points.
Seth Forshee01ce6612011-11-07 19:54:13 -0800412 */
Hans de Goede20bea682014-07-25 22:33:33 -0700413 if (fingers_x == 1) {
Hans de Goede28835f42014-07-25 22:42:53 -0700414 i = (x_low.num_bits - 1) / 2;
Hans de Goede20bea682014-07-25 22:33:33 -0700415 x_low.num_bits = x_low.num_bits - i;
416 x_high.start_bit = x_low.start_bit + i;
417 x_high.num_bits = max(i, 1);
418 }
419 if (fingers_y == 1) {
Hans de Goede28835f42014-07-25 22:42:53 -0700420 i = (y_low.num_bits - 1) / 2;
Hans de Goede20bea682014-07-25 22:33:33 -0700421 y_low.num_bits = y_low.num_bits - i;
422 y_high.start_bit = y_low.start_bit + i;
423 y_high.num_bits = max(i, 1);
Seth Forshee01ce6612011-11-07 19:54:13 -0800424 }
425
Hans de Goede4dd26572015-05-20 14:41:10 -0700426 /* top-left corner */
427 corner[0].x =
Hans de Goede02d04252014-07-25 22:43:35 -0700428 (priv->x_max * (2 * x_low.start_bit + x_low.num_bits - 1)) /
429 (2 * (priv->x_bits - 1));
Hans de Goede4dd26572015-05-20 14:41:10 -0700430 corner[0].y =
Hans de Goede02d04252014-07-25 22:43:35 -0700431 (priv->y_max * (2 * y_low.start_bit + y_low.num_bits - 1)) /
432 (2 * (priv->y_bits - 1));
Seth Forshee01ce6612011-11-07 19:54:13 -0800433
Hans de Goede4dd26572015-05-20 14:41:10 -0700434 /* top-right corner */
435 corner[1].x =
Hans de Goede02d04252014-07-25 22:43:35 -0700436 (priv->x_max * (2 * x_high.start_bit + x_high.num_bits - 1)) /
437 (2 * (priv->x_bits - 1));
Hans de Goede4dd26572015-05-20 14:41:10 -0700438 corner[1].y =
439 (priv->y_max * (2 * y_low.start_bit + y_low.num_bits - 1)) /
440 (2 * (priv->y_bits - 1));
441
442 /* bottom-right corner */
443 corner[2].x =
444 (priv->x_max * (2 * x_high.start_bit + x_high.num_bits - 1)) /
445 (2 * (priv->x_bits - 1));
446 corner[2].y =
Hans de Goede02d04252014-07-25 22:43:35 -0700447 (priv->y_max * (2 * y_high.start_bit + y_high.num_bits - 1)) /
448 (2 * (priv->y_bits - 1));
Seth Forshee01ce6612011-11-07 19:54:13 -0800449
Hans de Goede4dd26572015-05-20 14:41:10 -0700450 /* bottom-left corner */
451 corner[3].x =
452 (priv->x_max * (2 * x_low.start_bit + x_low.num_bits - 1)) /
453 (2 * (priv->x_bits - 1));
454 corner[3].y =
Seth Forshee01ce6612011-11-07 19:54:13 -0800455 (priv->y_max * (2 * y_high.start_bit + y_high.num_bits - 1)) /
456 (2 * (priv->y_bits - 1));
457
Hans de Goededccf1dd2015-05-20 14:43:09 -0700458 /* x-bitmap order is reversed on v5 touchpads */
459 if (priv->proto_version == ALPS_PROTO_V5) {
460 for (i = 0; i < 4; i++)
461 corner[i].x = priv->x_max - corner[i].x;
Hans de Goede40e8f532014-07-25 22:37:15 -0700462 }
463
Hans de Goededccf1dd2015-05-20 14:43:09 -0700464 /* y-bitmap order is reversed on v3 and v4 touchpads */
465 if (priv->proto_version == ALPS_PROTO_V3 ||
466 priv->proto_version == ALPS_PROTO_V4) {
Hans de Goede4dd26572015-05-20 14:41:10 -0700467 for (i = 0; i < 4; i++)
468 corner[i].y = priv->y_max - corner[i].y;
Seth Forshee01ce6612011-11-07 19:54:13 -0800469 }
470
Hans de Goede4dd26572015-05-20 14:41:10 -0700471 /*
472 * We only select a corner for the second touch once per 2 finger
473 * touch sequence to avoid the chosen corner (and thus the coordinates)
474 * jumping around when the first touch is in the middle.
475 */
476 if (priv->second_touch == -1) {
477 /* Find corner closest to our st coordinates */
478 closest = 0x7fffffff;
479 for (i = 0; i < 4; i++) {
480 int dx = fields->st.x - corner[i].x;
481 int dy = fields->st.y - corner[i].y;
482 int distance = dx * dx + dy * dy;
483
484 if (distance < closest) {
485 priv->second_touch = i;
486 closest = distance;
487 }
488 }
489 /* And select the opposite corner to use for the 2nd touch */
490 priv->second_touch = (priv->second_touch + 2) % 4;
491 }
492
493 fields->mt[0] = fields->st;
494 fields->mt[1] = corner[priv->second_touch];
495
Seth Forshee01ce6612011-11-07 19:54:13 -0800496 return fingers;
497}
498
Hans de Goedecdf333e2014-07-25 22:44:42 -0700499static void alps_set_slot(struct input_dev *dev, int slot, int x, int y)
Seth Forshee01ce6612011-11-07 19:54:13 -0800500{
501 input_mt_slot(dev, slot);
Hans de Goedecdf333e2014-07-25 22:44:42 -0700502 input_mt_report_slot_state(dev, MT_TOOL_FINGER, true);
503 input_report_abs(dev, ABS_MT_POSITION_X, x);
504 input_report_abs(dev, ABS_MT_POSITION_Y, y);
Seth Forshee01ce6612011-11-07 19:54:13 -0800505}
506
Hans de Goedecdf333e2014-07-25 22:44:42 -0700507static void alps_report_mt_data(struct psmouse *psmouse, int n)
Seth Forshee01ce6612011-11-07 19:54:13 -0800508{
Hans de Goede02d04252014-07-25 22:43:35 -0700509 struct alps_data *priv = psmouse->private;
510 struct input_dev *dev = psmouse->dev;
511 struct alps_fields *f = &priv->f;
Hans de Goedecdf333e2014-07-25 22:44:42 -0700512 int i, slot[MAX_TOUCHES];
Hans de Goede02d04252014-07-25 22:43:35 -0700513
Henrik Rydberg448c7f382015-02-01 11:25:14 -0800514 input_mt_assign_slots(dev, slot, f->mt, n, 0);
Hans de Goedecdf333e2014-07-25 22:44:42 -0700515 for (i = 0; i < n; i++)
516 alps_set_slot(dev, slot[i], f->mt[i].x, f->mt[i].y);
517
518 input_mt_sync_frame(dev);
Seth Forshee01ce6612011-11-07 19:54:13 -0800519}
520
Hans de Goede68c21872014-07-25 22:47:25 -0700521static void alps_report_semi_mt_data(struct psmouse *psmouse, int fingers)
522{
523 struct alps_data *priv = psmouse->private;
524 struct input_dev *dev = psmouse->dev;
525 struct alps_fields *f = &priv->f;
526
527 /* Use st data when we don't have mt data */
528 if (fingers < 2) {
529 f->mt[0].x = f->st.x;
530 f->mt[0].y = f->st.y;
531 fingers = f->pressure > 0 ? 1 : 0;
Hans de Goede4dd26572015-05-20 14:41:10 -0700532 priv->second_touch = -1;
Hans de Goede68c21872014-07-25 22:47:25 -0700533 }
534
Hans de Goede1662c0332015-05-20 14:42:15 -0700535 if (fingers >= 1)
536 alps_set_slot(dev, 0, f->mt[0].x, f->mt[0].y);
537 if (fingers >= 2)
538 alps_set_slot(dev, 1, f->mt[1].x, f->mt[1].y);
539 input_mt_sync_frame(dev);
Hans de Goede68c21872014-07-25 22:47:25 -0700540
541 input_mt_report_finger_count(dev, fingers);
542
543 input_report_key(dev, BTN_LEFT, f->left);
544 input_report_key(dev, BTN_RIGHT, f->right);
545 input_report_key(dev, BTN_MIDDLE, f->middle);
546
547 input_report_abs(dev, ABS_PRESSURE, f->pressure);
548
549 input_sync(dev);
550}
551
Seth Forshee25bded72011-11-07 19:53:36 -0800552static void alps_process_trackstick_packet_v3(struct psmouse *psmouse)
553{
554 struct alps_data *priv = psmouse->private;
555 unsigned char *packet = psmouse->packet;
556 struct input_dev *dev = priv->dev2;
557 int x, y, z, left, right, middle;
558
Pali Rohár34412ba2015-01-09 12:48:58 -0800559 /* It should be a DualPoint when received trackstick packet */
560 if (!(priv->flags & ALPS_DUALPOINT)) {
561 psmouse_warn(psmouse,
562 "Rejected trackstick packet from non DualPoint device");
563 return;
564 }
565
Seth Forshee25bded72011-11-07 19:53:36 -0800566 /* Sanity check packet */
567 if (!(packet[0] & 0x40)) {
568 psmouse_dbg(psmouse, "Bad trackstick packet, discarding\n");
569 return;
570 }
571
572 /*
573 * There's a special packet that seems to indicate the end
574 * of a stream of trackstick data. Filter these out.
575 */
576 if (packet[1] == 0x7f && packet[2] == 0x7f && packet[4] == 0x7f)
577 return;
578
579 x = (s8)(((packet[0] & 0x20) << 2) | (packet[1] & 0x7f));
580 y = (s8)(((packet[0] & 0x10) << 3) | (packet[2] & 0x7f));
581 z = (packet[4] & 0x7c) >> 2;
582
583 /*
584 * The x and y values tend to be quite large, and when used
585 * alone the trackstick is difficult to use. Scale them down
586 * to compensate.
587 */
588 x /= 8;
589 y /= 8;
590
591 input_report_rel(dev, REL_X, x);
592 input_report_rel(dev, REL_Y, -y);
593
594 /*
595 * Most ALPS models report the trackstick buttons in the touchpad
596 * packets, but a few report them here. No reliable way has been
597 * found to differentiate between the models upfront, so we enable
598 * the quirk in response to seeing a button press in the trackstick
599 * packet.
600 */
601 left = packet[3] & 0x01;
602 right = packet[3] & 0x02;
603 middle = packet[3] & 0x04;
604
605 if (!(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) &&
606 (left || right || middle))
607 priv->quirks |= ALPS_QUIRK_TRACKSTICK_BUTTONS;
608
609 if (priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) {
610 input_report_key(dev, BTN_LEFT, left);
611 input_report_key(dev, BTN_RIGHT, right);
612 input_report_key(dev, BTN_MIDDLE, middle);
613 }
614
615 input_sync(dev);
616 return;
617}
618
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800619static void alps_decode_buttons_v3(struct alps_fields *f, unsigned char *p)
620{
621 f->left = !!(p[3] & 0x01);
622 f->right = !!(p[3] & 0x02);
623 f->middle = !!(p[3] & 0x04);
624
625 f->ts_left = !!(p[3] & 0x10);
626 f->ts_right = !!(p[3] & 0x20);
627 f->ts_middle = !!(p[3] & 0x40);
628}
629
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700630static int alps_decode_pinnacle(struct alps_fields *f, unsigned char *p,
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800631 struct psmouse *psmouse)
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800632{
633 f->first_mp = !!(p[4] & 0x40);
634 f->is_mp = !!(p[0] & 0x40);
635
Hans de Goedea839cd52015-05-20 14:39:21 -0700636 if (f->is_mp) {
637 f->fingers = (p[5] & 0x3) + 1;
638 f->x_map = ((p[4] & 0x7e) << 8) |
639 ((p[1] & 0x7f) << 2) |
640 ((p[0] & 0x30) >> 4);
641 f->y_map = ((p[3] & 0x70) << 4) |
642 ((p[2] & 0x7f) << 1) |
643 (p[4] & 0x01);
644 } else {
645 f->st.x = ((p[1] & 0x7f) << 4) | ((p[4] & 0x30) >> 2) |
646 ((p[0] & 0x30) >> 4);
647 f->st.y = ((p[2] & 0x7f) << 4) | (p[4] & 0x0f);
648 f->pressure = p[5] & 0x7f;
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800649
Hans de Goedea839cd52015-05-20 14:39:21 -0700650 alps_decode_buttons_v3(f, p);
651 }
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700652
653 return 0;
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800654}
655
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700656static int alps_decode_rushmore(struct alps_fields *f, unsigned char *p,
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800657 struct psmouse *psmouse)
Kevin Cernekee1302bac2013-02-13 22:27:08 -0800658{
Hans de Goedeaab9cf72015-05-20 14:38:33 -0700659 f->first_mp = !!(p[4] & 0x40);
Yunkang Tangf105e342014-07-25 22:29:24 -0700660 f->is_mp = !!(p[5] & 0x40);
Hans de Goedeaab9cf72015-05-20 14:38:33 -0700661
Hans de Goedea839cd52015-05-20 14:39:21 -0700662 if (f->is_mp) {
663 f->fingers = max((p[5] & 0x3), ((p[5] >> 2) & 0x3)) + 1;
664 f->x_map = ((p[5] & 0x10) << 11) |
665 ((p[4] & 0x7e) << 8) |
666 ((p[1] & 0x7f) << 2) |
667 ((p[0] & 0x30) >> 4);
668 f->y_map = ((p[5] & 0x20) << 6) |
669 ((p[3] & 0x70) << 4) |
670 ((p[2] & 0x7f) << 1) |
671 (p[4] & 0x01);
672 } else {
673 f->st.x = ((p[1] & 0x7f) << 4) | ((p[4] & 0x30) >> 2) |
674 ((p[0] & 0x30) >> 4);
675 f->st.y = ((p[2] & 0x7f) << 4) | (p[4] & 0x0f);
676 f->pressure = p[5] & 0x7f;
Hans de Goedeaab9cf72015-05-20 14:38:33 -0700677
Hans de Goedea839cd52015-05-20 14:39:21 -0700678 alps_decode_buttons_v3(f, p);
679 }
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700680
681 return 0;
Kevin Cernekee1302bac2013-02-13 22:27:08 -0800682}
683
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700684static int alps_decode_dolphin(struct alps_fields *f, unsigned char *p,
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800685 struct psmouse *psmouse)
Dave Turvene75af9e52013-02-21 22:58:28 -0800686{
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800687 u64 palm_data = 0;
688 struct alps_data *priv = psmouse->private;
689
Dave Turvene75af9e52013-02-21 22:58:28 -0800690 f->first_mp = !!(p[0] & 0x02);
691 f->is_mp = !!(p[0] & 0x20);
692
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800693 if (!f->is_mp) {
Hans de Goede02d04252014-07-25 22:43:35 -0700694 f->st.x = ((p[1] & 0x7f) | ((p[4] & 0x0f) << 7));
695 f->st.y = ((p[2] & 0x7f) | ((p[4] & 0xf0) << 3));
696 f->pressure = (p[0] & 4) ? 0 : p[5] & 0x7f;
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800697 alps_decode_buttons_v3(f, p);
698 } else {
699 f->fingers = ((p[0] & 0x6) >> 1 |
Dave Turvene75af9e52013-02-21 22:58:28 -0800700 (p[0] & 0x10) >> 2);
Dave Turvene75af9e52013-02-21 22:58:28 -0800701
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800702 palm_data = (p[1] & 0x7f) |
703 ((p[2] & 0x7f) << 7) |
704 ((p[4] & 0x7f) << 14) |
705 ((p[5] & 0x7f) << 21) |
706 ((p[3] & 0x07) << 28) |
707 (((u64)p[3] & 0x70) << 27) |
708 (((u64)p[0] & 0x01) << 34);
Dave Turvene75af9e52013-02-21 22:58:28 -0800709
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800710 /* Y-profile is stored in P(0) to p(n-1), n = y_bits; */
711 f->y_map = palm_data & (BIT(priv->y_bits) - 1);
712
713 /* X-profile is stored in p(n) to p(n+m-1), m = x_bits; */
714 f->x_map = (palm_data >> priv->y_bits) &
715 (BIT(priv->x_bits) - 1);
716 }
Hans de Goede38c11eaa2014-07-25 22:48:44 -0700717
718 return 0;
Dave Turvene75af9e52013-02-21 22:58:28 -0800719}
720
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800721static void alps_process_touchpad_packet_v3_v5(struct psmouse *psmouse)
Seth Forshee25bded72011-11-07 19:53:36 -0800722{
723 struct alps_data *priv = psmouse->private;
724 unsigned char *packet = psmouse->packet;
Seth Forshee25bded72011-11-07 19:53:36 -0800725 struct input_dev *dev2 = priv->dev2;
Hans de Goede02d04252014-07-25 22:43:35 -0700726 struct alps_fields *f = &priv->f;
727 int fingers = 0;
Kevin Cernekeef85e5002013-02-13 22:26:11 -0800728
Hans de Goede02d04252014-07-25 22:43:35 -0700729 memset(f, 0, sizeof(*f));
730
731 priv->decode_fields(f, packet, psmouse);
Seth Forshee25bded72011-11-07 19:53:36 -0800732
733 /*
Seth Forshee01ce6612011-11-07 19:54:13 -0800734 * There's no single feature of touchpad position and bitmap packets
735 * that can be used to distinguish between them. We rely on the fact
736 * that a bitmap packet should always follow a position packet with
737 * bit 6 of packet[4] set.
Seth Forshee25bded72011-11-07 19:53:36 -0800738 */
739 if (priv->multi_packet) {
Seth Forshee25bded72011-11-07 19:53:36 -0800740 /*
741 * Sometimes a position packet will indicate a multi-packet
742 * sequence, but then what follows is another position
743 * packet. Check for this, and when it happens process the
744 * position packet as usual.
745 */
Hans de Goede02d04252014-07-25 22:43:35 -0700746 if (f->is_mp) {
747 fingers = f->fingers;
Hans de Goede44b77f32015-05-20 14:40:06 -0700748 /*
749 * Bitmap processing uses position packet's coordinate
750 * data, so we need to do decode it first.
751 */
752 priv->decode_fields(f, priv->multi_data, psmouse);
Hans de Goededccf1dd2015-05-20 14:43:09 -0700753 if (alps_process_bitmap(priv, f) == 0)
754 fingers = 0; /* Use st data */
Seth Forshee01ce6612011-11-07 19:54:13 -0800755 } else {
756 priv->multi_packet = 0;
Seth Forshee25bded72011-11-07 19:53:36 -0800757 }
758 }
759
Seth Forshee01ce6612011-11-07 19:54:13 -0800760 /*
761 * Bit 6 of byte 0 is not usually set in position packets. The only
762 * times it seems to be set is in situations where the data is
763 * suspect anyway, e.g. a palm resting flat on the touchpad. Given
764 * this combined with the fact that this bit is useful for filtering
765 * out misidentified bitmap packets, we reject anything with this
766 * bit set.
767 */
Hans de Goede02d04252014-07-25 22:43:35 -0700768 if (f->is_mp)
Seth Forshee01ce6612011-11-07 19:54:13 -0800769 return;
770
Hans de Goede02d04252014-07-25 22:43:35 -0700771 if (!priv->multi_packet && f->first_mp) {
Seth Forshee25bded72011-11-07 19:53:36 -0800772 priv->multi_packet = 1;
Seth Forshee01ce6612011-11-07 19:54:13 -0800773 memcpy(priv->multi_data, packet, sizeof(priv->multi_data));
774 return;
775 }
776
777 priv->multi_packet = 0;
Seth Forshee25bded72011-11-07 19:53:36 -0800778
Seth Forshee25bded72011-11-07 19:53:36 -0800779 /*
780 * Sometimes the hardware sends a single packet with z = 0
781 * in the middle of a stream. Real releases generate packets
782 * with x, y, and z all zero, so these seem to be flukes.
783 * Ignore them.
784 */
Hans de Goede02d04252014-07-25 22:43:35 -0700785 if (f->st.x && f->st.y && !f->pressure)
Seth Forshee25bded72011-11-07 19:53:36 -0800786 return;
787
Hans de Goede68c21872014-07-25 22:47:25 -0700788 alps_report_semi_mt_data(psmouse, fingers);
Seth Forshee25bded72011-11-07 19:53:36 -0800789
Pali Rohár34412ba2015-01-09 12:48:58 -0800790 if ((priv->flags & ALPS_DUALPOINT) &&
791 !(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS)) {
Hans de Goede02d04252014-07-25 22:43:35 -0700792 input_report_key(dev2, BTN_LEFT, f->ts_left);
793 input_report_key(dev2, BTN_RIGHT, f->ts_right);
794 input_report_key(dev2, BTN_MIDDLE, f->ts_middle);
Seth Forshee25bded72011-11-07 19:53:36 -0800795 input_sync(dev2);
796 }
797}
798
799static void alps_process_packet_v3(struct psmouse *psmouse)
800{
801 unsigned char *packet = psmouse->packet;
802
803 /*
804 * v3 protocol packets come in three types, two representing
805 * touchpad data and one representing trackstick data.
806 * Trackstick packets seem to be distinguished by always
807 * having 0x3f in the last byte. This value has never been
808 * observed in the last byte of either of the other types
809 * of packets.
810 */
811 if (packet[5] == 0x3f) {
812 alps_process_trackstick_packet_v3(psmouse);
813 return;
814 }
815
Yunkang Tangee65d4b2013-12-26 14:54:19 -0800816 alps_process_touchpad_packet_v3_v5(psmouse);
Seth Forshee25bded72011-11-07 19:53:36 -0800817}
818
Yunkang Tang95f75e92013-12-01 22:33:52 -0800819static void alps_process_packet_v6(struct psmouse *psmouse)
820{
821 struct alps_data *priv = psmouse->private;
822 unsigned char *packet = psmouse->packet;
823 struct input_dev *dev = psmouse->dev;
824 struct input_dev *dev2 = priv->dev2;
825 int x, y, z, left, right, middle;
826
827 /*
828 * We can use Byte5 to distinguish if the packet is from Touchpad
829 * or Trackpoint.
830 * Touchpad: 0 - 0x7E
831 * Trackpoint: 0x7F
832 */
833 if (packet[5] == 0x7F) {
834 /* It should be a DualPoint when received Trackpoint packet */
Pali Rohár34412ba2015-01-09 12:48:58 -0800835 if (!(priv->flags & ALPS_DUALPOINT)) {
836 psmouse_warn(psmouse,
837 "Rejected trackstick packet from non DualPoint device");
Yunkang Tang95f75e92013-12-01 22:33:52 -0800838 return;
Pali Rohár34412ba2015-01-09 12:48:58 -0800839 }
Yunkang Tang95f75e92013-12-01 22:33:52 -0800840
841 /* Trackpoint packet */
842 x = packet[1] | ((packet[3] & 0x20) << 2);
843 y = packet[2] | ((packet[3] & 0x40) << 1);
844 z = packet[4];
845 left = packet[3] & 0x01;
846 right = packet[3] & 0x02;
847 middle = packet[3] & 0x04;
848
849 /* To prevent the cursor jump when finger lifted */
850 if (x == 0x7F && y == 0x7F && z == 0x7F)
851 x = y = z = 0;
852
853 /* Divide 4 since trackpoint's speed is too fast */
854 input_report_rel(dev2, REL_X, (char)x / 4);
855 input_report_rel(dev2, REL_Y, -((char)y / 4));
856
857 input_report_key(dev2, BTN_LEFT, left);
858 input_report_key(dev2, BTN_RIGHT, right);
859 input_report_key(dev2, BTN_MIDDLE, middle);
860
861 input_sync(dev2);
862 return;
863 }
864
865 /* Touchpad packet */
866 x = packet[1] | ((packet[3] & 0x78) << 4);
867 y = packet[2] | ((packet[4] & 0x78) << 4);
868 z = packet[5];
869 left = packet[3] & 0x01;
870 right = packet[3] & 0x02;
871
872 if (z > 30)
873 input_report_key(dev, BTN_TOUCH, 1);
874 if (z < 25)
875 input_report_key(dev, BTN_TOUCH, 0);
876
877 if (z > 0) {
878 input_report_abs(dev, ABS_X, x);
879 input_report_abs(dev, ABS_Y, y);
880 }
881
882 input_report_abs(dev, ABS_PRESSURE, z);
883 input_report_key(dev, BTN_TOOL_FINGER, z > 0);
884
885 /* v6 touchpad does not have middle button */
886 input_report_key(dev, BTN_LEFT, left);
887 input_report_key(dev, BTN_RIGHT, right);
888
889 input_sync(dev);
890}
891
Seth Forshee25bded72011-11-07 19:53:36 -0800892static void alps_process_packet_v4(struct psmouse *psmouse)
893{
George Pantalos3b7e09f2012-05-10 22:31:59 -0700894 struct alps_data *priv = psmouse->private;
Seth Forshee25bded72011-11-07 19:53:36 -0800895 unsigned char *packet = psmouse->packet;
Hans de Goede02d04252014-07-25 22:43:35 -0700896 struct alps_fields *f = &priv->f;
Hans de Goede68c21872014-07-25 22:47:25 -0700897 int offset;
George Pantalos3b7e09f2012-05-10 22:31:59 -0700898
899 /*
900 * v4 has a 6-byte encoding for bitmap data, but this data is
901 * broken up between 3 normal packets. Use priv->multi_packet to
902 * track our position in the bitmap packet.
903 */
904 if (packet[6] & 0x40) {
905 /* sync, reset position */
906 priv->multi_packet = 0;
907 }
908
909 if (WARN_ON_ONCE(priv->multi_packet > 2))
910 return;
911
912 offset = 2 * priv->multi_packet;
913 priv->multi_data[offset] = packet[6];
914 priv->multi_data[offset + 1] = packet[7];
915
Hans de Goede44b77f32015-05-20 14:40:06 -0700916 f->left = !!(packet[4] & 0x01);
917 f->right = !!(packet[4] & 0x02);
918
919 f->st.x = ((packet[1] & 0x7f) << 4) | ((packet[3] & 0x30) >> 2) |
920 ((packet[0] & 0x30) >> 4);
921 f->st.y = ((packet[2] & 0x7f) << 4) | (packet[3] & 0x0f);
922 f->pressure = packet[5] & 0x7f;
923
George Pantalos3b7e09f2012-05-10 22:31:59 -0700924 if (++priv->multi_packet > 2) {
925 priv->multi_packet = 0;
926
Hans de Goede02d04252014-07-25 22:43:35 -0700927 f->x_map = ((priv->multi_data[2] & 0x1f) << 10) |
George Pantalos3b7e09f2012-05-10 22:31:59 -0700928 ((priv->multi_data[3] & 0x60) << 3) |
929 ((priv->multi_data[0] & 0x3f) << 2) |
930 ((priv->multi_data[1] & 0x60) >> 5);
Hans de Goede02d04252014-07-25 22:43:35 -0700931 f->y_map = ((priv->multi_data[5] & 0x01) << 10) |
George Pantalos3b7e09f2012-05-10 22:31:59 -0700932 ((priv->multi_data[3] & 0x1f) << 5) |
933 (priv->multi_data[1] & 0x1f);
934
Hans de Goede02d04252014-07-25 22:43:35 -0700935 f->fingers = alps_process_bitmap(priv, f);
George Pantalos3b7e09f2012-05-10 22:31:59 -0700936 }
Seth Forshee25bded72011-11-07 19:53:36 -0800937
Hans de Goede68c21872014-07-25 22:47:25 -0700938 alps_report_semi_mt_data(psmouse, f->fingers);
Seth Forshee25bded72011-11-07 19:53:36 -0800939}
940
Yunkang Tang38088432014-07-26 13:51:41 -0700941static bool alps_is_valid_package_v7(struct psmouse *psmouse)
942{
943 switch (psmouse->pktcnt) {
944 case 3:
945 return (psmouse->packet[2] & 0x40) == 0x40;
946 case 4:
947 return (psmouse->packet[3] & 0x48) == 0x48;
948 case 6:
949 return (psmouse->packet[5] & 0x40) == 0x00;
950 }
951 return true;
952}
953
954static unsigned char alps_get_packet_id_v7(char *byte)
955{
956 unsigned char packet_id;
957
958 if (byte[4] & 0x40)
959 packet_id = V7_PACKET_ID_TWO;
960 else if (byte[4] & 0x01)
961 packet_id = V7_PACKET_ID_MULTI;
962 else if ((byte[0] & 0x10) && !(byte[4] & 0x43))
963 packet_id = V7_PACKET_ID_NEW;
964 else if (byte[1] == 0x00 && byte[4] == 0x00)
965 packet_id = V7_PACKET_ID_IDLE;
966 else
967 packet_id = V7_PACKET_ID_UNKNOWN;
968
969 return packet_id;
970}
971
972static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt,
973 unsigned char *pkt,
974 unsigned char pkt_id)
975{
976 mt[0].x = ((pkt[2] & 0x80) << 4);
977 mt[0].x |= ((pkt[2] & 0x3F) << 5);
978 mt[0].x |= ((pkt[3] & 0x30) >> 1);
979 mt[0].x |= (pkt[3] & 0x07);
980 mt[0].y = (pkt[1] << 3) | (pkt[0] & 0x07);
981
982 mt[1].x = ((pkt[3] & 0x80) << 4);
983 mt[1].x |= ((pkt[4] & 0x80) << 3);
984 mt[1].x |= ((pkt[4] & 0x3F) << 4);
985 mt[1].y = ((pkt[5] & 0x80) << 3);
986 mt[1].y |= ((pkt[5] & 0x3F) << 4);
987
988 switch (pkt_id) {
989 case V7_PACKET_ID_TWO:
990 mt[1].x &= ~0x000F;
991 mt[1].y |= 0x000F;
Hans de Goede72eceab2015-05-20 14:37:41 -0700992 /* Detect false-postive touches where x & y report max value */
993 if (mt[1].y == 0x7ff && mt[1].x == 0xff0) {
994 mt[1].x = 0;
995 /* y gets set to 0 at the end of this function */
996 }
Yunkang Tang38088432014-07-26 13:51:41 -0700997 break;
998
999 case V7_PACKET_ID_MULTI:
1000 mt[1].x &= ~0x003F;
1001 mt[1].y &= ~0x0020;
1002 mt[1].y |= ((pkt[4] & 0x02) << 4);
1003 mt[1].y |= 0x001F;
1004 break;
1005
1006 case V7_PACKET_ID_NEW:
1007 mt[1].x &= ~0x003F;
1008 mt[1].x |= (pkt[0] & 0x20);
1009 mt[1].y |= 0x000F;
1010 break;
1011 }
1012
1013 mt[0].y = 0x7FF - mt[0].y;
1014 mt[1].y = 0x7FF - mt[1].y;
1015}
1016
1017static int alps_get_mt_count(struct input_mt_pos *mt)
1018{
Hans de Goede7091c442014-12-18 09:53:34 -08001019 int i, fingers = 0;
Yunkang Tang38088432014-07-26 13:51:41 -07001020
Hans de Goede7091c442014-12-18 09:53:34 -08001021 for (i = 0; i < MAX_TOUCHES; i++) {
1022 if (mt[i].x != 0 || mt[i].y != 0)
1023 fingers++;
1024 }
Yunkang Tang38088432014-07-26 13:51:41 -07001025
Hans de Goede7091c442014-12-18 09:53:34 -08001026 return fingers;
Yunkang Tang38088432014-07-26 13:51:41 -07001027}
1028
1029static int alps_decode_packet_v7(struct alps_fields *f,
1030 unsigned char *p,
1031 struct psmouse *psmouse)
1032{
Hans de Goeded27eb792014-12-18 09:55:14 -08001033 struct alps_data *priv = psmouse->private;
Yunkang Tang38088432014-07-26 13:51:41 -07001034 unsigned char pkt_id;
1035
1036 pkt_id = alps_get_packet_id_v7(p);
1037 if (pkt_id == V7_PACKET_ID_IDLE)
1038 return 0;
1039 if (pkt_id == V7_PACKET_ID_UNKNOWN)
1040 return -1;
Hans de Goede8b238112014-12-18 09:52:59 -08001041 /*
1042 * NEW packets are send to indicate a discontinuity in the finger
1043 * coordinate reporting. Specifically a finger may have moved from
1044 * slot 0 to 1 or vice versa. INPUT_MT_TRACK takes care of this for
1045 * us.
1046 *
1047 * NEW packets have 3 problems:
1048 * 1) They do not contain middle / right button info (on non clickpads)
1049 * this can be worked around by preserving the old button state
1050 * 2) They do not contain an accurate fingercount, and they are
1051 * typically send when the number of fingers changes. We cannot use
1052 * the old finger count as that may mismatch with the amount of
1053 * touch coordinates we've available in the NEW packet
1054 * 3) Their x data for the second touch is inaccurate leading to
1055 * a possible jump of the x coordinate by 16 units when the first
1056 * non NEW packet comes in
1057 * Since problems 2 & 3 cannot be worked around, just ignore them.
1058 */
1059 if (pkt_id == V7_PACKET_ID_NEW)
1060 return 1;
Yunkang Tang38088432014-07-26 13:51:41 -07001061
1062 alps_get_finger_coordinate_v7(f->mt, p, pkt_id);
1063
Yunkang Tang38088432014-07-26 13:51:41 -07001064 if (pkt_id == V7_PACKET_ID_TWO)
1065 f->fingers = alps_get_mt_count(f->mt);
Hans de Goede8b238112014-12-18 09:52:59 -08001066 else /* pkt_id == V7_PACKET_ID_MULTI */
Yunkang Tang38088432014-07-26 13:51:41 -07001067 f->fingers = 3 + (p[5] & 0x03);
1068
Hans de Goeded27eb792014-12-18 09:55:14 -08001069 f->left = (p[0] & 0x80) >> 7;
1070 if (priv->flags & ALPS_BUTTONPAD) {
1071 if (p[0] & 0x20)
1072 f->fingers++;
1073 if (p[0] & 0x10)
1074 f->fingers++;
1075 } else {
1076 f->right = (p[0] & 0x20) >> 5;
1077 f->middle = (p[0] & 0x10) >> 4;
1078 }
1079
Hans de Goede7091c442014-12-18 09:53:34 -08001080 /* Sometimes a single touch is reported in mt[1] rather then mt[0] */
1081 if (f->fingers == 1 && f->mt[0].x == 0 && f->mt[0].y == 0) {
1082 f->mt[0].x = f->mt[1].x;
1083 f->mt[0].y = f->mt[1].y;
1084 f->mt[1].x = 0;
1085 f->mt[1].y = 0;
1086 }
1087
Yunkang Tang38088432014-07-26 13:51:41 -07001088 return 0;
1089}
1090
1091static void alps_process_trackstick_packet_v7(struct psmouse *psmouse)
1092{
1093 struct alps_data *priv = psmouse->private;
1094 unsigned char *packet = psmouse->packet;
1095 struct input_dev *dev2 = priv->dev2;
1096 int x, y, z, left, right, middle;
1097
Pali Rohár34412ba2015-01-09 12:48:58 -08001098 /* It should be a DualPoint when received trackstick packet */
1099 if (!(priv->flags & ALPS_DUALPOINT)) {
1100 psmouse_warn(psmouse,
1101 "Rejected trackstick packet from non DualPoint device");
1102 return;
1103 }
1104
Yunkang Tang38088432014-07-26 13:51:41 -07001105 x = ((packet[2] & 0xbf)) | ((packet[3] & 0x10) << 2);
1106 y = (packet[3] & 0x07) | (packet[4] & 0xb8) |
1107 ((packet[3] & 0x20) << 1);
1108 z = (packet[5] & 0x3f) | ((packet[3] & 0x80) >> 1);
1109
1110 left = (packet[1] & 0x01);
1111 right = (packet[1] & 0x02) >> 1;
1112 middle = (packet[1] & 0x04) >> 2;
1113
Hans de Goede088df2c2015-06-04 22:31:43 -07001114 input_report_rel(dev2, REL_X, (char)x);
1115 input_report_rel(dev2, REL_Y, -((char)y));
Yunkang Tang38088432014-07-26 13:51:41 -07001116
1117 input_report_key(dev2, BTN_LEFT, left);
1118 input_report_key(dev2, BTN_RIGHT, right);
1119 input_report_key(dev2, BTN_MIDDLE, middle);
1120
1121 input_sync(dev2);
1122}
1123
1124static void alps_process_touchpad_packet_v7(struct psmouse *psmouse)
1125{
1126 struct alps_data *priv = psmouse->private;
1127 struct input_dev *dev = psmouse->dev;
1128 struct alps_fields *f = &priv->f;
1129
1130 memset(f, 0, sizeof(*f));
1131
1132 if (priv->decode_fields(f, psmouse->packet, psmouse))
1133 return;
1134
1135 alps_report_mt_data(psmouse, alps_get_mt_count(f->mt));
1136
1137 input_mt_report_finger_count(dev, f->fingers);
1138
1139 input_report_key(dev, BTN_LEFT, f->left);
1140 input_report_key(dev, BTN_RIGHT, f->right);
1141 input_report_key(dev, BTN_MIDDLE, f->middle);
1142
1143 input_sync(dev);
1144}
1145
1146static void alps_process_packet_v7(struct psmouse *psmouse)
1147{
1148 unsigned char *packet = psmouse->packet;
1149
1150 if (packet[0] == 0x48 && (packet[4] & 0x47) == 0x06)
1151 alps_process_trackstick_packet_v7(psmouse);
1152 else
1153 alps_process_touchpad_packet_v7(psmouse);
1154}
1155
Paul Donohue23fce362016-11-28 20:16:21 -08001156static enum SS4_PACKET_ID alps_get_pkt_id_ss4_v2(unsigned char *byte)
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001157{
Paul Donohue23fce362016-11-28 20:16:21 -08001158 enum SS4_PACKET_ID pkt_id = SS4_PACKET_ID_IDLE;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001159
Ben Gamari4777ac22016-10-04 11:33:25 -07001160 switch (byte[3] & 0x30) {
1161 case 0x00:
Paul Donohue23fce362016-11-28 20:16:21 -08001162 if (SS4_IS_IDLE_V2(byte)) {
Ben Gamari4777ac22016-10-04 11:33:25 -07001163 pkt_id = SS4_PACKET_ID_IDLE;
1164 } else {
1165 pkt_id = SS4_PACKET_ID_ONE;
1166 }
1167 break;
1168 case 0x10:
1169 /* two-finger finger positions */
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001170 pkt_id = SS4_PACKET_ID_TWO;
Ben Gamari4777ac22016-10-04 11:33:25 -07001171 break;
1172 case 0x20:
1173 /* stick pointer */
1174 pkt_id = SS4_PACKET_ID_STICK;
1175 break;
1176 case 0x30:
1177 /* third and fourth finger positions */
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001178 pkt_id = SS4_PACKET_ID_MULTI;
Ben Gamari4777ac22016-10-04 11:33:25 -07001179 break;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001180 }
1181
1182 return pkt_id;
1183}
1184
1185static int alps_decode_ss4_v2(struct alps_fields *f,
1186 unsigned char *p, struct psmouse *psmouse)
1187{
1188 struct alps_data *priv = psmouse->private;
Paul Donohue23fce362016-11-28 20:16:21 -08001189 enum SS4_PACKET_ID pkt_id;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001190 unsigned int no_data_x, no_data_y;
1191
1192 pkt_id = alps_get_pkt_id_ss4_v2(p);
1193
1194 /* Current packet is 1Finger coordinate packet */
1195 switch (pkt_id) {
1196 case SS4_PACKET_ID_ONE:
1197 f->mt[0].x = SS4_1F_X_V2(p);
1198 f->mt[0].y = SS4_1F_Y_V2(p);
1199 f->pressure = ((SS4_1F_Z_V2(p)) * 2) & 0x7f;
Ben Gamaria8317762016-10-04 11:40:44 -07001200 /*
1201 * When a button is held the device will give us events
1202 * with x, y, and pressure of 0. This causes annoying jumps
1203 * if a touch is released while the button is held.
1204 * Handle this by claiming zero contacts.
1205 */
1206 f->fingers = f->pressure > 0 ? 1 : 0;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001207 f->first_mp = 0;
1208 f->is_mp = 0;
1209 break;
1210
1211 case SS4_PACKET_ID_TWO:
1212 if (priv->flags & ALPS_BUTTONPAD) {
1213 f->mt[0].x = SS4_BTL_MF_X_V2(p, 0);
1214 f->mt[0].y = SS4_BTL_MF_Y_V2(p, 0);
1215 f->mt[1].x = SS4_BTL_MF_X_V2(p, 1);
1216 f->mt[1].y = SS4_BTL_MF_Y_V2(p, 1);
1217 } else {
1218 f->mt[0].x = SS4_STD_MF_X_V2(p, 0);
1219 f->mt[0].y = SS4_STD_MF_Y_V2(p, 0);
1220 f->mt[1].x = SS4_STD_MF_X_V2(p, 1);
1221 f->mt[1].y = SS4_STD_MF_Y_V2(p, 1);
1222 }
1223 f->pressure = SS4_MF_Z_V2(p, 0) ? 0x30 : 0;
1224
1225 if (SS4_IS_MF_CONTINUE(p)) {
1226 f->first_mp = 1;
1227 } else {
1228 f->fingers = 2;
1229 f->first_mp = 0;
1230 }
1231 f->is_mp = 0;
1232
1233 break;
1234
1235 case SS4_PACKET_ID_MULTI:
1236 if (priv->flags & ALPS_BUTTONPAD) {
1237 f->mt[2].x = SS4_BTL_MF_X_V2(p, 0);
1238 f->mt[2].y = SS4_BTL_MF_Y_V2(p, 0);
1239 f->mt[3].x = SS4_BTL_MF_X_V2(p, 1);
1240 f->mt[3].y = SS4_BTL_MF_Y_V2(p, 1);
1241 no_data_x = SS4_MFPACKET_NO_AX_BL;
1242 no_data_y = SS4_MFPACKET_NO_AY_BL;
1243 } else {
1244 f->mt[2].x = SS4_STD_MF_X_V2(p, 0);
1245 f->mt[2].y = SS4_STD_MF_Y_V2(p, 0);
1246 f->mt[3].x = SS4_STD_MF_X_V2(p, 1);
1247 f->mt[3].y = SS4_STD_MF_Y_V2(p, 1);
1248 no_data_x = SS4_MFPACKET_NO_AX;
1249 no_data_y = SS4_MFPACKET_NO_AY;
1250 }
1251
1252 f->first_mp = 0;
1253 f->is_mp = 1;
1254
1255 if (SS4_IS_5F_DETECTED(p)) {
1256 f->fingers = 5;
1257 } else if (f->mt[3].x == no_data_x &&
1258 f->mt[3].y == no_data_y) {
1259 f->mt[3].x = 0;
1260 f->mt[3].y = 0;
1261 f->fingers = 3;
1262 } else {
1263 f->fingers = 4;
1264 }
1265 break;
1266
Ben Gamari4777ac22016-10-04 11:33:25 -07001267 case SS4_PACKET_ID_STICK:
Paul Donohue7229c582016-11-28 20:13:47 -08001268 /*
1269 * x, y, and pressure are decoded in
1270 * alps_process_packet_ss4_v2()
1271 */
1272 f->first_mp = 0;
1273 f->is_mp = 0;
Ben Gamari4777ac22016-10-04 11:33:25 -07001274 break;
1275
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001276 case SS4_PACKET_ID_IDLE:
1277 default:
1278 memset(f, 0, sizeof(struct alps_fields));
1279 break;
1280 }
1281
Ben Gamari4777ac22016-10-04 11:33:25 -07001282 /* handle buttons */
1283 if (pkt_id == SS4_PACKET_ID_STICK) {
1284 f->ts_left = !!(SS4_BTN_V2(p) & 0x01);
Masaki Ota47e6fb42017-03-17 14:19:40 -07001285 f->ts_right = !!(SS4_BTN_V2(p) & 0x02);
1286 f->ts_middle = !!(SS4_BTN_V2(p) & 0x04);
Ben Gamari4777ac22016-10-04 11:33:25 -07001287 } else {
1288 f->left = !!(SS4_BTN_V2(p) & 0x01);
1289 if (!(priv->flags & ALPS_BUTTONPAD)) {
1290 f->right = !!(SS4_BTN_V2(p) & 0x02);
1291 f->middle = !!(SS4_BTN_V2(p) & 0x04);
1292 }
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001293 }
1294
1295 return 0;
1296}
1297
1298static void alps_process_packet_ss4_v2(struct psmouse *psmouse)
1299{
1300 struct alps_data *priv = psmouse->private;
1301 unsigned char *packet = psmouse->packet;
1302 struct input_dev *dev = psmouse->dev;
Ben Gamari4777ac22016-10-04 11:33:25 -07001303 struct input_dev *dev2 = priv->dev2;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001304 struct alps_fields *f = &priv->f;
1305
1306 memset(f, 0, sizeof(struct alps_fields));
1307 priv->decode_fields(f, packet, psmouse);
1308 if (priv->multi_packet) {
1309 /*
1310 * Sometimes the first packet will indicate a multi-packet
1311 * sequence, but sometimes the next multi-packet would not
1312 * come. Check for this, and when it happens process the
1313 * position packet as usual.
1314 */
1315 if (f->is_mp) {
1316 /* Now process the 1st packet */
1317 priv->decode_fields(f, priv->multi_data, psmouse);
1318 } else {
1319 priv->multi_packet = 0;
1320 }
1321 }
1322
1323 /*
1324 * "f.is_mp" would always be '0' after merging the 1st and 2nd packet.
1325 * When it is set, it means 2nd packet comes without 1st packet come.
1326 */
1327 if (f->is_mp)
1328 return;
1329
1330 /* Save the first packet */
1331 if (!priv->multi_packet && f->first_mp) {
1332 priv->multi_packet = 1;
1333 memcpy(priv->multi_data, packet, sizeof(priv->multi_data));
1334 return;
1335 }
1336
1337 priv->multi_packet = 0;
1338
Paul Donohue864db922016-11-28 20:11:25 -08001339 /* Report trackstick */
1340 if (alps_get_pkt_id_ss4_v2(packet) == SS4_PACKET_ID_STICK) {
Paul Donohue7229c582016-11-28 20:13:47 -08001341 if (!(priv->flags & ALPS_DUALPOINT)) {
1342 psmouse_warn(psmouse,
1343 "Rejected trackstick packet from non DualPoint device");
1344 return;
Paul Donohue864db922016-11-28 20:11:25 -08001345 }
Paul Donohue7229c582016-11-28 20:13:47 -08001346
Paul Donohue23fce362016-11-28 20:16:21 -08001347 input_report_rel(dev2, REL_X, SS4_TS_X_V2(packet));
1348 input_report_rel(dev2, REL_Y, SS4_TS_Y_V2(packet));
1349 input_report_abs(dev2, ABS_PRESSURE, SS4_TS_Z_V2(packet));
Paul Donohue7229c582016-11-28 20:13:47 -08001350
1351 input_report_key(dev2, BTN_LEFT, f->ts_left);
1352 input_report_key(dev2, BTN_RIGHT, f->ts_right);
1353 input_report_key(dev2, BTN_MIDDLE, f->ts_middle);
1354
1355 input_sync(dev2);
Paul Donohue864db922016-11-28 20:11:25 -08001356 return;
1357 }
1358
1359 /* Report touchpad */
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001360 alps_report_mt_data(psmouse, (f->fingers <= 4) ? f->fingers : 4);
1361
1362 input_mt_report_finger_count(dev, f->fingers);
1363
1364 input_report_key(dev, BTN_LEFT, f->left);
1365 input_report_key(dev, BTN_RIGHT, f->right);
1366 input_report_key(dev, BTN_MIDDLE, f->middle);
1367
1368 input_report_abs(dev, ABS_PRESSURE, f->pressure);
1369 input_sync(dev);
1370}
1371
1372static bool alps_is_valid_package_ss4_v2(struct psmouse *psmouse)
1373{
1374 if (psmouse->pktcnt == 4 && ((psmouse->packet[3] & 0x08) != 0x08))
1375 return false;
1376 if (psmouse->pktcnt == 6 && ((psmouse->packet[5] & 0x10) != 0x0))
1377 return false;
1378 return true;
1379}
1380
Pali Rohár04aae282015-01-14 13:18:30 -08001381static DEFINE_MUTEX(alps_mutex);
1382
1383static void alps_register_bare_ps2_mouse(struct work_struct *work)
1384{
1385 struct alps_data *priv =
1386 container_of(work, struct alps_data, dev3_register_work.work);
1387 struct psmouse *psmouse = priv->psmouse;
1388 struct input_dev *dev3;
1389 int error = 0;
1390
1391 mutex_lock(&alps_mutex);
1392
1393 if (priv->dev3)
1394 goto out;
1395
1396 dev3 = input_allocate_device();
1397 if (!dev3) {
1398 psmouse_err(psmouse, "failed to allocate secondary device\n");
1399 error = -ENOMEM;
1400 goto out;
1401 }
1402
1403 snprintf(priv->phys3, sizeof(priv->phys3), "%s/%s",
1404 psmouse->ps2dev.serio->phys,
1405 (priv->dev2 ? "input2" : "input1"));
1406 dev3->phys = priv->phys3;
1407
1408 /*
1409 * format of input device name is: "protocol vendor name"
1410 * see function psmouse_switch_protocol() in psmouse-base.c
1411 */
1412 dev3->name = "PS/2 ALPS Mouse";
1413
1414 dev3->id.bustype = BUS_I8042;
1415 dev3->id.vendor = 0x0002;
1416 dev3->id.product = PSMOUSE_PS2;
1417 dev3->id.version = 0x0000;
1418 dev3->dev.parent = &psmouse->ps2dev.serio->dev;
1419
1420 input_set_capability(dev3, EV_REL, REL_X);
1421 input_set_capability(dev3, EV_REL, REL_Y);
1422 input_set_capability(dev3, EV_KEY, BTN_LEFT);
1423 input_set_capability(dev3, EV_KEY, BTN_RIGHT);
1424 input_set_capability(dev3, EV_KEY, BTN_MIDDLE);
1425
1426 __set_bit(INPUT_PROP_POINTER, dev3->propbit);
1427
1428 error = input_register_device(dev3);
1429 if (error) {
1430 psmouse_err(psmouse,
1431 "failed to register secondary device: %d\n",
1432 error);
1433 input_free_device(dev3);
1434 goto out;
1435 }
1436
1437 priv->dev3 = dev3;
1438
1439out:
1440 /*
1441 * Save the error code so that we can detect that we
1442 * already tried to create the device.
1443 */
1444 if (error)
1445 priv->dev3 = ERR_PTR(error);
1446
1447 mutex_unlock(&alps_mutex);
1448}
1449
Hans de Goede59c30af2015-04-03 17:14:40 -07001450static void alps_report_bare_ps2_packet(struct psmouse *psmouse,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001451 unsigned char packet[],
1452 bool report_buttons)
1453{
Hans de Goede59c30af2015-04-03 17:14:40 -07001454 struct alps_data *priv = psmouse->private;
Hans de Goede6bcca192015-04-08 09:26:42 -07001455 struct input_dev *dev, *dev2 = NULL;
Hans de Goede59c30af2015-04-03 17:14:40 -07001456
Hans de Goedee3a79212015-04-03 17:20:05 -07001457 /* Figure out which device to use to report the bare packet */
1458 if (priv->proto_version == ALPS_PROTO_V2 &&
1459 (priv->flags & ALPS_DUALPOINT)) {
1460 /* On V2 devices the DualPoint Stick reports bare packets */
1461 dev = priv->dev2;
Hans de Goede6bcca192015-04-08 09:26:42 -07001462 dev2 = psmouse->dev;
Hans de Goedee3a79212015-04-03 17:20:05 -07001463 } else if (unlikely(IS_ERR_OR_NULL(priv->dev3))) {
Hans de Goede59c30af2015-04-03 17:14:40 -07001464 /* Register dev3 mouse if we received PS/2 packet first time */
1465 if (!IS_ERR(priv->dev3))
1466 psmouse_queue_work(psmouse, &priv->dev3_register_work,
1467 0);
1468 return;
1469 } else {
1470 dev = priv->dev3;
1471 }
1472
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001473 if (report_buttons)
Hans de Goede6bcca192015-04-08 09:26:42 -07001474 alps_report_buttons(dev, dev2,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001475 packet[0] & 1, packet[0] & 2, packet[0] & 4);
1476
Pali Rohár04aae282015-01-14 13:18:30 -08001477 input_report_rel(dev, REL_X,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001478 packet[1] ? packet[1] - ((packet[0] << 4) & 0x100) : 0);
Pali Rohár04aae282015-01-14 13:18:30 -08001479 input_report_rel(dev, REL_Y,
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001480 packet[2] ? ((packet[0] << 3) & 0x100) - packet[2] : 0);
1481
Pali Rohár04aae282015-01-14 13:18:30 -08001482 input_sync(dev);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001483}
1484
1485static psmouse_ret_t alps_handle_interleaved_ps2(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 struct alps_data *priv = psmouse->private;
1488
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001489 if (psmouse->pktcnt < 6)
1490 return PSMOUSE_GOOD_DATA;
1491
1492 if (psmouse->pktcnt == 6) {
1493 /*
1494 * Start a timer to flush the packet if it ends up last
1495 * 6-byte packet in the stream. Timer needs to fire
1496 * psmouse core times out itself. 20 ms should be enough
1497 * to decide if we are getting more data or not.
1498 */
1499 mod_timer(&priv->timer, jiffies + msecs_to_jiffies(20));
1500 return PSMOUSE_GOOD_DATA;
1501 }
1502
1503 del_timer(&priv->timer);
1504
1505 if (psmouse->packet[6] & 0x80) {
1506
1507 /*
1508 * Highest bit is set - that means we either had
1509 * complete ALPS packet and this is start of the
1510 * next packet or we got garbage.
1511 */
1512
1513 if (((psmouse->packet[3] |
1514 psmouse->packet[4] |
1515 psmouse->packet[5]) & 0x80) ||
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001516 (!alps_is_valid_first_byte(priv, psmouse->packet[6]))) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001517 psmouse_dbg(psmouse,
Andy Shevchenko3b112922012-10-30 00:24:41 -07001518 "refusing packet %4ph (suspected interleaved ps/2)\n",
1519 psmouse->packet + 3);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001520 return PSMOUSE_BAD_DATA;
1521 }
1522
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08001523 priv->process_packet(psmouse);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001524
1525 /* Continue with the next packet */
1526 psmouse->packet[0] = psmouse->packet[6];
1527 psmouse->pktcnt = 1;
1528
1529 } else {
1530
1531 /*
1532 * High bit is 0 - that means that we indeed got a PS/2
1533 * packet in the middle of ALPS packet.
1534 *
1535 * There is also possibility that we got 6-byte ALPS
1536 * packet followed by 3-byte packet from trackpoint. We
1537 * can not distinguish between these 2 scenarios but
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001538 * because the latter is unlikely to happen in course of
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001539 * normal operation (user would need to press all
1540 * buttons on the pad and start moving trackpoint
1541 * without touching the pad surface) we assume former.
1542 * Even if we are wrong the wost thing that would happen
1543 * the cursor would jump but we should not get protocol
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001544 * de-synchronization.
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001545 */
1546
Hans de Goede59c30af2015-04-03 17:14:40 -07001547 alps_report_bare_ps2_packet(psmouse, &psmouse->packet[3],
1548 false);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001549
1550 /*
1551 * Continue with the standard ALPS protocol handling,
1552 * but make sure we won't process it as an interleaved
1553 * packet again, which may happen if all buttons are
1554 * pressed. To avoid this let's reset the 4th bit which
1555 * is normally 1.
1556 */
1557 psmouse->packet[3] = psmouse->packet[6] & 0xf7;
1558 psmouse->pktcnt = 4;
1559 }
1560
1561 return PSMOUSE_GOOD_DATA;
1562}
1563
1564static void alps_flush_packet(unsigned long data)
1565{
1566 struct psmouse *psmouse = (struct psmouse *)data;
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08001567 struct alps_data *priv = psmouse->private;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001568
1569 serio_pause_rx(psmouse->ps2dev.serio);
1570
Seth Forsheeb46615f2011-11-07 19:53:30 -08001571 if (psmouse->pktcnt == psmouse->pktsize) {
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001572
1573 /*
1574 * We did not any more data in reasonable amount of time.
1575 * Validate the last 3 bytes and process as a standard
1576 * ALPS packet.
1577 */
1578 if ((psmouse->packet[3] |
1579 psmouse->packet[4] |
1580 psmouse->packet[5]) & 0x80) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001581 psmouse_dbg(psmouse,
Andy Shevchenko3b112922012-10-30 00:24:41 -07001582 "refusing packet %3ph (suspected interleaved ps/2)\n",
1583 psmouse->packet + 3);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001584 } else {
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08001585 priv->process_packet(psmouse);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001586 }
1587 psmouse->pktcnt = 0;
1588 }
1589
1590 serio_continue_rx(psmouse->ps2dev.serio);
1591}
1592
1593static psmouse_ret_t alps_process_byte(struct psmouse *psmouse)
1594{
1595 struct alps_data *priv = psmouse->private;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001596
Pali Rohár4ab8f7f2014-11-08 12:45:23 -08001597 /*
1598 * Check if we are dealing with a bare PS/2 packet, presumably from
1599 * a device connected to the external PS/2 port. Because bare PS/2
1600 * protocol does not have enough constant bits to self-synchronize
1601 * properly we only do this if the device is fully synchronized.
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001602 * Can not distinguish V8's first byte from PS/2 packet's
Pali Rohár4ab8f7f2014-11-08 12:45:23 -08001603 */
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001604 if (priv->proto_version != ALPS_PROTO_V8 &&
1605 !psmouse->out_of_sync_cnt &&
1606 (psmouse->packet[0] & 0xc8) == 0x08) {
1607
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (psmouse->pktcnt == 3) {
Hans de Goede59c30af2015-04-03 17:14:40 -07001609 alps_report_bare_ps2_packet(psmouse, psmouse->packet,
1610 true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return PSMOUSE_FULL_PACKET;
1612 }
1613 return PSMOUSE_GOOD_DATA;
1614 }
1615
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001616 /* Check for PS/2 packet stuffed in the middle of ALPS packet. */
1617
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001618 if ((priv->flags & ALPS_PS2_INTERLEAVED) &&
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001619 psmouse->pktcnt >= 4 && (psmouse->packet[3] & 0x0f) == 0x0f) {
1620 return alps_handle_interleaved_ps2(psmouse);
1621 }
1622
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001623 if (!alps_is_valid_first_byte(priv, psmouse->packet[0])) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001624 psmouse_dbg(psmouse,
1625 "refusing packet[0] = %x (mask0 = %x, byte0 = %x)\n",
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001626 psmouse->packet[0], priv->mask0, priv->byte0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return PSMOUSE_BAD_DATA;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Seth Forsheeb46615f2011-11-07 19:53:30 -08001630 /* Bytes 2 - pktsize should have 0 in the highest bit */
Pali Rohára7ef82a2014-11-08 23:36:09 -08001631 if (priv->proto_version < ALPS_PROTO_V5 &&
Dave Turvene75af9e52013-02-21 22:58:28 -08001632 psmouse->pktcnt >= 2 && psmouse->pktcnt <= psmouse->pktsize &&
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001633 (psmouse->packet[psmouse->pktcnt - 1] & 0x80)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07001634 psmouse_dbg(psmouse, "refusing packet[%i] = %x\n",
1635 psmouse->pktcnt - 1,
1636 psmouse->packet[psmouse->pktcnt - 1]);
Pali Rohára7ef82a2014-11-08 23:36:09 -08001637
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -08001638 if (priv->proto_version == ALPS_PROTO_V3_RUSHMORE &&
Pali Rohára7ef82a2014-11-08 23:36:09 -08001639 psmouse->pktcnt == psmouse->pktsize) {
1640 /*
1641 * Some Dell boxes, such as Latitude E6440 or E7440
1642 * with closed lid, quite often smash last byte of
1643 * otherwise valid packet with 0xff. Given that the
1644 * next packet is very likely to be valid let's
1645 * report PSMOUSE_FULL_PACKET but not process data,
1646 * rather than reporting PSMOUSE_BAD_DATA and
1647 * filling the logs.
1648 */
1649 return PSMOUSE_FULL_PACKET;
1650 }
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 return PSMOUSE_BAD_DATA;
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08001653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654
Masaki Ota3db5b9f2015-03-27 20:57:52 -07001655 if ((priv->proto_version == ALPS_PROTO_V7 &&
1656 !alps_is_valid_package_v7(psmouse)) ||
1657 (priv->proto_version == ALPS_PROTO_V8 &&
1658 !alps_is_valid_package_ss4_v2(psmouse))) {
Yunkang Tang38088432014-07-26 13:51:41 -07001659 psmouse_dbg(psmouse, "refusing packet[%i] = %x\n",
1660 psmouse->pktcnt - 1,
1661 psmouse->packet[psmouse->pktcnt - 1]);
1662 return PSMOUSE_BAD_DATA;
1663 }
1664
Seth Forsheeb46615f2011-11-07 19:53:30 -08001665 if (psmouse->pktcnt == psmouse->pktsize) {
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08001666 priv->process_packet(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return PSMOUSE_FULL_PACKET;
1668 }
1669
1670 return PSMOUSE_GOOD_DATA;
1671}
1672
Seth Forshee25bded72011-11-07 19:53:36 -08001673static int alps_command_mode_send_nibble(struct psmouse *psmouse, int nibble)
1674{
1675 struct ps2dev *ps2dev = &psmouse->ps2dev;
1676 struct alps_data *priv = psmouse->private;
1677 int command;
1678 unsigned char *param;
1679 unsigned char dummy[4];
1680
1681 BUG_ON(nibble > 0xf);
1682
1683 command = priv->nibble_commands[nibble].command;
1684 param = (command & 0x0f00) ?
1685 dummy : (unsigned char *)&priv->nibble_commands[nibble].data;
1686
1687 if (ps2_command(ps2dev, param, command))
1688 return -1;
1689
1690 return 0;
1691}
1692
1693static int alps_command_mode_set_addr(struct psmouse *psmouse, int addr)
1694{
1695 struct ps2dev *ps2dev = &psmouse->ps2dev;
1696 struct alps_data *priv = psmouse->private;
1697 int i, nibble;
1698
1699 if (ps2_command(ps2dev, NULL, priv->addr_command))
1700 return -1;
1701
1702 for (i = 12; i >= 0; i -= 4) {
1703 nibble = (addr >> i) & 0xf;
1704 if (alps_command_mode_send_nibble(psmouse, nibble))
1705 return -1;
1706 }
1707
1708 return 0;
1709}
1710
1711static int __alps_command_mode_read_reg(struct psmouse *psmouse, int addr)
1712{
1713 struct ps2dev *ps2dev = &psmouse->ps2dev;
1714 unsigned char param[4];
1715
1716 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO))
1717 return -1;
1718
1719 /*
1720 * The address being read is returned in the first two bytes
1721 * of the result. Check that this address matches the expected
1722 * address.
1723 */
1724 if (addr != ((param[0] << 8) | param[1]))
1725 return -1;
1726
1727 return param[2];
1728}
1729
1730static int alps_command_mode_read_reg(struct psmouse *psmouse, int addr)
1731{
1732 if (alps_command_mode_set_addr(psmouse, addr))
1733 return -1;
1734 return __alps_command_mode_read_reg(psmouse, addr);
1735}
1736
1737static int __alps_command_mode_write_reg(struct psmouse *psmouse, u8 value)
1738{
1739 if (alps_command_mode_send_nibble(psmouse, (value >> 4) & 0xf))
1740 return -1;
1741 if (alps_command_mode_send_nibble(psmouse, value & 0xf))
1742 return -1;
1743 return 0;
1744}
1745
1746static int alps_command_mode_write_reg(struct psmouse *psmouse, int addr,
1747 u8 value)
1748{
1749 if (alps_command_mode_set_addr(psmouse, addr))
1750 return -1;
1751 return __alps_command_mode_write_reg(psmouse, value);
1752}
1753
Kevin Cernekee24ba9702013-02-13 22:19:01 -08001754static int alps_rpt_cmd(struct psmouse *psmouse, int init_command,
1755 int repeated_command, unsigned char *param)
1756{
1757 struct ps2dev *ps2dev = &psmouse->ps2dev;
1758
1759 param[0] = 0;
1760 if (init_command && ps2_command(ps2dev, param, init_command))
1761 return -EIO;
1762
1763 if (ps2_command(ps2dev, NULL, repeated_command) ||
1764 ps2_command(ps2dev, NULL, repeated_command) ||
1765 ps2_command(ps2dev, NULL, repeated_command))
1766 return -EIO;
1767
1768 param[0] = param[1] = param[2] = 0xff;
1769 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO))
1770 return -EIO;
1771
Dmitry Torokhov39fbe582013-02-14 09:04:24 -08001772 psmouse_dbg(psmouse, "%2.2X report: %3ph\n",
1773 repeated_command, param);
Kevin Cernekee24ba9702013-02-13 22:19:01 -08001774 return 0;
1775}
1776
Yunkang Tang38088432014-07-26 13:51:41 -07001777static bool alps_check_valid_firmware_id(unsigned char id[])
1778{
1779 if (id[0] == 0x73)
1780 return true;
1781
1782 if (id[0] == 0x88 &&
1783 (id[1] == 0x07 ||
1784 id[1] == 0x08 ||
1785 (id[1] & 0xf0) == 0xb0 ||
1786 (id[1] & 0xf0) == 0xc0)) {
1787 return true;
1788 }
1789
1790 return false;
1791}
1792
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08001793static int alps_enter_command_mode(struct psmouse *psmouse)
Seth Forshee25bded72011-11-07 19:53:36 -08001794{
1795 unsigned char param[4];
Seth Forshee25bded72011-11-07 19:53:36 -08001796
Kevin Cernekee24ba9702013-02-13 22:19:01 -08001797 if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_RESET_WRAP, param)) {
Seth Forshee25bded72011-11-07 19:53:36 -08001798 psmouse_err(psmouse, "failed to enter command mode\n");
1799 return -1;
1800 }
1801
Yunkang Tang38088432014-07-26 13:51:41 -07001802 if (!alps_check_valid_firmware_id(param)) {
Seth Forshee25bded72011-11-07 19:53:36 -08001803 psmouse_dbg(psmouse,
Kevin Cernekee24ba9702013-02-13 22:19:01 -08001804 "unknown response while entering command mode\n");
Seth Forshee25bded72011-11-07 19:53:36 -08001805 return -1;
1806 }
Seth Forshee25bded72011-11-07 19:53:36 -08001807 return 0;
1808}
1809
1810static inline int alps_exit_command_mode(struct psmouse *psmouse)
1811{
1812 struct ps2dev *ps2dev = &psmouse->ps2dev;
1813 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM))
1814 return -1;
1815 return 0;
1816}
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818/*
1819 * For DualPoint devices select the device that should respond to
1820 * subsequent commands. It looks like glidepad is behind stickpointer,
1821 * I'd thought it would be other way around...
1822 */
Seth Forshee25bded72011-11-07 19:53:36 -08001823static int alps_passthrough_mode_v2(struct psmouse *psmouse, bool enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 struct ps2dev *ps2dev = &psmouse->ps2dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 int cmd = enable ? PSMOUSE_CMD_SETSCALE21 : PSMOUSE_CMD_SETSCALE11;
1827
1828 if (ps2_command(ps2dev, NULL, cmd) ||
1829 ps2_command(ps2dev, NULL, cmd) ||
1830 ps2_command(ps2dev, NULL, cmd) ||
1831 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE))
1832 return -1;
1833
1834 /* we may get 3 more bytes, just ignore them */
Dmitry Torokhovc6117632005-06-01 02:39:51 -05001835 ps2_drain(ps2dev, 3, 100);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837 return 0;
1838}
1839
Seth Forshee25bded72011-11-07 19:53:36 -08001840static int alps_absolute_mode_v1_v2(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
1842 struct ps2dev *ps2dev = &psmouse->ps2dev;
1843
1844 /* Try ALPS magic knock - 4 disable before enable */
1845 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1846 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1847 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1848 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1849 ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE))
1850 return -1;
1851
1852 /*
1853 * Switch mouse to poll (remote) mode so motion data will not
1854 * get in our way
1855 */
Guenter Roeckad568142017-01-21 23:44:46 -08001856 return ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857}
1858
Yunkang Tang95f75e92013-12-01 22:33:52 -08001859static int alps_monitor_mode_send_word(struct psmouse *psmouse, u16 word)
1860{
1861 int i, nibble;
1862
1863 /*
1864 * b0-b11 are valid bits, send sequence is inverse.
1865 * e.g. when word = 0x0123, nibble send sequence is 3, 2, 1
1866 */
1867 for (i = 0; i <= 8; i += 4) {
1868 nibble = (word >> i) & 0xf;
1869 if (alps_command_mode_send_nibble(psmouse, nibble))
1870 return -1;
1871 }
1872
1873 return 0;
1874}
1875
1876static int alps_monitor_mode_write_reg(struct psmouse *psmouse,
1877 u16 addr, u16 value)
1878{
1879 struct ps2dev *ps2dev = &psmouse->ps2dev;
1880
1881 /* 0x0A0 is the command to write the word */
1882 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE) ||
1883 alps_monitor_mode_send_word(psmouse, 0x0A0) ||
1884 alps_monitor_mode_send_word(psmouse, addr) ||
1885 alps_monitor_mode_send_word(psmouse, value) ||
1886 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE))
1887 return -1;
1888
1889 return 0;
1890}
1891
1892static int alps_monitor_mode(struct psmouse *psmouse, bool enable)
1893{
1894 struct ps2dev *ps2dev = &psmouse->ps2dev;
1895
1896 if (enable) {
1897 /* EC E9 F5 F5 E7 E6 E7 E9 to enter monitor mode */
1898 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) ||
1899 ps2_command(ps2dev, NULL, PSMOUSE_CMD_GETINFO) ||
1900 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1901 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1902 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) ||
1903 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
1904 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) ||
1905 ps2_command(ps2dev, NULL, PSMOUSE_CMD_GETINFO))
1906 return -1;
1907 } else {
1908 /* EC to exit monitor mode */
1909 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP))
1910 return -1;
1911 }
1912
1913 return 0;
1914}
1915
1916static int alps_absolute_mode_v6(struct psmouse *psmouse)
1917{
1918 u16 reg_val = 0x181;
1919 int ret = -1;
1920
1921 /* enter monitor mode, to write the register */
1922 if (alps_monitor_mode(psmouse, true))
1923 return -1;
1924
1925 ret = alps_monitor_mode_write_reg(psmouse, 0x000, reg_val);
1926
1927 if (alps_monitor_mode(psmouse, false))
1928 ret = -1;
1929
1930 return ret;
1931}
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933static int alps_get_status(struct psmouse *psmouse, char *param)
1934{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 /* Get status: 0xF5 0xF5 0xF5 0xE9 */
Kevin Cernekee24ba9702013-02-13 22:19:01 -08001936 if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_DISABLE, param))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return -1;
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return 0;
1940}
1941
1942/*
1943 * Turn touchpad tapping on or off. The sequences are:
1944 * 0xE9 0xF5 0xF5 0xF3 0x0A to enable,
1945 * 0xE9 0xF5 0xF5 0xE8 0x00 to disable.
1946 * My guess that 0xE9 (GetInfo) is here as a sync point.
1947 * For models that also have stickpointer (DualPoints) its tapping
1948 * is controlled separately (0xE6 0xE6 0xE6 0xF3 0x14|0x0A) but
1949 * we don't fiddle with it.
1950 */
1951static int alps_tap_mode(struct psmouse *psmouse, int enable)
1952{
1953 struct ps2dev *ps2dev = &psmouse->ps2dev;
1954 int cmd = enable ? PSMOUSE_CMD_SETRATE : PSMOUSE_CMD_SETRES;
1955 unsigned char tap_arg = enable ? 0x0A : 0x00;
1956 unsigned char param[4];
1957
1958 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO) ||
1959 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1960 ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) ||
1961 ps2_command(ps2dev, &tap_arg, cmd))
1962 return -1;
1963
1964 if (alps_get_status(psmouse, param))
1965 return -1;
1966
1967 return 0;
1968}
1969
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001970/*
1971 * alps_poll() - poll the touchpad for current motion packet.
1972 * Used in resync.
1973 */
1974static int alps_poll(struct psmouse *psmouse)
1975{
1976 struct alps_data *priv = psmouse->private;
Seth Forsheeb46615f2011-11-07 19:53:30 -08001977 unsigned char buf[sizeof(psmouse->packet)];
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07001978 bool poll_failed;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001979
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001980 if (priv->flags & ALPS_PASS)
Seth Forshee25bded72011-11-07 19:53:36 -08001981 alps_passthrough_mode_v2(psmouse, true);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001982
1983 poll_failed = ps2_command(&psmouse->ps2dev, buf,
1984 PSMOUSE_CMD_POLL | (psmouse->pktsize << 8)) < 0;
1985
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001986 if (priv->flags & ALPS_PASS)
Seth Forshee25bded72011-11-07 19:53:36 -08001987 alps_passthrough_mode_v2(psmouse, false);
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001988
Kevin Cernekee99df65e2013-02-13 20:56:33 -08001989 if (poll_failed || (buf[0] & priv->mask0) != priv->byte0)
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05001990 return -1;
1991
1992 if ((psmouse->badbyte & 0xc8) == 0x08) {
1993/*
1994 * Poll the track stick ...
1995 */
1996 if (ps2_command(&psmouse->ps2dev, buf, PSMOUSE_CMD_POLL | (3 << 8)))
1997 return -1;
1998 }
1999
2000 memcpy(psmouse->packet, buf, sizeof(buf));
2001 return 0;
2002}
2003
Seth Forshee25bded72011-11-07 19:53:36 -08002004static int alps_hw_init_v1_v2(struct psmouse *psmouse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005{
2006 struct alps_data *priv = psmouse->private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007
Kevin Cernekee99df65e2013-02-13 20:56:33 -08002008 if ((priv->flags & ALPS_PASS) &&
Seth Forshee25bded72011-11-07 19:53:36 -08002009 alps_passthrough_mode_v2(psmouse, true)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -1;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07002011 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07002013 if (alps_tap_mode(psmouse, true)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07002014 psmouse_warn(psmouse, "Failed to enable hardware tapping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return -1;
Peter Osterlund963f6262005-07-11 01:08:04 -05002016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Seth Forshee25bded72011-11-07 19:53:36 -08002018 if (alps_absolute_mode_v1_v2(psmouse)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07002019 psmouse_err(psmouse, "Failed to enable absolute mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 return -1;
2021 }
2022
Kevin Cernekee99df65e2013-02-13 20:56:33 -08002023 if ((priv->flags & ALPS_PASS) &&
Seth Forshee25bded72011-11-07 19:53:36 -08002024 alps_passthrough_mode_v2(psmouse, false)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 return -1;
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07002026 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04002028 /* ALPS needs stream mode, otherwise it won't report any data */
2029 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSTREAM)) {
Dmitry Torokhovb5d21702011-10-10 18:27:03 -07002030 psmouse_err(psmouse, "Failed to enable stream mode\n");
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04002031 return -1;
2032 }
2033
2034 return 0;
2035}
2036
Yunkang Tang95f75e92013-12-01 22:33:52 -08002037static int alps_hw_init_v6(struct psmouse *psmouse)
2038{
2039 unsigned char param[2] = {0xC8, 0x14};
2040
2041 /* Enter passthrough mode to let trackpoint enter 6byte raw mode */
2042 if (alps_passthrough_mode_v2(psmouse, true))
2043 return -1;
2044
2045 if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2046 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2047 ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2048 ps2_command(&psmouse->ps2dev, &param[0], PSMOUSE_CMD_SETRATE) ||
2049 ps2_command(&psmouse->ps2dev, &param[1], PSMOUSE_CMD_SETRATE))
2050 return -1;
2051
2052 if (alps_passthrough_mode_v2(psmouse, false))
2053 return -1;
2054
2055 if (alps_absolute_mode_v6(psmouse)) {
2056 psmouse_err(psmouse, "Failed to enable absolute mode\n");
2057 return -1;
2058 }
2059
2060 return 0;
2061}
2062
Seth Forshee25bded72011-11-07 19:53:36 -08002063/*
Kevin Cernekeecd401202013-02-13 22:28:07 -08002064 * Enable or disable passthrough mode to the trackstick.
Seth Forshee25bded72011-11-07 19:53:36 -08002065 */
Kevin Cernekeecd401202013-02-13 22:28:07 -08002066static int alps_passthrough_mode_v3(struct psmouse *psmouse,
2067 int reg_base, bool enable)
Seth Forshee25bded72011-11-07 19:53:36 -08002068{
Kevin Cernekeecd401202013-02-13 22:28:07 -08002069 int reg_val, ret = -1;
Seth Forshee25bded72011-11-07 19:53:36 -08002070
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002071 if (alps_enter_command_mode(psmouse))
Seth Forshee25bded72011-11-07 19:53:36 -08002072 return -1;
2073
Kevin Cernekeecd401202013-02-13 22:28:07 -08002074 reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x0008);
2075 if (reg_val == -1)
2076 goto error;
2077
Seth Forshee25bded72011-11-07 19:53:36 -08002078 if (enable)
2079 reg_val |= 0x01;
2080 else
2081 reg_val &= ~0x01;
2082
Kevin Cernekeecd401202013-02-13 22:28:07 -08002083 ret = __alps_command_mode_write_reg(psmouse, reg_val);
Seth Forshee25bded72011-11-07 19:53:36 -08002084
Kevin Cernekeecd401202013-02-13 22:28:07 -08002085error:
2086 if (alps_exit_command_mode(psmouse))
2087 ret = -1;
2088 return ret;
Seth Forshee25bded72011-11-07 19:53:36 -08002089}
2090
2091/* Must be in command mode when calling this function */
2092static int alps_absolute_mode_v3(struct psmouse *psmouse)
2093{
2094 int reg_val;
2095
2096 reg_val = alps_command_mode_read_reg(psmouse, 0x0004);
2097 if (reg_val == -1)
2098 return -1;
2099
2100 reg_val |= 0x06;
2101 if (__alps_command_mode_write_reg(psmouse, reg_val))
2102 return -1;
2103
2104 return 0;
2105}
2106
Pali Rohárdae928e2016-01-06 15:50:08 -08002107static int alps_probe_trackstick_v3_v7(struct psmouse *psmouse, int reg_base)
Kevin Cernekeecd401202013-02-13 22:28:07 -08002108{
2109 int ret = -EIO, reg_val;
2110
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002111 if (alps_enter_command_mode(psmouse))
Kevin Cernekeecd401202013-02-13 22:28:07 -08002112 goto error;
2113
2114 reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x08);
2115 if (reg_val == -1)
2116 goto error;
2117
2118 /* bit 7: trackstick is present */
2119 ret = reg_val & 0x80 ? 0 : -ENODEV;
2120
2121error:
2122 alps_exit_command_mode(psmouse);
2123 return ret;
2124}
2125
2126static int alps_setup_trackstick_v3(struct psmouse *psmouse, int reg_base)
2127{
2128 struct ps2dev *ps2dev = &psmouse->ps2dev;
2129 int ret = 0;
2130 unsigned char param[4];
2131
2132 if (alps_passthrough_mode_v3(psmouse, reg_base, true))
2133 return -EIO;
2134
2135 /*
2136 * E7 report for the trackstick
2137 *
2138 * There have been reports of failures to seem to trace back
2139 * to the above trackstick check failing. When these occur
2140 * this E7 report fails, so when that happens we continue
2141 * with the assumption that there isn't a trackstick after
2142 * all.
2143 */
2144 if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_SETSCALE21, param)) {
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002145 psmouse_warn(psmouse, "Failed to initialize trackstick (E7 report failed)\n");
Kevin Cernekeecd401202013-02-13 22:28:07 -08002146 ret = -ENODEV;
2147 } else {
Dmitry Torokhov39fbe582013-02-14 09:04:24 -08002148 psmouse_dbg(psmouse, "trackstick E7 report: %3ph\n", param);
Kevin Cernekeecd401202013-02-13 22:28:07 -08002149
2150 /*
2151 * Not sure what this does, but it is absolutely
2152 * essential. Without it, the touchpad does not
2153 * work at all and the trackstick just emits normal
2154 * PS/2 packets.
2155 */
2156 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2157 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2158 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) ||
2159 alps_command_mode_send_nibble(psmouse, 0x9) ||
2160 alps_command_mode_send_nibble(psmouse, 0x4)) {
2161 psmouse_err(psmouse,
2162 "Error sending magic E6 sequence\n");
2163 ret = -EIO;
2164 goto error;
2165 }
2166
2167 /*
2168 * This ensures the trackstick packets are in the format
2169 * supported by this driver. If bit 1 isn't set the packet
2170 * format is different.
2171 */
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002172 if (alps_enter_command_mode(psmouse) ||
Kevin Cernekeecd401202013-02-13 22:28:07 -08002173 alps_command_mode_write_reg(psmouse,
2174 reg_base + 0x08, 0x82) ||
2175 alps_exit_command_mode(psmouse))
2176 ret = -EIO;
2177 }
2178
2179error:
2180 if (alps_passthrough_mode_v3(psmouse, reg_base, false))
2181 ret = -EIO;
2182
2183 return ret;
2184}
2185
Seth Forshee25bded72011-11-07 19:53:36 -08002186static int alps_hw_init_v3(struct psmouse *psmouse)
2187{
Pali Rohár4b1af852016-01-06 15:58:56 -08002188 struct alps_data *priv = psmouse->private;
Seth Forshee25bded72011-11-07 19:53:36 -08002189 struct ps2dev *ps2dev = &psmouse->ps2dev;
2190 int reg_val;
2191 unsigned char param[4];
2192
Pali Rohár4b1af852016-01-06 15:58:56 -08002193 if ((priv->flags & ALPS_DUALPOINT) &&
Kevin Cernekeecd401202013-02-13 22:28:07 -08002194 alps_setup_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE) == -EIO)
Seth Forshee25bded72011-11-07 19:53:36 -08002195 goto error;
2196
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002197 if (alps_enter_command_mode(psmouse) ||
Kevin Cernekeecd401202013-02-13 22:28:07 -08002198 alps_absolute_mode_v3(psmouse)) {
Seth Forshee25bded72011-11-07 19:53:36 -08002199 psmouse_err(psmouse, "Failed to enter absolute mode\n");
2200 goto error;
2201 }
2202
2203 reg_val = alps_command_mode_read_reg(psmouse, 0x0006);
2204 if (reg_val == -1)
2205 goto error;
2206 if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01))
2207 goto error;
2208
2209 reg_val = alps_command_mode_read_reg(psmouse, 0x0007);
2210 if (reg_val == -1)
2211 goto error;
2212 if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01))
2213 goto error;
2214
2215 if (alps_command_mode_read_reg(psmouse, 0x0144) == -1)
2216 goto error;
2217 if (__alps_command_mode_write_reg(psmouse, 0x04))
2218 goto error;
2219
2220 if (alps_command_mode_read_reg(psmouse, 0x0159) == -1)
2221 goto error;
2222 if (__alps_command_mode_write_reg(psmouse, 0x03))
2223 goto error;
2224
2225 if (alps_command_mode_read_reg(psmouse, 0x0163) == -1)
2226 goto error;
2227 if (alps_command_mode_write_reg(psmouse, 0x0163, 0x03))
2228 goto error;
2229
2230 if (alps_command_mode_read_reg(psmouse, 0x0162) == -1)
2231 goto error;
2232 if (alps_command_mode_write_reg(psmouse, 0x0162, 0x04))
2233 goto error;
2234
Seth Forshee25bded72011-11-07 19:53:36 -08002235 alps_exit_command_mode(psmouse);
2236
2237 /* Set rate and enable data reporting */
2238 param[0] = 0x64;
2239 if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) ||
2240 ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
2241 psmouse_err(psmouse, "Failed to enable data reporting\n");
2242 return -1;
2243 }
2244
2245 return 0;
2246
Seth Forshee25bded72011-11-07 19:53:36 -08002247error:
2248 /*
2249 * Leaving the touchpad in command mode will essentially render
2250 * it unusable until the machine reboots, so exit it here just
2251 * to be safe
2252 */
2253 alps_exit_command_mode(psmouse);
2254 return -1;
2255}
2256
Hans de Goedef3f33c62014-07-29 11:22:07 -07002257static int alps_get_v3_v7_resolution(struct psmouse *psmouse, int reg_pitch)
2258{
2259 int reg, x_pitch, y_pitch, x_electrode, y_electrode, x_phys, y_phys;
2260 struct alps_data *priv = psmouse->private;
2261
2262 reg = alps_command_mode_read_reg(psmouse, reg_pitch);
2263 if (reg < 0)
2264 return reg;
2265
2266 x_pitch = (char)(reg << 4) >> 4; /* sign extend lower 4 bits */
2267 x_pitch = 50 + 2 * x_pitch; /* In 0.1 mm units */
2268
2269 y_pitch = (char)reg >> 4; /* sign extend upper 4 bits */
2270 y_pitch = 36 + 2 * y_pitch; /* In 0.1 mm units */
2271
2272 reg = alps_command_mode_read_reg(psmouse, reg_pitch + 1);
2273 if (reg < 0)
2274 return reg;
2275
2276 x_electrode = (char)(reg << 4) >> 4; /* sign extend lower 4 bits */
2277 x_electrode = 17 + x_electrode;
2278
2279 y_electrode = (char)reg >> 4; /* sign extend upper 4 bits */
2280 y_electrode = 13 + y_electrode;
2281
2282 x_phys = x_pitch * (x_electrode - 1); /* In 0.1 mm units */
2283 y_phys = y_pitch * (y_electrode - 1); /* In 0.1 mm units */
2284
2285 priv->x_res = priv->x_max * 10 / x_phys; /* units / mm */
2286 priv->y_res = priv->y_max * 10 / y_phys; /* units / mm */
2287
2288 psmouse_dbg(psmouse,
2289 "pitch %dx%d num-electrodes %dx%d physical size %dx%d mm res %dx%d\n",
2290 x_pitch, y_pitch, x_electrode, y_electrode,
2291 x_phys / 10, y_phys / 10, priv->x_res, priv->y_res);
2292
2293 return 0;
2294}
2295
Kevin Cernekee1302bac2013-02-13 22:27:08 -08002296static int alps_hw_init_rushmore_v3(struct psmouse *psmouse)
2297{
Kevin Cernekeecd401202013-02-13 22:28:07 -08002298 struct alps_data *priv = psmouse->private;
Kevin Cernekee1302bac2013-02-13 22:27:08 -08002299 struct ps2dev *ps2dev = &psmouse->ps2dev;
2300 int reg_val, ret = -1;
2301
Kevin Cernekeecd401202013-02-13 22:28:07 -08002302 if (priv->flags & ALPS_DUALPOINT) {
2303 reg_val = alps_setup_trackstick_v3(psmouse,
2304 ALPS_REG_BASE_RUSHMORE);
2305 if (reg_val == -EIO)
2306 goto error;
Kevin Cernekeecd401202013-02-13 22:28:07 -08002307 }
2308
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002309 if (alps_enter_command_mode(psmouse) ||
Kevin Cernekee1302bac2013-02-13 22:27:08 -08002310 alps_command_mode_read_reg(psmouse, 0xc2d9) == -1 ||
2311 alps_command_mode_write_reg(psmouse, 0xc2cb, 0x00))
2312 goto error;
2313
Hans de Goedef3f33c62014-07-29 11:22:07 -07002314 if (alps_get_v3_v7_resolution(psmouse, 0xc2da))
2315 goto error;
2316
Kevin Cernekee1302bac2013-02-13 22:27:08 -08002317 reg_val = alps_command_mode_read_reg(psmouse, 0xc2c6);
2318 if (reg_val == -1)
2319 goto error;
2320 if (__alps_command_mode_write_reg(psmouse, reg_val & 0xfd))
2321 goto error;
2322
2323 if (alps_command_mode_write_reg(psmouse, 0xc2c9, 0x64))
2324 goto error;
2325
2326 /* enter absolute mode */
2327 reg_val = alps_command_mode_read_reg(psmouse, 0xc2c4);
2328 if (reg_val == -1)
2329 goto error;
2330 if (__alps_command_mode_write_reg(psmouse, reg_val | 0x02))
2331 goto error;
2332
2333 alps_exit_command_mode(psmouse);
2334 return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE);
2335
2336error:
2337 alps_exit_command_mode(psmouse);
2338 return ret;
2339}
2340
Seth Forshee25bded72011-11-07 19:53:36 -08002341/* Must be in command mode when calling this function */
2342static int alps_absolute_mode_v4(struct psmouse *psmouse)
2343{
2344 int reg_val;
2345
2346 reg_val = alps_command_mode_read_reg(psmouse, 0x0004);
2347 if (reg_val == -1)
2348 return -1;
2349
2350 reg_val |= 0x02;
2351 if (__alps_command_mode_write_reg(psmouse, reg_val))
2352 return -1;
2353
2354 return 0;
2355}
2356
2357static int alps_hw_init_v4(struct psmouse *psmouse)
2358{
Seth Forshee25bded72011-11-07 19:53:36 -08002359 struct ps2dev *ps2dev = &psmouse->ps2dev;
2360 unsigned char param[4];
2361
Kevin Cernekeed18e53f2013-02-21 22:58:20 -08002362 if (alps_enter_command_mode(psmouse))
Seth Forshee25bded72011-11-07 19:53:36 -08002363 goto error;
2364
2365 if (alps_absolute_mode_v4(psmouse)) {
2366 psmouse_err(psmouse, "Failed to enter absolute mode\n");
2367 goto error;
2368 }
2369
2370 if (alps_command_mode_write_reg(psmouse, 0x0007, 0x8c))
2371 goto error;
2372
2373 if (alps_command_mode_write_reg(psmouse, 0x0149, 0x03))
2374 goto error;
2375
2376 if (alps_command_mode_write_reg(psmouse, 0x0160, 0x03))
2377 goto error;
2378
2379 if (alps_command_mode_write_reg(psmouse, 0x017f, 0x15))
2380 goto error;
2381
2382 if (alps_command_mode_write_reg(psmouse, 0x0151, 0x01))
2383 goto error;
2384
2385 if (alps_command_mode_write_reg(psmouse, 0x0168, 0x03))
2386 goto error;
2387
2388 if (alps_command_mode_write_reg(psmouse, 0x014a, 0x03))
2389 goto error;
2390
2391 if (alps_command_mode_write_reg(psmouse, 0x0161, 0x03))
2392 goto error;
2393
2394 alps_exit_command_mode(psmouse);
2395
2396 /*
2397 * This sequence changes the output from a 9-byte to an
2398 * 8-byte format. All the same data seems to be present,
2399 * just in a more compact format.
2400 */
2401 param[0] = 0xc8;
2402 param[1] = 0x64;
2403 param[2] = 0x50;
2404 if (ps2_command(ps2dev, &param[0], PSMOUSE_CMD_SETRATE) ||
2405 ps2_command(ps2dev, &param[1], PSMOUSE_CMD_SETRATE) ||
2406 ps2_command(ps2dev, &param[2], PSMOUSE_CMD_SETRATE) ||
2407 ps2_command(ps2dev, param, PSMOUSE_CMD_GETID))
2408 return -1;
2409
2410 /* Set rate and enable data reporting */
2411 param[0] = 0x64;
2412 if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) ||
2413 ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) {
2414 psmouse_err(psmouse, "Failed to enable data reporting\n");
2415 return -1;
2416 }
2417
2418 return 0;
2419
2420error:
2421 /*
2422 * Leaving the touchpad in command mode will essentially render
2423 * it unusable until the machine reboots, so exit it here just
2424 * to be safe
2425 */
2426 alps_exit_command_mode(psmouse);
2427 return -1;
2428}
2429
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002430static int alps_get_otp_values_ss4_v2(struct psmouse *psmouse,
2431 unsigned char index, unsigned char otp[])
2432{
2433 struct ps2dev *ps2dev = &psmouse->ps2dev;
2434
2435 switch (index) {
2436 case 0:
2437 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) ||
2438 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) ||
2439 ps2_command(ps2dev, otp, PSMOUSE_CMD_GETINFO))
2440 return -1;
2441
2442 break;
2443
2444 case 1:
2445 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) ||
2446 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) ||
2447 ps2_command(ps2dev, otp, PSMOUSE_CMD_GETINFO))
2448 return -1;
2449
2450 break;
2451 }
2452
2453 return 0;
2454}
2455
Fengguang Wu07f19e32015-04-10 23:54:31 -07002456static int alps_update_device_area_ss4_v2(unsigned char otp[][4],
2457 struct alps_data *priv)
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002458{
2459 int num_x_electrode;
2460 int num_y_electrode;
2461 int x_pitch, y_pitch, x_phys, y_phys;
2462
Masaki Otae7348392017-03-17 14:10:57 -07002463 if (IS_SS4PLUS_DEV(priv->dev_id)) {
2464 num_x_electrode =
2465 SS4PLUS_NUMSENSOR_XOFFSET + (otp[0][2] & 0x0F);
2466 num_y_electrode =
2467 SS4PLUS_NUMSENSOR_YOFFSET + ((otp[0][2] >> 4) & 0x0F);
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002468
Masaki Otae7348392017-03-17 14:10:57 -07002469 priv->x_max =
2470 (num_x_electrode - 1) * SS4PLUS_COUNT_PER_ELECTRODE;
2471 priv->y_max =
2472 (num_y_electrode - 1) * SS4PLUS_COUNT_PER_ELECTRODE;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002473
Masaki Otae7348392017-03-17 14:10:57 -07002474 x_pitch = (otp[0][1] & 0x0F) + SS4PLUS_MIN_PITCH_MM;
2475 y_pitch = ((otp[0][1] >> 4) & 0x0F) + SS4PLUS_MIN_PITCH_MM;
2476
2477 } else {
2478 num_x_electrode =
2479 SS4_NUMSENSOR_XOFFSET + (otp[1][0] & 0x0F);
2480 num_y_electrode =
2481 SS4_NUMSENSOR_YOFFSET + ((otp[1][0] >> 4) & 0x0F);
2482
2483 priv->x_max =
2484 (num_x_electrode - 1) * SS4_COUNT_PER_ELECTRODE;
2485 priv->y_max =
2486 (num_y_electrode - 1) * SS4_COUNT_PER_ELECTRODE;
2487
2488 x_pitch = ((otp[1][2] >> 2) & 0x07) + SS4_MIN_PITCH_MM;
2489 y_pitch = ((otp[1][2] >> 5) & 0x07) + SS4_MIN_PITCH_MM;
2490 }
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002491
2492 x_phys = x_pitch * (num_x_electrode - 1); /* In 0.1 mm units */
2493 y_phys = y_pitch * (num_y_electrode - 1); /* In 0.1 mm units */
2494
2495 priv->x_res = priv->x_max * 10 / x_phys; /* units / mm */
2496 priv->y_res = priv->y_max * 10 / y_phys; /* units / mm */
2497
2498 return 0;
2499}
2500
Fengguang Wu07f19e32015-04-10 23:54:31 -07002501static int alps_update_btn_info_ss4_v2(unsigned char otp[][4],
2502 struct alps_data *priv)
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002503{
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002504 unsigned char is_btnless;
2505
Masaki Otae7348392017-03-17 14:10:57 -07002506 if (IS_SS4PLUS_DEV(priv->dev_id))
2507 is_btnless = (otp[1][0] >> 1) & 0x01;
2508 else
2509 is_btnless = (otp[1][1] >> 3) & 0x01;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002510
2511 if (is_btnless)
2512 priv->flags |= ALPS_BUTTONPAD;
2513
2514 return 0;
2515}
2516
Masaki Otae7348392017-03-17 14:10:57 -07002517static int alps_update_dual_info_ss4_v2(unsigned char otp[][4],
2518 struct alps_data *priv)
2519{
2520 bool is_dual = false;
2521
2522 if (IS_SS4PLUS_DEV(priv->dev_id))
2523 is_dual = (otp[0][0] >> 4) & 0x01;
2524
2525 if (is_dual)
2526 priv->flags |= ALPS_DUALPOINT |
2527 ALPS_DUALPOINT_WITH_PRESSURE;
2528
2529 return 0;
2530}
2531
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002532static int alps_set_defaults_ss4_v2(struct psmouse *psmouse,
2533 struct alps_data *priv)
2534{
2535 unsigned char otp[2][4];
2536
2537 memset(otp, 0, sizeof(otp));
2538
2539 if (alps_get_otp_values_ss4_v2(psmouse, 0, &otp[0][0]) ||
2540 alps_get_otp_values_ss4_v2(psmouse, 1, &otp[1][0]))
2541 return -1;
2542
2543 alps_update_device_area_ss4_v2(otp, priv);
2544
2545 alps_update_btn_info_ss4_v2(otp, priv);
2546
Masaki Otae7348392017-03-17 14:10:57 -07002547 alps_update_dual_info_ss4_v2(otp, priv);
2548
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002549 return 0;
2550}
2551
Yunkang Tangee65d4b2013-12-26 14:54:19 -08002552static int alps_dolphin_get_device_area(struct psmouse *psmouse,
2553 struct alps_data *priv)
2554{
2555 struct ps2dev *ps2dev = &psmouse->ps2dev;
2556 unsigned char param[4] = {0};
2557 int num_x_electrode, num_y_electrode;
2558
2559 if (alps_enter_command_mode(psmouse))
2560 return -1;
2561
2562 param[0] = 0x0a;
2563 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) ||
2564 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) ||
2565 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) ||
2566 ps2_command(ps2dev, &param[0], PSMOUSE_CMD_SETRATE) ||
2567 ps2_command(ps2dev, &param[0], PSMOUSE_CMD_SETRATE))
2568 return -1;
2569
2570 if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO))
2571 return -1;
2572
2573 /*
2574 * Dolphin's sensor line number is not fixed. It can be calculated
2575 * by adding the device's register value with DOLPHIN_PROFILE_X/YOFFSET.
2576 * Further more, we can get device's x_max and y_max by multiplying
2577 * sensor line number with DOLPHIN_COUNT_PER_ELECTRODE.
2578 *
2579 * e.g. When we get register's sensor_x = 11 & sensor_y = 8,
2580 * real sensor line number X = 11 + 8 = 19, and
2581 * real sensor line number Y = 8 + 1 = 9.
2582 * So, x_max = (19 - 1) * 64 = 1152, and
2583 * y_max = (9 - 1) * 64 = 512.
2584 */
2585 num_x_electrode = DOLPHIN_PROFILE_XOFFSET + (param[2] & 0x0F);
2586 num_y_electrode = DOLPHIN_PROFILE_YOFFSET + ((param[2] >> 4) & 0x0F);
2587 priv->x_bits = num_x_electrode;
2588 priv->y_bits = num_y_electrode;
2589 priv->x_max = (num_x_electrode - 1) * DOLPHIN_COUNT_PER_ELECTRODE;
2590 priv->y_max = (num_y_electrode - 1) * DOLPHIN_COUNT_PER_ELECTRODE;
2591
2592 if (alps_exit_command_mode(psmouse))
2593 return -1;
2594
2595 return 0;
2596}
2597
Dave Turvene75af9e52013-02-21 22:58:28 -08002598static int alps_hw_init_dolphin_v1(struct psmouse *psmouse)
2599{
2600 struct ps2dev *ps2dev = &psmouse->ps2dev;
2601 unsigned char param[2];
2602
2603 /* This is dolphin "v1" as empirically defined by florin9doi */
2604 param[0] = 0x64;
2605 param[1] = 0x28;
2606
2607 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) ||
2608 ps2_command(ps2dev, &param[0], PSMOUSE_CMD_SETRATE) ||
2609 ps2_command(ps2dev, &param[1], PSMOUSE_CMD_SETRATE))
2610 return -1;
2611
2612 return 0;
2613}
2614
Yunkang Tang38088432014-07-26 13:51:41 -07002615static int alps_hw_init_v7(struct psmouse *psmouse)
2616{
2617 struct ps2dev *ps2dev = &psmouse->ps2dev;
2618 int reg_val, ret = -1;
2619
2620 if (alps_enter_command_mode(psmouse) ||
2621 alps_command_mode_read_reg(psmouse, 0xc2d9) == -1)
2622 goto error;
2623
Hans de Goedef3f33c62014-07-29 11:22:07 -07002624 if (alps_get_v3_v7_resolution(psmouse, 0xc397))
2625 goto error;
2626
Yunkang Tang38088432014-07-26 13:51:41 -07002627 if (alps_command_mode_write_reg(psmouse, 0xc2c9, 0x64))
2628 goto error;
2629
2630 reg_val = alps_command_mode_read_reg(psmouse, 0xc2c4);
2631 if (reg_val == -1)
2632 goto error;
2633 if (__alps_command_mode_write_reg(psmouse, reg_val | 0x02))
2634 goto error;
2635
2636 alps_exit_command_mode(psmouse);
2637 return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE);
2638
2639error:
2640 alps_exit_command_mode(psmouse);
2641 return ret;
2642}
2643
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002644static int alps_hw_init_ss4_v2(struct psmouse *psmouse)
2645{
2646 struct ps2dev *ps2dev = &psmouse->ps2dev;
2647 char param[2] = {0x64, 0x28};
2648 int ret = -1;
2649
2650 /* enter absolute mode */
2651 if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) ||
2652 ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) ||
2653 ps2_command(ps2dev, &param[0], PSMOUSE_CMD_SETRATE) ||
2654 ps2_command(ps2dev, &param[1], PSMOUSE_CMD_SETRATE)) {
2655 goto error;
2656 }
2657
2658 /* T.B.D. Decread noise packet number, delete in the future */
2659 if (alps_exit_command_mode(psmouse) ||
2660 alps_enter_command_mode(psmouse) ||
2661 alps_command_mode_write_reg(psmouse, 0x001D, 0x20)) {
2662 goto error;
2663 }
2664 alps_exit_command_mode(psmouse);
2665
2666 return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE);
2667
2668error:
2669 alps_exit_command_mode(psmouse);
2670 return ret;
2671}
2672
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002673static int alps_set_protocol(struct psmouse *psmouse,
2674 struct alps_data *priv,
2675 const struct alps_protocol_info *protocol)
Seth Forshee25bded72011-11-07 19:53:36 -08002676{
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002677 psmouse->private = priv;
2678
2679 setup_timer(&priv->timer, alps_flush_packet, (unsigned long)psmouse);
2680
2681 priv->proto_version = protocol->version;
2682 priv->byte0 = protocol->byte0;
2683 priv->mask0 = protocol->mask0;
2684 priv->flags = protocol->flags;
Kevin Cernekeef673ceb2013-02-13 22:23:34 -08002685
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -08002686 priv->x_max = 2000;
2687 priv->y_max = 1400;
2688 priv->x_bits = 15;
2689 priv->y_bits = 11;
2690
Kevin Cernekee99df65e2013-02-13 20:56:33 -08002691 switch (priv->proto_version) {
Seth Forshee25bded72011-11-07 19:53:36 -08002692 case ALPS_PROTO_V1:
2693 case ALPS_PROTO_V2:
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002694 priv->hw_init = alps_hw_init_v1_v2;
2695 priv->process_packet = alps_process_packet_v1_v2;
2696 priv->set_abs_params = alps_set_abs_params_st;
Yunkang Tang95f75e92013-12-01 22:33:52 -08002697 priv->x_max = 1023;
2698 priv->y_max = 767;
Hans de Goede19556212015-10-26 01:50:28 -07002699 if (dmi_check_system(alps_dmi_has_separate_stick_buttons))
2700 priv->flags |= ALPS_STICK_BITS;
Seth Forshee25bded72011-11-07 19:53:36 -08002701 break;
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -08002702
Seth Forshee25bded72011-11-07 19:53:36 -08002703 case ALPS_PROTO_V3:
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002704 priv->hw_init = alps_hw_init_v3;
2705 priv->process_packet = alps_process_packet_v3;
Hans de Goede688ea362015-05-20 14:42:50 -07002706 priv->set_abs_params = alps_set_abs_params_semi_mt;
Kevin Cernekeef85e5002013-02-13 22:26:11 -08002707 priv->decode_fields = alps_decode_pinnacle;
Kevin Cernekee50e8b212013-02-13 22:23:04 -08002708 priv->nibble_commands = alps_v3_nibble_commands;
2709 priv->addr_command = PSMOUSE_CMD_RESET_WRAP;
Pali Rohár4b1af852016-01-06 15:58:56 -08002710
2711 if (alps_probe_trackstick_v3_v7(psmouse,
2712 ALPS_REG_BASE_PINNACLE) < 0)
2713 priv->flags &= ~ALPS_DUALPOINT;
2714
Seth Forshee25bded72011-11-07 19:53:36 -08002715 break;
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -08002716
2717 case ALPS_PROTO_V3_RUSHMORE:
2718 priv->hw_init = alps_hw_init_rushmore_v3;
2719 priv->process_packet = alps_process_packet_v3;
Hans de Goede688ea362015-05-20 14:42:50 -07002720 priv->set_abs_params = alps_set_abs_params_semi_mt;
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -08002721 priv->decode_fields = alps_decode_rushmore;
2722 priv->nibble_commands = alps_v3_nibble_commands;
2723 priv->addr_command = PSMOUSE_CMD_RESET_WRAP;
2724 priv->x_bits = 16;
2725 priv->y_bits = 12;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002726
Pali Rohárdae928e2016-01-06 15:50:08 -08002727 if (alps_probe_trackstick_v3_v7(psmouse,
2728 ALPS_REG_BASE_RUSHMORE) < 0)
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002729 priv->flags &= ~ALPS_DUALPOINT;
2730
Dmitry Torokhovfb2dd7a2015-01-14 10:39:52 -08002731 break;
2732
Seth Forshee25bded72011-11-07 19:53:36 -08002733 case ALPS_PROTO_V4:
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002734 priv->hw_init = alps_hw_init_v4;
2735 priv->process_packet = alps_process_packet_v4;
Hans de Goede688ea362015-05-20 14:42:50 -07002736 priv->set_abs_params = alps_set_abs_params_semi_mt;
Kevin Cernekee50e8b212013-02-13 22:23:04 -08002737 priv->nibble_commands = alps_v4_nibble_commands;
2738 priv->addr_command = PSMOUSE_CMD_DISABLE;
Seth Forshee25bded72011-11-07 19:53:36 -08002739 break;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002740
Dave Turvene75af9e52013-02-21 22:58:28 -08002741 case ALPS_PROTO_V5:
2742 priv->hw_init = alps_hw_init_dolphin_v1;
Yunkang Tangee65d4b2013-12-26 14:54:19 -08002743 priv->process_packet = alps_process_touchpad_packet_v3_v5;
Dave Turvene75af9e52013-02-21 22:58:28 -08002744 priv->decode_fields = alps_decode_dolphin;
Hans de Goede688ea362015-05-20 14:42:50 -07002745 priv->set_abs_params = alps_set_abs_params_semi_mt;
Dave Turvene75af9e52013-02-21 22:58:28 -08002746 priv->nibble_commands = alps_v3_nibble_commands;
2747 priv->addr_command = PSMOUSE_CMD_RESET_WRAP;
Dave Turvene75af9e52013-02-21 22:58:28 -08002748 priv->x_bits = 23;
2749 priv->y_bits = 12;
Dmitry Torokhovc164c142015-03-21 20:29:34 -07002750
2751 if (alps_dolphin_get_device_area(psmouse, priv))
2752 return -EIO;
2753
Dave Turvene75af9e52013-02-21 22:58:28 -08002754 break;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002755
Yunkang Tang95f75e92013-12-01 22:33:52 -08002756 case ALPS_PROTO_V6:
2757 priv->hw_init = alps_hw_init_v6;
2758 priv->process_packet = alps_process_packet_v6;
2759 priv->set_abs_params = alps_set_abs_params_st;
2760 priv->nibble_commands = alps_v6_nibble_commands;
2761 priv->x_max = 2047;
2762 priv->y_max = 1535;
2763 break;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002764
Yunkang Tang38088432014-07-26 13:51:41 -07002765 case ALPS_PROTO_V7:
2766 priv->hw_init = alps_hw_init_v7;
2767 priv->process_packet = alps_process_packet_v7;
2768 priv->decode_fields = alps_decode_packet_v7;
Masaki Ota8eccd392015-03-27 20:44:21 -07002769 priv->set_abs_params = alps_set_abs_params_v7;
Yunkang Tang38088432014-07-26 13:51:41 -07002770 priv->nibble_commands = alps_v3_nibble_commands;
2771 priv->addr_command = PSMOUSE_CMD_RESET_WRAP;
Dmitry Torokhovc164c142015-03-21 20:29:34 -07002772 priv->x_max = 0xfff;
2773 priv->y_max = 0x7ff;
Yunkang Tang38088432014-07-26 13:51:41 -07002774
2775 if (priv->fw_ver[1] != 0xba)
2776 priv->flags |= ALPS_BUTTONPAD;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002777
Pali Rohárdae928e2016-01-06 15:50:08 -08002778 if (alps_probe_trackstick_v3_v7(psmouse, ALPS_REG_BASE_V7) < 0)
2779 priv->flags &= ~ALPS_DUALPOINT;
2780
Yunkang Tang38088432014-07-26 13:51:41 -07002781 break;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002782
2783 case ALPS_PROTO_V8:
2784 priv->hw_init = alps_hw_init_ss4_v2;
2785 priv->process_packet = alps_process_packet_ss4_v2;
2786 priv->decode_fields = alps_decode_ss4_v2;
2787 priv->set_abs_params = alps_set_abs_params_ss4_v2;
2788 priv->nibble_commands = alps_v3_nibble_commands;
2789 priv->addr_command = PSMOUSE_CMD_RESET_WRAP;
2790
2791 if (alps_set_defaults_ss4_v2(psmouse, priv))
2792 return -EIO;
2793
2794 break;
Seth Forshee25bded72011-11-07 19:53:36 -08002795 }
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002796
2797 return 0;
Seth Forshee25bded72011-11-07 19:53:36 -08002798}
2799
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002800static const struct alps_protocol_info *alps_match_table(unsigned char *e7,
2801 unsigned char *ec)
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002802{
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002803 const struct alps_model_info *model;
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002804 int i;
2805
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002806 for (i = 0; i < ARRAY_SIZE(alps_model_data); i++) {
2807 model = &alps_model_data[i];
2808
2809 if (!memcmp(e7, model->signature, sizeof(model->signature)) &&
2810 (!model->command_mode_resp ||
2811 model->command_mode_resp == ec[2])) {
2812
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002813 return &model->protocol_info;
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002814 }
2815 }
2816
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002817 return NULL;
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002818}
2819
2820static int alps_identify(struct psmouse *psmouse, struct alps_data *priv)
2821{
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002822 const struct alps_protocol_info *protocol;
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002823 unsigned char e6[4], e7[4], ec[4];
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002824 int error;
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002825
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002826 /*
2827 * First try "E6 report".
2828 * ALPS should return 0,0,10 or 0,0,100 if no buttons are pressed.
2829 * The bits 0-2 of the first byte will be 1s if some buttons are
2830 * pressed.
2831 */
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002832 if (alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES,
2833 PSMOUSE_CMD_SETSCALE11, e6))
2834 return -EIO;
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002835
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002836 if ((e6[0] & 0xf8) != 0 || e6[1] != 0 || (e6[2] != 10 && e6[2] != 100))
2837 return -EINVAL;
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002838
2839 /*
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002840 * Now get the "E7" and "EC" reports. These will uniquely identify
2841 * most ALPS touchpads.
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002842 */
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002843 if (alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES,
2844 PSMOUSE_CMD_SETSCALE21, e7) ||
2845 alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES,
2846 PSMOUSE_CMD_RESET_WRAP, ec) ||
2847 alps_exit_command_mode(psmouse))
2848 return -EIO;
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002849
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002850 protocol = alps_match_table(e7, ec);
2851 if (!protocol) {
2852 if (e7[0] == 0x73 && e7[1] == 0x03 && e7[2] == 0x50 &&
2853 ec[0] == 0x73 && (ec[1] == 0x01 || ec[1] == 0x02)) {
2854 protocol = &alps_v5_protocol_data;
2855 } else if (ec[0] == 0x88 &&
2856 ((ec[1] & 0xf0) == 0xb0 || (ec[1] & 0xf0) == 0xc0)) {
2857 protocol = &alps_v7_protocol_data;
2858 } else if (ec[0] == 0x88 && ec[1] == 0x08) {
2859 protocol = &alps_v3_rushmore_data;
2860 } else if (ec[0] == 0x88 && ec[1] == 0x07 &&
2861 ec[2] >= 0x90 && ec[2] <= 0x9d) {
2862 protocol = &alps_v3_protocol_data;
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002863 } else if (e7[0] == 0x73 && e7[1] == 0x03 &&
Masaki Otae7348392017-03-17 14:10:57 -07002864 (e7[2] == 0x14 || e7[2] == 0x28)) {
Ben Gamariaeaa8812016-10-04 11:43:30 -07002865 protocol = &alps_v8_protocol_data;
Dmitry Torokhov3296f712015-01-12 00:30:32 -08002866 } else {
2867 psmouse_dbg(psmouse,
2868 "Likely not an ALPS touchpad: E7=%3ph, EC=%3ph\n", e7, ec);
2869 return -EINVAL;
2870 }
2871 }
2872
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002873 if (priv) {
Masaki Otae7348392017-03-17 14:10:57 -07002874 /* Save Device ID and Firmware version */
2875 memcpy(priv->dev_id, e7, 3);
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002876 memcpy(priv->fw_ver, ec, 3);
2877 error = alps_set_protocol(psmouse, priv, protocol);
2878 if (error)
2879 return error;
2880 }
Hans de Goedec0cd17f2014-07-25 22:49:14 -07002881
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002882 return 0;
Kevin Cernekee2e992cc2013-02-13 20:57:04 -08002883}
2884
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04002885static int alps_reconnect(struct psmouse *psmouse)
2886{
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002887 struct alps_data *priv = psmouse->private;
Maxim Levitsky71bb21b2009-11-16 22:12:22 -08002888
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04002889 psmouse_reset(psmouse);
2890
Kevin Cernekeeb5d6b852013-02-13 22:19:59 -08002891 if (alps_identify(psmouse, priv) < 0)
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04002892 return -1;
2893
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002894 return priv->hw_init(psmouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
2897static void alps_disconnect(struct psmouse *psmouse)
2898{
2899 struct alps_data *priv = psmouse->private;
Dmitry Torokhov2e5b6362005-09-15 02:01:44 -05002900
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 psmouse_reset(psmouse);
Sebastian Kapfer1d9f2622009-12-15 08:39:50 -08002902 del_timer_sync(&priv->timer);
Pali Rohár04aae282015-01-14 13:18:30 -08002903 if (priv->dev2)
2904 input_unregister_device(priv->dev2);
2905 if (!IS_ERR_OR_NULL(priv->dev3))
2906 input_unregister_device(priv->dev3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 kfree(priv);
2908}
2909
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002910static void alps_set_abs_params_st(struct alps_data *priv,
2911 struct input_dev *dev1)
2912{
Yunkang Tang95f75e92013-12-01 22:33:52 -08002913 input_set_abs_params(dev1, ABS_X, 0, priv->x_max, 0, 0);
2914 input_set_abs_params(dev1, ABS_Y, 0, priv->y_max, 0, 0);
Masaki Ota8eccd392015-03-27 20:44:21 -07002915 input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002916}
2917
Masaki Ota8eccd392015-03-27 20:44:21 -07002918static void alps_set_abs_params_mt_common(struct alps_data *priv,
2919 struct input_dev *dev1)
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002920{
Kevin Cernekee7a9f73e2013-02-13 22:24:55 -08002921 input_set_abs_params(dev1, ABS_MT_POSITION_X, 0, priv->x_max, 0, 0);
2922 input_set_abs_params(dev1, ABS_MT_POSITION_Y, 0, priv->y_max, 0, 0);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002923
Hans de Goedef3f33c62014-07-29 11:22:07 -07002924 input_abs_set_res(dev1, ABS_MT_POSITION_X, priv->x_res);
2925 input_abs_set_res(dev1, ABS_MT_POSITION_Y, priv->y_res);
2926
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002927 set_bit(BTN_TOOL_TRIPLETAP, dev1->keybit);
2928 set_bit(BTN_TOOL_QUADTAP, dev1->keybit);
Masaki Ota8eccd392015-03-27 20:44:21 -07002929}
Yunkang Tang38088432014-07-26 13:51:41 -07002930
Hans de Goede688ea362015-05-20 14:42:50 -07002931static void alps_set_abs_params_semi_mt(struct alps_data *priv,
2932 struct input_dev *dev1)
Masaki Ota8eccd392015-03-27 20:44:21 -07002933{
2934 alps_set_abs_params_mt_common(priv, dev1);
2935 input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0);
2936
2937 input_mt_init_slots(dev1, MAX_TOUCHES,
2938 INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED |
Hans de Goede1662c0332015-05-20 14:42:15 -07002939 INPUT_MT_SEMI_MT);
Masaki Ota8eccd392015-03-27 20:44:21 -07002940}
2941
2942static void alps_set_abs_params_v7(struct alps_data *priv,
2943 struct input_dev *dev1)
2944{
2945 alps_set_abs_params_mt_common(priv, dev1);
Masaki Ota8d289842015-03-27 21:30:46 -07002946 set_bit(BTN_TOOL_QUINTTAP, dev1->keybit);
Masaki Ota8eccd392015-03-27 20:44:21 -07002947
2948 input_mt_init_slots(dev1, MAX_TOUCHES,
2949 INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED |
2950 INPUT_MT_TRACK);
Masaki Ota3db5b9f2015-03-27 20:57:52 -07002951
2952 set_bit(BTN_TOOL_QUINTTAP, dev1->keybit);
2953}
2954
2955static void alps_set_abs_params_ss4_v2(struct alps_data *priv,
2956 struct input_dev *dev1)
2957{
2958 alps_set_abs_params_mt_common(priv, dev1);
2959 input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0);
2960 set_bit(BTN_TOOL_QUINTTAP, dev1->keybit);
2961
2962 input_mt_init_slots(dev1, MAX_TOUCHES,
2963 INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED |
2964 INPUT_MT_TRACK);
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002965}
2966
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967int alps_init(struct psmouse *psmouse)
2968{
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002969 struct alps_data *priv = psmouse->private;
Pali Rohár04aae282015-01-14 13:18:30 -08002970 struct input_dev *dev1 = psmouse->dev;
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002971 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Dmitry Torokhova09221e2015-01-13 20:46:09 -08002973 error = priv->hw_init(psmouse);
2974 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 goto init_fail;
2976
Dmitry Torokhov7105d2e2009-12-11 23:54:54 -08002977 /*
2978 * Undo part of setup done for us by psmouse core since touchpad
2979 * is not a relative device.
2980 */
2981 __clear_bit(EV_REL, dev1->evbit);
2982 __clear_bit(REL_X, dev1->relbit);
2983 __clear_bit(REL_Y, dev1->relbit);
2984
2985 /*
2986 * Now set up our capabilities.
2987 */
Jiri Slaby7b19ada2007-10-18 23:40:32 -07002988 dev1->evbit[BIT_WORD(EV_KEY)] |= BIT_MASK(EV_KEY);
2989 dev1->keybit[BIT_WORD(BTN_TOUCH)] |= BIT_MASK(BTN_TOUCH);
2990 dev1->keybit[BIT_WORD(BTN_TOOL_FINGER)] |= BIT_MASK(BTN_TOOL_FINGER);
Maxim Levitsky71bb21b2009-11-16 22:12:22 -08002991 dev1->keybit[BIT_WORD(BTN_LEFT)] |=
2992 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993
Jiri Slaby7b19ada2007-10-18 23:40:32 -07002994 dev1->evbit[BIT_WORD(EV_ABS)] |= BIT_MASK(EV_ABS);
Seth Forshee25bded72011-11-07 19:53:36 -08002995
Kevin Cernekee24af5cb2013-02-13 22:22:08 -08002996 priv->set_abs_params(priv, dev1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997
Kevin Cernekee99df65e2013-02-13 20:56:33 -08002998 if (priv->flags & ALPS_WHEEL) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -07002999 dev1->evbit[BIT_WORD(EV_REL)] |= BIT_MASK(EV_REL);
3000 dev1->relbit[BIT_WORD(REL_WHEEL)] |= BIT_MASK(REL_WHEEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 }
3002
Kevin Cernekee99df65e2013-02-13 20:56:33 -08003003 if (priv->flags & (ALPS_FW_BK_1 | ALPS_FW_BK_2)) {
Jiri Slaby7b19ada2007-10-18 23:40:32 -07003004 dev1->keybit[BIT_WORD(BTN_FORWARD)] |= BIT_MASK(BTN_FORWARD);
3005 dev1->keybit[BIT_WORD(BTN_BACK)] |= BIT_MASK(BTN_BACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
3007
Kevin Cernekee99df65e2013-02-13 20:56:33 -08003008 if (priv->flags & ALPS_FOUR_BUTTONS) {
Maxim Levitsky71bb21b2009-11-16 22:12:22 -08003009 dev1->keybit[BIT_WORD(BTN_0)] |= BIT_MASK(BTN_0);
3010 dev1->keybit[BIT_WORD(BTN_1)] |= BIT_MASK(BTN_1);
3011 dev1->keybit[BIT_WORD(BTN_2)] |= BIT_MASK(BTN_2);
3012 dev1->keybit[BIT_WORD(BTN_3)] |= BIT_MASK(BTN_3);
Yunkang Tang38088432014-07-26 13:51:41 -07003013 } else if (priv->flags & ALPS_BUTTONPAD) {
3014 set_bit(INPUT_PROP_BUTTONPAD, dev1->propbit);
3015 clear_bit(BTN_RIGHT, dev1->keybit);
Maxim Levitsky71bb21b2009-11-16 22:12:22 -08003016 } else {
3017 dev1->keybit[BIT_WORD(BTN_MIDDLE)] |= BIT_MASK(BTN_MIDDLE);
3018 }
3019
Pali Rohárdfba8602015-01-09 12:48:44 -08003020 if (priv->flags & ALPS_DUALPOINT) {
Pali Rohár04aae282015-01-14 13:18:30 -08003021 struct input_dev *dev2;
3022
3023 dev2 = input_allocate_device();
3024 if (!dev2) {
3025 psmouse_err(psmouse,
3026 "failed to allocate trackstick device\n");
3027 error = -ENOMEM;
3028 goto init_fail;
3029 }
3030
3031 snprintf(priv->phys2, sizeof(priv->phys2), "%s/input1",
3032 psmouse->ps2dev.serio->phys);
3033 dev2->phys = priv->phys2;
3034
Pali Rohárdfba8602015-01-09 12:48:44 -08003035 /*
3036 * format of input device name is: "protocol vendor name"
3037 * see function psmouse_switch_protocol() in psmouse-base.c
3038 */
3039 dev2->name = "AlpsPS/2 ALPS DualPoint Stick";
Pali Rohár04aae282015-01-14 13:18:30 -08003040
3041 dev2->id.bustype = BUS_I8042;
3042 dev2->id.vendor = 0x0002;
Pali Rohárdfba8602015-01-09 12:48:44 -08003043 dev2->id.product = PSMOUSE_ALPS;
3044 dev2->id.version = priv->proto_version;
Pali Rohár04aae282015-01-14 13:18:30 -08003045 dev2->dev.parent = &psmouse->ps2dev.serio->dev;
Pali Rohárdfba8602015-01-09 12:48:44 -08003046
Pali Rohár04aae282015-01-14 13:18:30 -08003047 input_set_capability(dev2, EV_REL, REL_X);
3048 input_set_capability(dev2, EV_REL, REL_Y);
Ben Gamari7ad8a102016-10-04 11:41:58 -07003049 if (priv->flags & ALPS_DUALPOINT_WITH_PRESSURE) {
3050 input_set_capability(dev2, EV_ABS, ABS_PRESSURE);
3051 input_set_abs_params(dev2, ABS_PRESSURE, 0, 127, 0, 0);
3052 }
Pali Rohár04aae282015-01-14 13:18:30 -08003053 input_set_capability(dev2, EV_KEY, BTN_LEFT);
3054 input_set_capability(dev2, EV_KEY, BTN_RIGHT);
3055 input_set_capability(dev2, EV_KEY, BTN_MIDDLE);
Dmitry Torokhov968ac842005-05-29 02:28:29 -05003056
Pali Rohár04aae282015-01-14 13:18:30 -08003057 __set_bit(INPUT_PROP_POINTER, dev2->propbit);
Hans de Goede76113922014-09-08 14:42:12 -07003058 __set_bit(INPUT_PROP_POINTING_STICK, dev2->propbit);
3059
Pali Rohár04aae282015-01-14 13:18:30 -08003060 error = input_register_device(dev2);
3061 if (error) {
3062 psmouse_err(psmouse,
3063 "failed to register trackstick device: %d\n",
3064 error);
3065 input_free_device(dev2);
3066 goto init_fail;
3067 }
3068
3069 priv->dev2 = dev2;
3070 }
3071
3072 priv->psmouse = psmouse;
3073
3074 INIT_DELAYED_WORK(&priv->dev3_register_work,
3075 alps_register_bare_ps2_mouse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076
3077 psmouse->protocol_handler = alps_process_byte;
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05003078 psmouse->poll = alps_poll;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 psmouse->disconnect = alps_disconnect;
3080 psmouse->reconnect = alps_reconnect;
Kevin Cernekee99df65e2013-02-13 20:56:33 -08003081 psmouse->pktsize = priv->proto_version == ALPS_PROTO_V4 ? 8 : 6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Dmitry Torokhovf0d5c6f42006-01-14 00:27:37 -05003083 /* We are having trouble resyncing ALPS touchpads so disable it for now */
3084 psmouse->resync_time = 0;
3085
Pali Rohár9d720b32014-11-08 12:58:57 -08003086 /* Allow 2 invalid packets without resetting device */
3087 psmouse->resetafter = psmouse->pktsize * 2;
3088
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 return 0;
3090
3091init_fail:
Dmitry Torokhovf42649e2007-04-12 01:31:13 -04003092 psmouse_reset(psmouse);
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003093 /*
3094 * Even though we did not allocate psmouse->private we do free
3095 * it here.
3096 */
3097 kfree(psmouse->private);
Dmitry Torokhov1e0c5b12007-05-14 23:51:54 -04003098 psmouse->private = NULL;
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003099 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100}
3101
Dmitry Torokhovb7802c52009-09-09 19:13:20 -07003102int alps_detect(struct psmouse *psmouse, bool set_properties)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003104 struct alps_data *priv;
3105 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003107 error = alps_identify(psmouse, NULL);
3108 if (error)
3109 return error;
3110
3111 /*
3112 * Reset the device to make sure it is fully operational:
3113 * on some laptops, like certain Dell Latitudes, we may
3114 * fail to properly detect presence of trackstick if device
3115 * has not been reset.
3116 */
3117 psmouse_reset(psmouse);
3118
3119 priv = kzalloc(sizeof(struct alps_data), GFP_KERNEL);
3120 if (!priv)
3121 return -ENOMEM;
3122
3123 error = alps_identify(psmouse, priv);
Dmitry Torokhov93050db2015-02-27 15:49:51 -08003124 if (error) {
3125 kfree(priv);
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003126 return error;
Dmitry Torokhov93050db2015-02-27 15:49:51 -08003127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128
3129 if (set_properties) {
3130 psmouse->vendor = "ALPS";
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003131 psmouse->name = priv->flags & ALPS_DUALPOINT ?
Dmitry Torokhov968ac842005-05-29 02:28:29 -05003132 "DualPoint TouchPad" : "GlidePoint";
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003133 psmouse->model = priv->proto_version;
3134 } else {
3135 /*
3136 * Destroy alps_data structure we allocated earlier since
3137 * this was just a "trial run". Otherwise we'll keep it
3138 * to be used by alps_init() which has to be called if
3139 * we succeed and set_properties is true.
3140 */
3141 kfree(priv);
3142 psmouse->private = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 }
Dmitry Torokhova09221e2015-01-13 20:46:09 -08003144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 return 0;
3146}
3147