Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * ALPS touchpad PS/2 mouse driver |
| 3 | * |
| 4 | * Copyright (c) 2003 Neil Brown <neilb@cse.unsw.edu.au> |
Peter Osterlund | 963f626 | 2005-07-11 01:08:04 -0500 | [diff] [blame] | 5 | * Copyright (c) 2003-2005 Peter Osterlund <petero2@telia.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | * Copyright (c) 2004 Dmitry Torokhov <dtor@mail.ru> |
| 7 | * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz> |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 8 | * Copyright (c) 2009 Sebastian Kapfer <sebastian_kapfer@gmx.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | * |
| 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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/input.h> |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 20 | #include <linux/input/mt.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | #include <linux/serio.h> |
| 22 | #include <linux/libps2.h> |
Hans de Goede | 073e570 | 2015-08-03 14:06:24 -0700 | [diff] [blame] | 23 | #include <linux/dmi.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include "psmouse.h" |
| 26 | #include "alps.h" |
| 27 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 28 | /* |
| 29 | * Definitions for ALPS version 3 and 4 command mode protocol |
| 30 | */ |
| 31 | #define ALPS_CMD_NIBBLE_10 0x01f2 |
| 32 | |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 33 | #define ALPS_REG_BASE_RUSHMORE 0xc2c0 |
Pali Rohár | dae928e | 2016-01-06 15:50:08 -0800 | [diff] [blame] | 34 | #define ALPS_REG_BASE_V7 0xc2c0 |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 35 | #define ALPS_REG_BASE_PINNACLE 0x0000 |
| 36 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 37 | static 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 | |
| 56 | static 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 Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 75 | static 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 Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 94 | |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 95 | #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 Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 102 | #define ALPS_PS2_INTERLEAVED 0x80 /* 3-byte PS/2 packet interleaved with |
| 103 | 6-byte ALPS packet */ |
Hans de Goede | 1955621 | 2015-10-26 01:50:28 -0700 | [diff] [blame] | 104 | #define ALPS_STICK_BITS 0x100 /* separate stick button bits */ |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 105 | #define ALPS_BUTTONPAD 0x200 /* device is a clickpad */ |
Ben Gamari | 7ad8a10 | 2016-10-04 11:41:58 -0700 | [diff] [blame] | 106 | #define ALPS_DUALPOINT_WITH_PRESSURE 0x400 /* device can report trackpoint pressure */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Helge Deller | e38de67 | 2006-09-10 21:54:39 -0400 | [diff] [blame] | 108 | static const struct alps_model_info alps_model_data[] = { |
Dmitry Torokhov | 626b9da | 2015-02-15 15:55:16 -0800 | [diff] [blame] | 109 | /* |
| 110 | * XXX This entry is suspicious. First byte has zero lower nibble, |
| 111 | * which is what a normal mouse would report. Also, the value 0x0e |
| 112 | * isn't valid per PS/2 spec. |
| 113 | */ |
Pali Rohár | a3cbfd5 | 2017-03-07 09:43:35 -0800 | [diff] [blame^] | 114 | { { 0x20, 0x02, 0x0e }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, |
Dmitry Torokhov | 626b9da | 2015-02-15 15:55:16 -0800 | [diff] [blame] | 115 | |
Pali Rohár | a3cbfd5 | 2017-03-07 09:43:35 -0800 | [diff] [blame^] | 116 | { { 0x22, 0x02, 0x0a }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, |
| 117 | { { 0x22, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xff, 0xff, ALPS_PASS | ALPS_DUALPOINT } }, /* Dell Latitude D600 */ |
| 118 | { { 0x32, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, /* Toshiba Salellite Pro M10 */ |
| 119 | { { 0x33, 0x02, 0x0a }, { ALPS_PROTO_V1, 0x88, 0xf8, 0 } }, /* UMAX-530T */ |
| 120 | { { 0x52, 0x01, 0x14 }, { ALPS_PROTO_V2, 0xff, 0xff, |
Dmitry Torokhov | 8326bb5 | 2015-01-13 21:08:00 -0800 | [diff] [blame] | 121 | ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED } }, /* Toshiba Tecra A11-11L */ |
Pali Rohár | a3cbfd5 | 2017-03-07 09:43:35 -0800 | [diff] [blame^] | 122 | { { 0x53, 0x02, 0x0a }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 123 | { { 0x53, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 124 | { { 0x60, 0x03, 0xc8 }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, /* HP ze1115 */ |
| 125 | { { 0x62, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xcf, 0xcf, |
| 126 | ALPS_PASS | ALPS_DUALPOINT | ALPS_PS2_INTERLEAVED } }, /* Dell Latitude E5500, E6400, E6500, Precision M4400 */ |
| 127 | { { 0x63, 0x02, 0x0a }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 128 | { { 0x63, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 129 | { { 0x63, 0x02, 0x28 }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 } }, /* Fujitsu Siemens S6010 */ |
| 130 | { { 0x63, 0x02, 0x3c }, { ALPS_PROTO_V2, 0x8f, 0x8f, ALPS_WHEEL } }, /* Toshiba Satellite S2400-103 */ |
| 131 | { { 0x63, 0x02, 0x50 }, { ALPS_PROTO_V2, 0xef, 0xef, ALPS_FW_BK_1 } }, /* NEC Versa L320 */ |
| 132 | { { 0x63, 0x02, 0x64 }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 133 | { { 0x63, 0x03, 0xc8 }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_PASS | ALPS_DUALPOINT } }, /* Dell Latitude D800 */ |
| 134 | { { 0x73, 0x00, 0x0a }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_DUALPOINT } }, /* ThinkPad R61 8918-5QG */ |
| 135 | { { 0x73, 0x00, 0x14 }, { ALPS_PROTO_V6, 0xff, 0xff, ALPS_DUALPOINT } }, /* Dell XT2 */ |
| 136 | { { 0x73, 0x02, 0x0a }, { ALPS_PROTO_V2, 0xf8, 0xf8, 0 } }, |
| 137 | { { 0x73, 0x02, 0x14 }, { ALPS_PROTO_V2, 0xf8, 0xf8, ALPS_FW_BK_2 } }, /* Ahtec Laptop */ |
| 138 | { { 0x73, 0x02, 0x50 }, { ALPS_PROTO_V2, 0xcf, 0xcf, ALPS_FOUR_BUTTONS } }, /* Dell Vostro 1400 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | }; |
| 140 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 141 | static const struct alps_protocol_info alps_v3_protocol_data = { |
| 142 | ALPS_PROTO_V3, 0x8f, 0x8f, ALPS_DUALPOINT |
| 143 | }; |
| 144 | |
| 145 | static const struct alps_protocol_info alps_v3_rushmore_data = { |
| 146 | ALPS_PROTO_V3_RUSHMORE, 0x8f, 0x8f, ALPS_DUALPOINT |
| 147 | }; |
| 148 | |
Pali Rohár | 09c398b | 2017-03-07 09:41:34 -0800 | [diff] [blame] | 149 | static const struct alps_protocol_info alps_v4_protocol_data = { |
| 150 | ALPS_PROTO_V4, 0x8f, 0x8f, 0 |
| 151 | }; |
| 152 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 153 | static const struct alps_protocol_info alps_v5_protocol_data = { |
| 154 | ALPS_PROTO_V5, 0xc8, 0xd8, 0 |
| 155 | }; |
| 156 | |
| 157 | static const struct alps_protocol_info alps_v7_protocol_data = { |
| 158 | ALPS_PROTO_V7, 0x48, 0x48, ALPS_DUALPOINT |
| 159 | }; |
| 160 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 161 | static const struct alps_protocol_info alps_v8_protocol_data = { |
| 162 | ALPS_PROTO_V8, 0x18, 0x18, 0 |
| 163 | }; |
| 164 | |
Pali Rohár | c981523 | 2017-03-07 09:42:46 -0800 | [diff] [blame] | 165 | static const struct alps_protocol_info alps_v9_protocol_data = { |
| 166 | ALPS_PROTO_V9, 0xc8, 0xc8, 0 |
| 167 | }; |
| 168 | |
Hans de Goede | 1955621 | 2015-10-26 01:50:28 -0700 | [diff] [blame] | 169 | /* |
| 170 | * Some v2 models report the stick buttons in separate bits |
| 171 | */ |
| 172 | static const struct dmi_system_id alps_dmi_has_separate_stick_buttons[] = { |
| 173 | #if defined(CONFIG_DMI) && defined(CONFIG_X86) |
| 174 | { |
| 175 | /* Extrapolated from other entries */ |
| 176 | .matches = { |
| 177 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 178 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D420"), |
| 179 | }, |
| 180 | }, |
| 181 | { |
| 182 | /* Reported-by: Hans de Bruin <jmdebruin@xmsnet.nl> */ |
| 183 | .matches = { |
| 184 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 185 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D430"), |
| 186 | }, |
| 187 | }, |
| 188 | { |
| 189 | /* Reported-by: Hans de Goede <hdegoede@redhat.com> */ |
| 190 | .matches = { |
| 191 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 192 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D620"), |
| 193 | }, |
| 194 | }, |
| 195 | { |
| 196 | /* Extrapolated from other entries */ |
| 197 | .matches = { |
| 198 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 199 | DMI_MATCH(DMI_PRODUCT_NAME, "Latitude D630"), |
| 200 | }, |
| 201 | }, |
| 202 | #endif |
| 203 | { } |
| 204 | }; |
| 205 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 206 | static void alps_set_abs_params_st(struct alps_data *priv, |
| 207 | struct input_dev *dev1); |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 208 | static void alps_set_abs_params_semi_mt(struct alps_data *priv, |
| 209 | struct input_dev *dev1); |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 210 | static void alps_set_abs_params_v7(struct alps_data *priv, |
| 211 | struct input_dev *dev1); |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 212 | static void alps_set_abs_params_ss4_v2(struct alps_data *priv, |
| 213 | struct input_dev *dev1); |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 214 | |
Seth Forshee | d4b347b | 2011-11-07 19:53:15 -0800 | [diff] [blame] | 215 | /* Packet formats are described in Documentation/input/alps.txt */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 217 | static bool alps_is_valid_first_byte(struct alps_data *priv, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 218 | unsigned char data) |
| 219 | { |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 220 | return (data & priv->mask0) == priv->byte0; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 221 | } |
| 222 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 223 | static void alps_report_buttons(struct input_dev *dev1, struct input_dev *dev2, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 224 | int left, int right, int middle) |
| 225 | { |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 226 | struct input_dev *dev; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 227 | |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 228 | /* |
| 229 | * If shared button has already been reported on the |
| 230 | * other device (dev2) then this event should be also |
| 231 | * sent through that device. |
| 232 | */ |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 233 | dev = (dev2 && test_bit(BTN_LEFT, dev2->key)) ? dev2 : dev1; |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 234 | input_report_key(dev, BTN_LEFT, left); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 235 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 236 | dev = (dev2 && test_bit(BTN_RIGHT, dev2->key)) ? dev2 : dev1; |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 237 | input_report_key(dev, BTN_RIGHT, right); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 238 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 239 | dev = (dev2 && test_bit(BTN_MIDDLE, dev2->key)) ? dev2 : dev1; |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 240 | input_report_key(dev, BTN_MIDDLE, middle); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 241 | |
Martin Buck | c91ed05 | 2010-03-13 22:23:58 -0800 | [diff] [blame] | 242 | /* |
| 243 | * Sync the _other_ device now, we'll do the first |
| 244 | * device later once we report the rest of the events. |
| 245 | */ |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 246 | if (dev2) |
| 247 | input_sync(dev2); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 248 | } |
| 249 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 250 | static void alps_process_packet_v1_v2(struct psmouse *psmouse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | { |
| 252 | struct alps_data *priv = psmouse->private; |
| 253 | unsigned char *packet = psmouse->packet; |
Dmitry Torokhov | 2e5b636 | 2005-09-15 02:01:44 -0500 | [diff] [blame] | 254 | struct input_dev *dev = psmouse->dev; |
| 255 | struct input_dev *dev2 = priv->dev2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | int x, y, z, ges, fin, left, right, middle; |
Ivan Casado Ruiz | c30b4c1 | 2005-06-01 02:39:18 -0500 | [diff] [blame] | 257 | int back = 0, forward = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 259 | if (priv->proto_version == ALPS_PROTO_V1) { |
Yotam Medini | d2f4012 | 2006-05-29 23:30:36 -0400 | [diff] [blame] | 260 | left = packet[2] & 0x10; |
| 261 | right = packet[2] & 0x08; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | middle = 0; |
| 263 | x = packet[1] | ((packet[0] & 0x07) << 7); |
| 264 | y = packet[4] | ((packet[3] & 0x07) << 7); |
| 265 | z = packet[5]; |
| 266 | } else { |
| 267 | left = packet[3] & 1; |
| 268 | right = packet[3] & 2; |
| 269 | middle = packet[3] & 4; |
| 270 | x = packet[1] | ((packet[2] & 0x78) << (7 - 3)); |
| 271 | y = packet[4] | ((packet[3] & 0x70) << (7 - 4)); |
| 272 | z = packet[5]; |
| 273 | } |
| 274 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 275 | if (priv->flags & ALPS_FW_BK_1) { |
Laszlo Kajan | 3c00bb9 | 2008-03-18 00:39:55 -0400 | [diff] [blame] | 276 | back = packet[0] & 0x10; |
| 277 | forward = packet[2] & 4; |
Ivan Casado Ruiz | c30b4c1 | 2005-06-01 02:39:18 -0500 | [diff] [blame] | 278 | } |
| 279 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 280 | if (priv->flags & ALPS_FW_BK_2) { |
Ivan Casado Ruiz | c30b4c1 | 2005-06-01 02:39:18 -0500 | [diff] [blame] | 281 | back = packet[3] & 4; |
| 282 | forward = packet[2] & 4; |
| 283 | if ((middle = forward && back)) |
| 284 | forward = back = 0; |
| 285 | } |
| 286 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | ges = packet[2] & 1; |
| 288 | fin = packet[2] & 2; |
| 289 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 290 | if ((priv->flags & ALPS_DUALPOINT) && z == 127) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | input_report_rel(dev2, REL_X, (x > 383 ? (x - 768) : x)); |
| 292 | input_report_rel(dev2, REL_Y, -(y > 255 ? (y - 512) : y)); |
Ulrich Dangel | d7ed5d8 | 2009-06-11 00:15:09 -0700 | [diff] [blame] | 293 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 294 | alps_report_buttons(dev2, dev, left, right, middle); |
Ulrich Dangel | d7ed5d8 | 2009-06-11 00:15:09 -0700 | [diff] [blame] | 295 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | input_sync(dev2); |
| 297 | return; |
| 298 | } |
| 299 | |
Hans de Goede | 1955621 | 2015-10-26 01:50:28 -0700 | [diff] [blame] | 300 | /* Some models have separate stick button bits */ |
| 301 | if (priv->flags & ALPS_STICK_BITS) { |
Hans de Goede | 92bac83 | 2015-04-12 15:42:35 -0700 | [diff] [blame] | 302 | left |= packet[0] & 1; |
| 303 | right |= packet[0] & 2; |
| 304 | middle |= packet[0] & 4; |
| 305 | } |
| 306 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 307 | alps_report_buttons(dev, dev2, left, right, middle); |
Ulrich Dangel | d7ed5d8 | 2009-06-11 00:15:09 -0700 | [diff] [blame] | 308 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | /* Convert hardware tap to a reasonable Z value */ |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 310 | if (ges && !fin) |
| 311 | z = 40; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | |
| 313 | /* |
| 314 | * A "tap and drag" operation is reported by the hardware as a transition |
| 315 | * from (!fin && ges) to (fin && ges). This should be translated to the |
| 316 | * sequence Z>0, Z==0, Z>0, so the Z==0 event has to be generated manually. |
| 317 | */ |
| 318 | if (ges && fin && !priv->prev_fin) { |
| 319 | input_report_abs(dev, ABS_X, x); |
| 320 | input_report_abs(dev, ABS_Y, y); |
| 321 | input_report_abs(dev, ABS_PRESSURE, 0); |
| 322 | input_report_key(dev, BTN_TOOL_FINGER, 0); |
| 323 | input_sync(dev); |
| 324 | } |
| 325 | priv->prev_fin = fin; |
| 326 | |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 327 | if (z > 30) |
| 328 | input_report_key(dev, BTN_TOUCH, 1); |
| 329 | if (z < 25) |
| 330 | input_report_key(dev, BTN_TOUCH, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 331 | |
| 332 | if (z > 0) { |
| 333 | input_report_abs(dev, ABS_X, x); |
| 334 | input_report_abs(dev, ABS_Y, y); |
| 335 | } |
| 336 | |
| 337 | input_report_abs(dev, ABS_PRESSURE, z); |
| 338 | input_report_key(dev, BTN_TOOL_FINGER, z > 0); |
| 339 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 340 | if (priv->flags & ALPS_WHEEL) |
Vojtech Pavlik | e6c047b | 2005-09-04 01:40:43 -0500 | [diff] [blame] | 341 | input_report_rel(dev, REL_WHEEL, ((packet[2] << 1) & 0x08) - ((packet[0] >> 4) & 0x07)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 343 | if (priv->flags & (ALPS_FW_BK_1 | ALPS_FW_BK_2)) { |
Ivan Casado Ruiz | c30b4c1 | 2005-06-01 02:39:18 -0500 | [diff] [blame] | 344 | input_report_key(dev, BTN_FORWARD, forward); |
| 345 | input_report_key(dev, BTN_BACK, back); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | } |
| 347 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 348 | if (priv->flags & ALPS_FOUR_BUTTONS) { |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 349 | input_report_key(dev, BTN_0, packet[2] & 4); |
| 350 | input_report_key(dev, BTN_1, packet[0] & 0x10); |
| 351 | input_report_key(dev, BTN_2, packet[3] & 4); |
| 352 | input_report_key(dev, BTN_3, packet[0] & 0x20); |
| 353 | } |
| 354 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | input_sync(dev); |
| 356 | } |
| 357 | |
Hans de Goede | 036e6c7 | 2014-07-25 22:38:51 -0700 | [diff] [blame] | 358 | static void alps_get_bitmap_points(unsigned int map, |
| 359 | struct alps_bitmap_point *low, |
| 360 | struct alps_bitmap_point *high, |
| 361 | int *fingers) |
| 362 | { |
| 363 | struct alps_bitmap_point *point; |
| 364 | int i, bit, prev_bit = 0; |
| 365 | |
| 366 | point = low; |
| 367 | for (i = 0; map != 0; i++, map >>= 1) { |
| 368 | bit = map & 1; |
| 369 | if (bit) { |
| 370 | if (!prev_bit) { |
| 371 | point->start_bit = i; |
Hans de Goede | 105affb | 2014-07-25 22:41:51 -0700 | [diff] [blame] | 372 | point->num_bits = 0; |
Hans de Goede | 036e6c7 | 2014-07-25 22:38:51 -0700 | [diff] [blame] | 373 | (*fingers)++; |
| 374 | } |
| 375 | point->num_bits++; |
| 376 | } else { |
| 377 | if (prev_bit) |
| 378 | point = high; |
Hans de Goede | 036e6c7 | 2014-07-25 22:38:51 -0700 | [diff] [blame] | 379 | } |
| 380 | prev_bit = bit; |
| 381 | } |
| 382 | } |
| 383 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 384 | /* |
Hans de Goede | dccf1dd | 2015-05-20 14:43:09 -0700 | [diff] [blame] | 385 | * Process bitmap data from semi-mt protocols. Returns the number of |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 386 | * fingers detected. A return value of 0 means at least one of the |
| 387 | * bitmaps was empty. |
| 388 | * |
| 389 | * The bitmaps don't have enough data to track fingers, so this function |
| 390 | * only generates points representing a bounding box of all contacts. |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 391 | * These points are returned in fields->mt when the return value |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 392 | * is greater than 0. |
| 393 | */ |
Kevin Cernekee | 7a9f73e | 2013-02-13 22:24:55 -0800 | [diff] [blame] | 394 | static int alps_process_bitmap(struct alps_data *priv, |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 395 | struct alps_fields *fields) |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 396 | { |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 397 | int i, fingers_x = 0, fingers_y = 0, fingers, closest; |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 398 | struct alps_bitmap_point x_low = {0,}, x_high = {0,}; |
| 399 | struct alps_bitmap_point y_low = {0,}, y_high = {0,}; |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 400 | struct input_mt_pos corner[4]; |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 401 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 402 | if (!fields->x_map || !fields->y_map) |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 403 | return 0; |
| 404 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 405 | alps_get_bitmap_points(fields->x_map, &x_low, &x_high, &fingers_x); |
| 406 | alps_get_bitmap_points(fields->y_map, &y_low, &y_high, &fingers_y); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 407 | |
| 408 | /* |
| 409 | * Fingers can overlap, so we use the maximum count of fingers |
| 410 | * on either axis as the finger count. |
| 411 | */ |
| 412 | fingers = max(fingers_x, fingers_y); |
| 413 | |
| 414 | /* |
Hans de Goede | 20bea68 | 2014-07-25 22:33:33 -0700 | [diff] [blame] | 415 | * If an axis reports only a single contact, we have overlapping or |
| 416 | * adjacent fingers. Divide the single contact between the two points. |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 417 | */ |
Hans de Goede | 20bea68 | 2014-07-25 22:33:33 -0700 | [diff] [blame] | 418 | if (fingers_x == 1) { |
Hans de Goede | 28835f4 | 2014-07-25 22:42:53 -0700 | [diff] [blame] | 419 | i = (x_low.num_bits - 1) / 2; |
Hans de Goede | 20bea68 | 2014-07-25 22:33:33 -0700 | [diff] [blame] | 420 | x_low.num_bits = x_low.num_bits - i; |
| 421 | x_high.start_bit = x_low.start_bit + i; |
| 422 | x_high.num_bits = max(i, 1); |
| 423 | } |
| 424 | if (fingers_y == 1) { |
Hans de Goede | 28835f4 | 2014-07-25 22:42:53 -0700 | [diff] [blame] | 425 | i = (y_low.num_bits - 1) / 2; |
Hans de Goede | 20bea68 | 2014-07-25 22:33:33 -0700 | [diff] [blame] | 426 | y_low.num_bits = y_low.num_bits - i; |
| 427 | y_high.start_bit = y_low.start_bit + i; |
| 428 | y_high.num_bits = max(i, 1); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 429 | } |
| 430 | |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 431 | /* top-left corner */ |
| 432 | corner[0].x = |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 433 | (priv->x_max * (2 * x_low.start_bit + x_low.num_bits - 1)) / |
| 434 | (2 * (priv->x_bits - 1)); |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 435 | corner[0].y = |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 436 | (priv->y_max * (2 * y_low.start_bit + y_low.num_bits - 1)) / |
| 437 | (2 * (priv->y_bits - 1)); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 438 | |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 439 | /* top-right corner */ |
| 440 | corner[1].x = |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 441 | (priv->x_max * (2 * x_high.start_bit + x_high.num_bits - 1)) / |
| 442 | (2 * (priv->x_bits - 1)); |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 443 | corner[1].y = |
| 444 | (priv->y_max * (2 * y_low.start_bit + y_low.num_bits - 1)) / |
| 445 | (2 * (priv->y_bits - 1)); |
| 446 | |
| 447 | /* bottom-right corner */ |
| 448 | corner[2].x = |
| 449 | (priv->x_max * (2 * x_high.start_bit + x_high.num_bits - 1)) / |
| 450 | (2 * (priv->x_bits - 1)); |
| 451 | corner[2].y = |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 452 | (priv->y_max * (2 * y_high.start_bit + y_high.num_bits - 1)) / |
| 453 | (2 * (priv->y_bits - 1)); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 454 | |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 455 | /* bottom-left corner */ |
| 456 | corner[3].x = |
| 457 | (priv->x_max * (2 * x_low.start_bit + x_low.num_bits - 1)) / |
| 458 | (2 * (priv->x_bits - 1)); |
| 459 | corner[3].y = |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 460 | (priv->y_max * (2 * y_high.start_bit + y_high.num_bits - 1)) / |
| 461 | (2 * (priv->y_bits - 1)); |
| 462 | |
Hans de Goede | dccf1dd | 2015-05-20 14:43:09 -0700 | [diff] [blame] | 463 | /* x-bitmap order is reversed on v5 touchpads */ |
| 464 | if (priv->proto_version == ALPS_PROTO_V5) { |
| 465 | for (i = 0; i < 4; i++) |
| 466 | corner[i].x = priv->x_max - corner[i].x; |
Hans de Goede | 40e8f53 | 2014-07-25 22:37:15 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Hans de Goede | dccf1dd | 2015-05-20 14:43:09 -0700 | [diff] [blame] | 469 | /* y-bitmap order is reversed on v3 and v4 touchpads */ |
| 470 | if (priv->proto_version == ALPS_PROTO_V3 || |
| 471 | priv->proto_version == ALPS_PROTO_V4) { |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 472 | for (i = 0; i < 4; i++) |
| 473 | corner[i].y = priv->y_max - corner[i].y; |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 474 | } |
| 475 | |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 476 | /* |
| 477 | * We only select a corner for the second touch once per 2 finger |
| 478 | * touch sequence to avoid the chosen corner (and thus the coordinates) |
| 479 | * jumping around when the first touch is in the middle. |
| 480 | */ |
| 481 | if (priv->second_touch == -1) { |
| 482 | /* Find corner closest to our st coordinates */ |
| 483 | closest = 0x7fffffff; |
| 484 | for (i = 0; i < 4; i++) { |
| 485 | int dx = fields->st.x - corner[i].x; |
| 486 | int dy = fields->st.y - corner[i].y; |
| 487 | int distance = dx * dx + dy * dy; |
| 488 | |
| 489 | if (distance < closest) { |
| 490 | priv->second_touch = i; |
| 491 | closest = distance; |
| 492 | } |
| 493 | } |
| 494 | /* And select the opposite corner to use for the 2nd touch */ |
| 495 | priv->second_touch = (priv->second_touch + 2) % 4; |
| 496 | } |
| 497 | |
| 498 | fields->mt[0] = fields->st; |
| 499 | fields->mt[1] = corner[priv->second_touch]; |
| 500 | |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 501 | return fingers; |
| 502 | } |
| 503 | |
Hans de Goede | cdf333e | 2014-07-25 22:44:42 -0700 | [diff] [blame] | 504 | static void alps_set_slot(struct input_dev *dev, int slot, int x, int y) |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 505 | { |
| 506 | input_mt_slot(dev, slot); |
Hans de Goede | cdf333e | 2014-07-25 22:44:42 -0700 | [diff] [blame] | 507 | input_mt_report_slot_state(dev, MT_TOOL_FINGER, true); |
| 508 | input_report_abs(dev, ABS_MT_POSITION_X, x); |
| 509 | input_report_abs(dev, ABS_MT_POSITION_Y, y); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 510 | } |
| 511 | |
Hans de Goede | cdf333e | 2014-07-25 22:44:42 -0700 | [diff] [blame] | 512 | static void alps_report_mt_data(struct psmouse *psmouse, int n) |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 513 | { |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 514 | struct alps_data *priv = psmouse->private; |
| 515 | struct input_dev *dev = psmouse->dev; |
| 516 | struct alps_fields *f = &priv->f; |
Hans de Goede | cdf333e | 2014-07-25 22:44:42 -0700 | [diff] [blame] | 517 | int i, slot[MAX_TOUCHES]; |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 518 | |
Henrik Rydberg | 448c7f38 | 2015-02-01 11:25:14 -0800 | [diff] [blame] | 519 | input_mt_assign_slots(dev, slot, f->mt, n, 0); |
Hans de Goede | cdf333e | 2014-07-25 22:44:42 -0700 | [diff] [blame] | 520 | for (i = 0; i < n; i++) |
| 521 | alps_set_slot(dev, slot[i], f->mt[i].x, f->mt[i].y); |
| 522 | |
| 523 | input_mt_sync_frame(dev); |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 524 | } |
| 525 | |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 526 | static void alps_report_semi_mt_data(struct psmouse *psmouse, int fingers) |
| 527 | { |
| 528 | struct alps_data *priv = psmouse->private; |
| 529 | struct input_dev *dev = psmouse->dev; |
| 530 | struct alps_fields *f = &priv->f; |
| 531 | |
| 532 | /* Use st data when we don't have mt data */ |
| 533 | if (fingers < 2) { |
| 534 | f->mt[0].x = f->st.x; |
| 535 | f->mt[0].y = f->st.y; |
| 536 | fingers = f->pressure > 0 ? 1 : 0; |
Hans de Goede | 4dd2657 | 2015-05-20 14:41:10 -0700 | [diff] [blame] | 537 | priv->second_touch = -1; |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 538 | } |
| 539 | |
Hans de Goede | 1662c033 | 2015-05-20 14:42:15 -0700 | [diff] [blame] | 540 | if (fingers >= 1) |
| 541 | alps_set_slot(dev, 0, f->mt[0].x, f->mt[0].y); |
| 542 | if (fingers >= 2) |
| 543 | alps_set_slot(dev, 1, f->mt[1].x, f->mt[1].y); |
| 544 | input_mt_sync_frame(dev); |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 545 | |
| 546 | input_mt_report_finger_count(dev, fingers); |
| 547 | |
| 548 | input_report_key(dev, BTN_LEFT, f->left); |
| 549 | input_report_key(dev, BTN_RIGHT, f->right); |
| 550 | input_report_key(dev, BTN_MIDDLE, f->middle); |
| 551 | |
| 552 | input_report_abs(dev, ABS_PRESSURE, f->pressure); |
| 553 | |
| 554 | input_sync(dev); |
| 555 | } |
| 556 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 557 | static void alps_process_trackstick_packet_v3(struct psmouse *psmouse) |
| 558 | { |
| 559 | struct alps_data *priv = psmouse->private; |
| 560 | unsigned char *packet = psmouse->packet; |
| 561 | struct input_dev *dev = priv->dev2; |
| 562 | int x, y, z, left, right, middle; |
| 563 | |
Pali Rohár | 34412ba | 2015-01-09 12:48:58 -0800 | [diff] [blame] | 564 | /* It should be a DualPoint when received trackstick packet */ |
| 565 | if (!(priv->flags & ALPS_DUALPOINT)) { |
| 566 | psmouse_warn(psmouse, |
| 567 | "Rejected trackstick packet from non DualPoint device"); |
| 568 | return; |
| 569 | } |
| 570 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 571 | /* Sanity check packet */ |
| 572 | if (!(packet[0] & 0x40)) { |
| 573 | psmouse_dbg(psmouse, "Bad trackstick packet, discarding\n"); |
| 574 | return; |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * There's a special packet that seems to indicate the end |
| 579 | * of a stream of trackstick data. Filter these out. |
| 580 | */ |
| 581 | if (packet[1] == 0x7f && packet[2] == 0x7f && packet[4] == 0x7f) |
| 582 | return; |
| 583 | |
| 584 | x = (s8)(((packet[0] & 0x20) << 2) | (packet[1] & 0x7f)); |
| 585 | y = (s8)(((packet[0] & 0x10) << 3) | (packet[2] & 0x7f)); |
| 586 | z = (packet[4] & 0x7c) >> 2; |
| 587 | |
| 588 | /* |
| 589 | * The x and y values tend to be quite large, and when used |
| 590 | * alone the trackstick is difficult to use. Scale them down |
| 591 | * to compensate. |
| 592 | */ |
| 593 | x /= 8; |
| 594 | y /= 8; |
| 595 | |
| 596 | input_report_rel(dev, REL_X, x); |
| 597 | input_report_rel(dev, REL_Y, -y); |
| 598 | |
| 599 | /* |
| 600 | * Most ALPS models report the trackstick buttons in the touchpad |
| 601 | * packets, but a few report them here. No reliable way has been |
| 602 | * found to differentiate between the models upfront, so we enable |
| 603 | * the quirk in response to seeing a button press in the trackstick |
| 604 | * packet. |
| 605 | */ |
| 606 | left = packet[3] & 0x01; |
| 607 | right = packet[3] & 0x02; |
| 608 | middle = packet[3] & 0x04; |
| 609 | |
| 610 | if (!(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) && |
| 611 | (left || right || middle)) |
| 612 | priv->quirks |= ALPS_QUIRK_TRACKSTICK_BUTTONS; |
| 613 | |
| 614 | if (priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS) { |
| 615 | input_report_key(dev, BTN_LEFT, left); |
| 616 | input_report_key(dev, BTN_RIGHT, right); |
| 617 | input_report_key(dev, BTN_MIDDLE, middle); |
| 618 | } |
| 619 | |
| 620 | input_sync(dev); |
| 621 | return; |
| 622 | } |
| 623 | |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 624 | static void alps_decode_buttons_v3(struct alps_fields *f, unsigned char *p) |
| 625 | { |
| 626 | f->left = !!(p[3] & 0x01); |
| 627 | f->right = !!(p[3] & 0x02); |
| 628 | f->middle = !!(p[3] & 0x04); |
| 629 | |
| 630 | f->ts_left = !!(p[3] & 0x10); |
| 631 | f->ts_right = !!(p[3] & 0x20); |
| 632 | f->ts_middle = !!(p[3] & 0x40); |
| 633 | } |
| 634 | |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 635 | static int alps_decode_pinnacle(struct alps_fields *f, unsigned char *p, |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 636 | struct psmouse *psmouse) |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 637 | { |
| 638 | f->first_mp = !!(p[4] & 0x40); |
| 639 | f->is_mp = !!(p[0] & 0x40); |
| 640 | |
Hans de Goede | a839cd5 | 2015-05-20 14:39:21 -0700 | [diff] [blame] | 641 | if (f->is_mp) { |
| 642 | f->fingers = (p[5] & 0x3) + 1; |
| 643 | f->x_map = ((p[4] & 0x7e) << 8) | |
| 644 | ((p[1] & 0x7f) << 2) | |
| 645 | ((p[0] & 0x30) >> 4); |
| 646 | f->y_map = ((p[3] & 0x70) << 4) | |
| 647 | ((p[2] & 0x7f) << 1) | |
| 648 | (p[4] & 0x01); |
| 649 | } else { |
| 650 | f->st.x = ((p[1] & 0x7f) << 4) | ((p[4] & 0x30) >> 2) | |
| 651 | ((p[0] & 0x30) >> 4); |
| 652 | f->st.y = ((p[2] & 0x7f) << 4) | (p[4] & 0x0f); |
| 653 | f->pressure = p[5] & 0x7f; |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 654 | |
Hans de Goede | a839cd5 | 2015-05-20 14:39:21 -0700 | [diff] [blame] | 655 | alps_decode_buttons_v3(f, p); |
| 656 | } |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 657 | |
| 658 | return 0; |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 659 | } |
| 660 | |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 661 | static int alps_decode_rushmore(struct alps_fields *f, unsigned char *p, |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 662 | struct psmouse *psmouse) |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 663 | { |
Hans de Goede | aab9cf7 | 2015-05-20 14:38:33 -0700 | [diff] [blame] | 664 | f->first_mp = !!(p[4] & 0x40); |
Yunkang Tang | f105e34 | 2014-07-25 22:29:24 -0700 | [diff] [blame] | 665 | f->is_mp = !!(p[5] & 0x40); |
Hans de Goede | aab9cf7 | 2015-05-20 14:38:33 -0700 | [diff] [blame] | 666 | |
Hans de Goede | a839cd5 | 2015-05-20 14:39:21 -0700 | [diff] [blame] | 667 | if (f->is_mp) { |
| 668 | f->fingers = max((p[5] & 0x3), ((p[5] >> 2) & 0x3)) + 1; |
| 669 | f->x_map = ((p[5] & 0x10) << 11) | |
| 670 | ((p[4] & 0x7e) << 8) | |
| 671 | ((p[1] & 0x7f) << 2) | |
| 672 | ((p[0] & 0x30) >> 4); |
| 673 | f->y_map = ((p[5] & 0x20) << 6) | |
| 674 | ((p[3] & 0x70) << 4) | |
| 675 | ((p[2] & 0x7f) << 1) | |
| 676 | (p[4] & 0x01); |
| 677 | } else { |
| 678 | f->st.x = ((p[1] & 0x7f) << 4) | ((p[4] & 0x30) >> 2) | |
| 679 | ((p[0] & 0x30) >> 4); |
| 680 | f->st.y = ((p[2] & 0x7f) << 4) | (p[4] & 0x0f); |
| 681 | f->pressure = p[5] & 0x7f; |
Hans de Goede | aab9cf7 | 2015-05-20 14:38:33 -0700 | [diff] [blame] | 682 | |
Hans de Goede | a839cd5 | 2015-05-20 14:39:21 -0700 | [diff] [blame] | 683 | alps_decode_buttons_v3(f, p); |
| 684 | } |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 685 | |
| 686 | return 0; |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 687 | } |
| 688 | |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 689 | static int alps_decode_dolphin(struct alps_fields *f, unsigned char *p, |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 690 | struct psmouse *psmouse) |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 691 | { |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 692 | u64 palm_data = 0; |
| 693 | struct alps_data *priv = psmouse->private; |
| 694 | |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 695 | f->first_mp = !!(p[0] & 0x02); |
| 696 | f->is_mp = !!(p[0] & 0x20); |
| 697 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 698 | if (!f->is_mp) { |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 699 | f->st.x = ((p[1] & 0x7f) | ((p[4] & 0x0f) << 7)); |
| 700 | f->st.y = ((p[2] & 0x7f) | ((p[4] & 0xf0) << 3)); |
| 701 | f->pressure = (p[0] & 4) ? 0 : p[5] & 0x7f; |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 702 | alps_decode_buttons_v3(f, p); |
| 703 | } else { |
| 704 | f->fingers = ((p[0] & 0x6) >> 1 | |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 705 | (p[0] & 0x10) >> 2); |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 706 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 707 | palm_data = (p[1] & 0x7f) | |
| 708 | ((p[2] & 0x7f) << 7) | |
| 709 | ((p[4] & 0x7f) << 14) | |
| 710 | ((p[5] & 0x7f) << 21) | |
| 711 | ((p[3] & 0x07) << 28) | |
| 712 | (((u64)p[3] & 0x70) << 27) | |
| 713 | (((u64)p[0] & 0x01) << 34); |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 714 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 715 | /* Y-profile is stored in P(0) to p(n-1), n = y_bits; */ |
| 716 | f->y_map = palm_data & (BIT(priv->y_bits) - 1); |
| 717 | |
| 718 | /* X-profile is stored in p(n) to p(n+m-1), m = x_bits; */ |
| 719 | f->x_map = (palm_data >> priv->y_bits) & |
| 720 | (BIT(priv->x_bits) - 1); |
| 721 | } |
Hans de Goede | 38c11eaa | 2014-07-25 22:48:44 -0700 | [diff] [blame] | 722 | |
| 723 | return 0; |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 724 | } |
| 725 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 726 | static void alps_process_touchpad_packet_v3_v5(struct psmouse *psmouse) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 727 | { |
| 728 | struct alps_data *priv = psmouse->private; |
| 729 | unsigned char *packet = psmouse->packet; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 730 | struct input_dev *dev2 = priv->dev2; |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 731 | struct alps_fields *f = &priv->f; |
| 732 | int fingers = 0; |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 733 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 734 | memset(f, 0, sizeof(*f)); |
| 735 | |
| 736 | priv->decode_fields(f, packet, psmouse); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 737 | |
| 738 | /* |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 739 | * There's no single feature of touchpad position and bitmap packets |
| 740 | * that can be used to distinguish between them. We rely on the fact |
| 741 | * that a bitmap packet should always follow a position packet with |
| 742 | * bit 6 of packet[4] set. |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 743 | */ |
| 744 | if (priv->multi_packet) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 745 | /* |
| 746 | * Sometimes a position packet will indicate a multi-packet |
| 747 | * sequence, but then what follows is another position |
| 748 | * packet. Check for this, and when it happens process the |
| 749 | * position packet as usual. |
| 750 | */ |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 751 | if (f->is_mp) { |
| 752 | fingers = f->fingers; |
Hans de Goede | 44b77f3 | 2015-05-20 14:40:06 -0700 | [diff] [blame] | 753 | /* |
| 754 | * Bitmap processing uses position packet's coordinate |
| 755 | * data, so we need to do decode it first. |
| 756 | */ |
| 757 | priv->decode_fields(f, priv->multi_data, psmouse); |
Hans de Goede | dccf1dd | 2015-05-20 14:43:09 -0700 | [diff] [blame] | 758 | if (alps_process_bitmap(priv, f) == 0) |
| 759 | fingers = 0; /* Use st data */ |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 760 | } else { |
| 761 | priv->multi_packet = 0; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 762 | } |
| 763 | } |
| 764 | |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 765 | /* |
| 766 | * Bit 6 of byte 0 is not usually set in position packets. The only |
| 767 | * times it seems to be set is in situations where the data is |
| 768 | * suspect anyway, e.g. a palm resting flat on the touchpad. Given |
| 769 | * this combined with the fact that this bit is useful for filtering |
| 770 | * out misidentified bitmap packets, we reject anything with this |
| 771 | * bit set. |
| 772 | */ |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 773 | if (f->is_mp) |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 774 | return; |
| 775 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 776 | if (!priv->multi_packet && f->first_mp) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 777 | priv->multi_packet = 1; |
Seth Forshee | 01ce661 | 2011-11-07 19:54:13 -0800 | [diff] [blame] | 778 | memcpy(priv->multi_data, packet, sizeof(priv->multi_data)); |
| 779 | return; |
| 780 | } |
| 781 | |
| 782 | priv->multi_packet = 0; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 783 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 784 | /* |
| 785 | * Sometimes the hardware sends a single packet with z = 0 |
| 786 | * in the middle of a stream. Real releases generate packets |
| 787 | * with x, y, and z all zero, so these seem to be flukes. |
| 788 | * Ignore them. |
| 789 | */ |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 790 | if (f->st.x && f->st.y && !f->pressure) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 791 | return; |
| 792 | |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 793 | alps_report_semi_mt_data(psmouse, fingers); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 794 | |
Pali Rohár | 34412ba | 2015-01-09 12:48:58 -0800 | [diff] [blame] | 795 | if ((priv->flags & ALPS_DUALPOINT) && |
| 796 | !(priv->quirks & ALPS_QUIRK_TRACKSTICK_BUTTONS)) { |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 797 | input_report_key(dev2, BTN_LEFT, f->ts_left); |
| 798 | input_report_key(dev2, BTN_RIGHT, f->ts_right); |
| 799 | input_report_key(dev2, BTN_MIDDLE, f->ts_middle); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 800 | input_sync(dev2); |
| 801 | } |
| 802 | } |
| 803 | |
| 804 | static void alps_process_packet_v3(struct psmouse *psmouse) |
| 805 | { |
| 806 | unsigned char *packet = psmouse->packet; |
| 807 | |
| 808 | /* |
| 809 | * v3 protocol packets come in three types, two representing |
| 810 | * touchpad data and one representing trackstick data. |
| 811 | * Trackstick packets seem to be distinguished by always |
| 812 | * having 0x3f in the last byte. This value has never been |
| 813 | * observed in the last byte of either of the other types |
| 814 | * of packets. |
| 815 | */ |
| 816 | if (packet[5] == 0x3f) { |
| 817 | alps_process_trackstick_packet_v3(psmouse); |
| 818 | return; |
| 819 | } |
| 820 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 821 | alps_process_touchpad_packet_v3_v5(psmouse); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 822 | } |
| 823 | |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 824 | static void alps_process_packet_v6(struct psmouse *psmouse) |
| 825 | { |
| 826 | struct alps_data *priv = psmouse->private; |
| 827 | unsigned char *packet = psmouse->packet; |
| 828 | struct input_dev *dev = psmouse->dev; |
| 829 | struct input_dev *dev2 = priv->dev2; |
| 830 | int x, y, z, left, right, middle; |
| 831 | |
| 832 | /* |
| 833 | * We can use Byte5 to distinguish if the packet is from Touchpad |
| 834 | * or Trackpoint. |
| 835 | * Touchpad: 0 - 0x7E |
| 836 | * Trackpoint: 0x7F |
| 837 | */ |
| 838 | if (packet[5] == 0x7F) { |
| 839 | /* It should be a DualPoint when received Trackpoint packet */ |
Pali Rohár | 34412ba | 2015-01-09 12:48:58 -0800 | [diff] [blame] | 840 | if (!(priv->flags & ALPS_DUALPOINT)) { |
| 841 | psmouse_warn(psmouse, |
| 842 | "Rejected trackstick packet from non DualPoint device"); |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 843 | return; |
Pali Rohár | 34412ba | 2015-01-09 12:48:58 -0800 | [diff] [blame] | 844 | } |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 845 | |
| 846 | /* Trackpoint packet */ |
| 847 | x = packet[1] | ((packet[3] & 0x20) << 2); |
| 848 | y = packet[2] | ((packet[3] & 0x40) << 1); |
| 849 | z = packet[4]; |
| 850 | left = packet[3] & 0x01; |
| 851 | right = packet[3] & 0x02; |
| 852 | middle = packet[3] & 0x04; |
| 853 | |
| 854 | /* To prevent the cursor jump when finger lifted */ |
| 855 | if (x == 0x7F && y == 0x7F && z == 0x7F) |
| 856 | x = y = z = 0; |
| 857 | |
| 858 | /* Divide 4 since trackpoint's speed is too fast */ |
| 859 | input_report_rel(dev2, REL_X, (char)x / 4); |
| 860 | input_report_rel(dev2, REL_Y, -((char)y / 4)); |
| 861 | |
| 862 | input_report_key(dev2, BTN_LEFT, left); |
| 863 | input_report_key(dev2, BTN_RIGHT, right); |
| 864 | input_report_key(dev2, BTN_MIDDLE, middle); |
| 865 | |
| 866 | input_sync(dev2); |
| 867 | return; |
| 868 | } |
| 869 | |
| 870 | /* Touchpad packet */ |
| 871 | x = packet[1] | ((packet[3] & 0x78) << 4); |
| 872 | y = packet[2] | ((packet[4] & 0x78) << 4); |
| 873 | z = packet[5]; |
| 874 | left = packet[3] & 0x01; |
| 875 | right = packet[3] & 0x02; |
| 876 | |
| 877 | if (z > 30) |
| 878 | input_report_key(dev, BTN_TOUCH, 1); |
| 879 | if (z < 25) |
| 880 | input_report_key(dev, BTN_TOUCH, 0); |
| 881 | |
| 882 | if (z > 0) { |
| 883 | input_report_abs(dev, ABS_X, x); |
| 884 | input_report_abs(dev, ABS_Y, y); |
| 885 | } |
| 886 | |
| 887 | input_report_abs(dev, ABS_PRESSURE, z); |
| 888 | input_report_key(dev, BTN_TOOL_FINGER, z > 0); |
| 889 | |
| 890 | /* v6 touchpad does not have middle button */ |
| 891 | input_report_key(dev, BTN_LEFT, left); |
| 892 | input_report_key(dev, BTN_RIGHT, right); |
| 893 | |
| 894 | input_sync(dev); |
| 895 | } |
| 896 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 897 | static void alps_process_packet_v4(struct psmouse *psmouse) |
| 898 | { |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 899 | struct alps_data *priv = psmouse->private; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 900 | unsigned char *packet = psmouse->packet; |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 901 | struct alps_fields *f = &priv->f; |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 902 | int offset; |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 903 | |
| 904 | /* |
| 905 | * v4 has a 6-byte encoding for bitmap data, but this data is |
| 906 | * broken up between 3 normal packets. Use priv->multi_packet to |
| 907 | * track our position in the bitmap packet. |
| 908 | */ |
| 909 | if (packet[6] & 0x40) { |
| 910 | /* sync, reset position */ |
| 911 | priv->multi_packet = 0; |
| 912 | } |
| 913 | |
| 914 | if (WARN_ON_ONCE(priv->multi_packet > 2)) |
| 915 | return; |
| 916 | |
| 917 | offset = 2 * priv->multi_packet; |
| 918 | priv->multi_data[offset] = packet[6]; |
| 919 | priv->multi_data[offset + 1] = packet[7]; |
| 920 | |
Hans de Goede | 44b77f3 | 2015-05-20 14:40:06 -0700 | [diff] [blame] | 921 | f->left = !!(packet[4] & 0x01); |
| 922 | f->right = !!(packet[4] & 0x02); |
| 923 | |
| 924 | f->st.x = ((packet[1] & 0x7f) << 4) | ((packet[3] & 0x30) >> 2) | |
| 925 | ((packet[0] & 0x30) >> 4); |
| 926 | f->st.y = ((packet[2] & 0x7f) << 4) | (packet[3] & 0x0f); |
| 927 | f->pressure = packet[5] & 0x7f; |
| 928 | |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 929 | if (++priv->multi_packet > 2) { |
| 930 | priv->multi_packet = 0; |
| 931 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 932 | f->x_map = ((priv->multi_data[2] & 0x1f) << 10) | |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 933 | ((priv->multi_data[3] & 0x60) << 3) | |
| 934 | ((priv->multi_data[0] & 0x3f) << 2) | |
| 935 | ((priv->multi_data[1] & 0x60) >> 5); |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 936 | f->y_map = ((priv->multi_data[5] & 0x01) << 10) | |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 937 | ((priv->multi_data[3] & 0x1f) << 5) | |
| 938 | (priv->multi_data[1] & 0x1f); |
| 939 | |
Hans de Goede | 02d0425 | 2014-07-25 22:43:35 -0700 | [diff] [blame] | 940 | f->fingers = alps_process_bitmap(priv, f); |
George Pantalos | 3b7e09f | 2012-05-10 22:31:59 -0700 | [diff] [blame] | 941 | } |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 942 | |
Hans de Goede | 68c2187 | 2014-07-25 22:47:25 -0700 | [diff] [blame] | 943 | alps_report_semi_mt_data(psmouse, f->fingers); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 944 | } |
| 945 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 946 | static bool alps_is_valid_package_v7(struct psmouse *psmouse) |
| 947 | { |
| 948 | switch (psmouse->pktcnt) { |
| 949 | case 3: |
| 950 | return (psmouse->packet[2] & 0x40) == 0x40; |
| 951 | case 4: |
| 952 | return (psmouse->packet[3] & 0x48) == 0x48; |
| 953 | case 6: |
| 954 | return (psmouse->packet[5] & 0x40) == 0x00; |
| 955 | } |
| 956 | return true; |
| 957 | } |
| 958 | |
| 959 | static unsigned char alps_get_packet_id_v7(char *byte) |
| 960 | { |
| 961 | unsigned char packet_id; |
| 962 | |
| 963 | if (byte[4] & 0x40) |
| 964 | packet_id = V7_PACKET_ID_TWO; |
| 965 | else if (byte[4] & 0x01) |
| 966 | packet_id = V7_PACKET_ID_MULTI; |
| 967 | else if ((byte[0] & 0x10) && !(byte[4] & 0x43)) |
| 968 | packet_id = V7_PACKET_ID_NEW; |
| 969 | else if (byte[1] == 0x00 && byte[4] == 0x00) |
| 970 | packet_id = V7_PACKET_ID_IDLE; |
| 971 | else |
| 972 | packet_id = V7_PACKET_ID_UNKNOWN; |
| 973 | |
| 974 | return packet_id; |
| 975 | } |
| 976 | |
| 977 | static void alps_get_finger_coordinate_v7(struct input_mt_pos *mt, |
| 978 | unsigned char *pkt, |
| 979 | unsigned char pkt_id) |
| 980 | { |
| 981 | mt[0].x = ((pkt[2] & 0x80) << 4); |
| 982 | mt[0].x |= ((pkt[2] & 0x3F) << 5); |
| 983 | mt[0].x |= ((pkt[3] & 0x30) >> 1); |
| 984 | mt[0].x |= (pkt[3] & 0x07); |
| 985 | mt[0].y = (pkt[1] << 3) | (pkt[0] & 0x07); |
| 986 | |
| 987 | mt[1].x = ((pkt[3] & 0x80) << 4); |
| 988 | mt[1].x |= ((pkt[4] & 0x80) << 3); |
| 989 | mt[1].x |= ((pkt[4] & 0x3F) << 4); |
| 990 | mt[1].y = ((pkt[5] & 0x80) << 3); |
| 991 | mt[1].y |= ((pkt[5] & 0x3F) << 4); |
| 992 | |
| 993 | switch (pkt_id) { |
| 994 | case V7_PACKET_ID_TWO: |
| 995 | mt[1].x &= ~0x000F; |
| 996 | mt[1].y |= 0x000F; |
Hans de Goede | 72eceab | 2015-05-20 14:37:41 -0700 | [diff] [blame] | 997 | /* Detect false-postive touches where x & y report max value */ |
| 998 | if (mt[1].y == 0x7ff && mt[1].x == 0xff0) { |
| 999 | mt[1].x = 0; |
| 1000 | /* y gets set to 0 at the end of this function */ |
| 1001 | } |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1002 | break; |
| 1003 | |
| 1004 | case V7_PACKET_ID_MULTI: |
| 1005 | mt[1].x &= ~0x003F; |
| 1006 | mt[1].y &= ~0x0020; |
| 1007 | mt[1].y |= ((pkt[4] & 0x02) << 4); |
| 1008 | mt[1].y |= 0x001F; |
| 1009 | break; |
| 1010 | |
| 1011 | case V7_PACKET_ID_NEW: |
| 1012 | mt[1].x &= ~0x003F; |
| 1013 | mt[1].x |= (pkt[0] & 0x20); |
| 1014 | mt[1].y |= 0x000F; |
| 1015 | break; |
| 1016 | } |
| 1017 | |
| 1018 | mt[0].y = 0x7FF - mt[0].y; |
| 1019 | mt[1].y = 0x7FF - mt[1].y; |
| 1020 | } |
| 1021 | |
| 1022 | static int alps_get_mt_count(struct input_mt_pos *mt) |
| 1023 | { |
Hans de Goede | 7091c44 | 2014-12-18 09:53:34 -0800 | [diff] [blame] | 1024 | int i, fingers = 0; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1025 | |
Hans de Goede | 7091c44 | 2014-12-18 09:53:34 -0800 | [diff] [blame] | 1026 | for (i = 0; i < MAX_TOUCHES; i++) { |
| 1027 | if (mt[i].x != 0 || mt[i].y != 0) |
| 1028 | fingers++; |
| 1029 | } |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1030 | |
Hans de Goede | 7091c44 | 2014-12-18 09:53:34 -0800 | [diff] [blame] | 1031 | return fingers; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1032 | } |
| 1033 | |
| 1034 | static int alps_decode_packet_v7(struct alps_fields *f, |
| 1035 | unsigned char *p, |
| 1036 | struct psmouse *psmouse) |
| 1037 | { |
Hans de Goede | d27eb79 | 2014-12-18 09:55:14 -0800 | [diff] [blame] | 1038 | struct alps_data *priv = psmouse->private; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1039 | unsigned char pkt_id; |
| 1040 | |
| 1041 | pkt_id = alps_get_packet_id_v7(p); |
| 1042 | if (pkt_id == V7_PACKET_ID_IDLE) |
| 1043 | return 0; |
| 1044 | if (pkt_id == V7_PACKET_ID_UNKNOWN) |
| 1045 | return -1; |
Hans de Goede | 8b23811 | 2014-12-18 09:52:59 -0800 | [diff] [blame] | 1046 | /* |
| 1047 | * NEW packets are send to indicate a discontinuity in the finger |
| 1048 | * coordinate reporting. Specifically a finger may have moved from |
| 1049 | * slot 0 to 1 or vice versa. INPUT_MT_TRACK takes care of this for |
| 1050 | * us. |
| 1051 | * |
| 1052 | * NEW packets have 3 problems: |
| 1053 | * 1) They do not contain middle / right button info (on non clickpads) |
| 1054 | * this can be worked around by preserving the old button state |
| 1055 | * 2) They do not contain an accurate fingercount, and they are |
| 1056 | * typically send when the number of fingers changes. We cannot use |
| 1057 | * the old finger count as that may mismatch with the amount of |
| 1058 | * touch coordinates we've available in the NEW packet |
| 1059 | * 3) Their x data for the second touch is inaccurate leading to |
| 1060 | * a possible jump of the x coordinate by 16 units when the first |
| 1061 | * non NEW packet comes in |
| 1062 | * Since problems 2 & 3 cannot be worked around, just ignore them. |
| 1063 | */ |
| 1064 | if (pkt_id == V7_PACKET_ID_NEW) |
| 1065 | return 1; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1066 | |
| 1067 | alps_get_finger_coordinate_v7(f->mt, p, pkt_id); |
| 1068 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1069 | if (pkt_id == V7_PACKET_ID_TWO) |
| 1070 | f->fingers = alps_get_mt_count(f->mt); |
Hans de Goede | 8b23811 | 2014-12-18 09:52:59 -0800 | [diff] [blame] | 1071 | else /* pkt_id == V7_PACKET_ID_MULTI */ |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1072 | f->fingers = 3 + (p[5] & 0x03); |
| 1073 | |
Hans de Goede | d27eb79 | 2014-12-18 09:55:14 -0800 | [diff] [blame] | 1074 | f->left = (p[0] & 0x80) >> 7; |
| 1075 | if (priv->flags & ALPS_BUTTONPAD) { |
| 1076 | if (p[0] & 0x20) |
| 1077 | f->fingers++; |
| 1078 | if (p[0] & 0x10) |
| 1079 | f->fingers++; |
| 1080 | } else { |
| 1081 | f->right = (p[0] & 0x20) >> 5; |
| 1082 | f->middle = (p[0] & 0x10) >> 4; |
| 1083 | } |
| 1084 | |
Hans de Goede | 7091c44 | 2014-12-18 09:53:34 -0800 | [diff] [blame] | 1085 | /* Sometimes a single touch is reported in mt[1] rather then mt[0] */ |
| 1086 | if (f->fingers == 1 && f->mt[0].x == 0 && f->mt[0].y == 0) { |
| 1087 | f->mt[0].x = f->mt[1].x; |
| 1088 | f->mt[0].y = f->mt[1].y; |
| 1089 | f->mt[1].x = 0; |
| 1090 | f->mt[1].y = 0; |
| 1091 | } |
| 1092 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1093 | return 0; |
| 1094 | } |
| 1095 | |
| 1096 | static void alps_process_trackstick_packet_v7(struct psmouse *psmouse) |
| 1097 | { |
| 1098 | struct alps_data *priv = psmouse->private; |
| 1099 | unsigned char *packet = psmouse->packet; |
| 1100 | struct input_dev *dev2 = priv->dev2; |
| 1101 | int x, y, z, left, right, middle; |
| 1102 | |
Pali Rohár | 34412ba | 2015-01-09 12:48:58 -0800 | [diff] [blame] | 1103 | /* It should be a DualPoint when received trackstick packet */ |
| 1104 | if (!(priv->flags & ALPS_DUALPOINT)) { |
| 1105 | psmouse_warn(psmouse, |
| 1106 | "Rejected trackstick packet from non DualPoint device"); |
| 1107 | return; |
| 1108 | } |
| 1109 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1110 | x = ((packet[2] & 0xbf)) | ((packet[3] & 0x10) << 2); |
| 1111 | y = (packet[3] & 0x07) | (packet[4] & 0xb8) | |
| 1112 | ((packet[3] & 0x20) << 1); |
| 1113 | z = (packet[5] & 0x3f) | ((packet[3] & 0x80) >> 1); |
| 1114 | |
| 1115 | left = (packet[1] & 0x01); |
| 1116 | right = (packet[1] & 0x02) >> 1; |
| 1117 | middle = (packet[1] & 0x04) >> 2; |
| 1118 | |
Hans de Goede | 088df2c | 2015-06-04 22:31:43 -0700 | [diff] [blame] | 1119 | input_report_rel(dev2, REL_X, (char)x); |
| 1120 | input_report_rel(dev2, REL_Y, -((char)y)); |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1121 | |
| 1122 | input_report_key(dev2, BTN_LEFT, left); |
| 1123 | input_report_key(dev2, BTN_RIGHT, right); |
| 1124 | input_report_key(dev2, BTN_MIDDLE, middle); |
| 1125 | |
| 1126 | input_sync(dev2); |
| 1127 | } |
| 1128 | |
| 1129 | static void alps_process_touchpad_packet_v7(struct psmouse *psmouse) |
| 1130 | { |
| 1131 | struct alps_data *priv = psmouse->private; |
| 1132 | struct input_dev *dev = psmouse->dev; |
| 1133 | struct alps_fields *f = &priv->f; |
| 1134 | |
| 1135 | memset(f, 0, sizeof(*f)); |
| 1136 | |
| 1137 | if (priv->decode_fields(f, psmouse->packet, psmouse)) |
| 1138 | return; |
| 1139 | |
| 1140 | alps_report_mt_data(psmouse, alps_get_mt_count(f->mt)); |
| 1141 | |
| 1142 | input_mt_report_finger_count(dev, f->fingers); |
| 1143 | |
| 1144 | input_report_key(dev, BTN_LEFT, f->left); |
| 1145 | input_report_key(dev, BTN_RIGHT, f->right); |
| 1146 | input_report_key(dev, BTN_MIDDLE, f->middle); |
| 1147 | |
| 1148 | input_sync(dev); |
| 1149 | } |
| 1150 | |
| 1151 | static void alps_process_packet_v7(struct psmouse *psmouse) |
| 1152 | { |
| 1153 | unsigned char *packet = psmouse->packet; |
| 1154 | |
| 1155 | if (packet[0] == 0x48 && (packet[4] & 0x47) == 0x06) |
| 1156 | alps_process_trackstick_packet_v7(psmouse); |
| 1157 | else |
| 1158 | alps_process_touchpad_packet_v7(psmouse); |
| 1159 | } |
| 1160 | |
Paul Donohue | 23fce36 | 2016-11-28 20:16:21 -0800 | [diff] [blame] | 1161 | static enum SS4_PACKET_ID alps_get_pkt_id_ss4_v2(unsigned char *byte) |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1162 | { |
Paul Donohue | 23fce36 | 2016-11-28 20:16:21 -0800 | [diff] [blame] | 1163 | enum SS4_PACKET_ID pkt_id = SS4_PACKET_ID_IDLE; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1164 | |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1165 | switch (byte[3] & 0x30) { |
| 1166 | case 0x00: |
Paul Donohue | 23fce36 | 2016-11-28 20:16:21 -0800 | [diff] [blame] | 1167 | if (SS4_IS_IDLE_V2(byte)) { |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1168 | pkt_id = SS4_PACKET_ID_IDLE; |
| 1169 | } else { |
| 1170 | pkt_id = SS4_PACKET_ID_ONE; |
| 1171 | } |
| 1172 | break; |
| 1173 | case 0x10: |
| 1174 | /* two-finger finger positions */ |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1175 | pkt_id = SS4_PACKET_ID_TWO; |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1176 | break; |
| 1177 | case 0x20: |
| 1178 | /* stick pointer */ |
| 1179 | pkt_id = SS4_PACKET_ID_STICK; |
| 1180 | break; |
| 1181 | case 0x30: |
| 1182 | /* third and fourth finger positions */ |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1183 | pkt_id = SS4_PACKET_ID_MULTI; |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1184 | break; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | return pkt_id; |
| 1188 | } |
| 1189 | |
| 1190 | static int alps_decode_ss4_v2(struct alps_fields *f, |
| 1191 | unsigned char *p, struct psmouse *psmouse) |
| 1192 | { |
| 1193 | struct alps_data *priv = psmouse->private; |
Paul Donohue | 23fce36 | 2016-11-28 20:16:21 -0800 | [diff] [blame] | 1194 | enum SS4_PACKET_ID pkt_id; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1195 | unsigned int no_data_x, no_data_y; |
| 1196 | |
| 1197 | pkt_id = alps_get_pkt_id_ss4_v2(p); |
| 1198 | |
| 1199 | /* Current packet is 1Finger coordinate packet */ |
| 1200 | switch (pkt_id) { |
| 1201 | case SS4_PACKET_ID_ONE: |
| 1202 | f->mt[0].x = SS4_1F_X_V2(p); |
| 1203 | f->mt[0].y = SS4_1F_Y_V2(p); |
| 1204 | f->pressure = ((SS4_1F_Z_V2(p)) * 2) & 0x7f; |
Ben Gamari | a831776 | 2016-10-04 11:40:44 -0700 | [diff] [blame] | 1205 | /* |
| 1206 | * When a button is held the device will give us events |
| 1207 | * with x, y, and pressure of 0. This causes annoying jumps |
| 1208 | * if a touch is released while the button is held. |
| 1209 | * Handle this by claiming zero contacts. |
| 1210 | */ |
| 1211 | f->fingers = f->pressure > 0 ? 1 : 0; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1212 | f->first_mp = 0; |
| 1213 | f->is_mp = 0; |
| 1214 | break; |
| 1215 | |
| 1216 | case SS4_PACKET_ID_TWO: |
| 1217 | if (priv->flags & ALPS_BUTTONPAD) { |
| 1218 | f->mt[0].x = SS4_BTL_MF_X_V2(p, 0); |
| 1219 | f->mt[0].y = SS4_BTL_MF_Y_V2(p, 0); |
| 1220 | f->mt[1].x = SS4_BTL_MF_X_V2(p, 1); |
| 1221 | f->mt[1].y = SS4_BTL_MF_Y_V2(p, 1); |
| 1222 | } else { |
| 1223 | f->mt[0].x = SS4_STD_MF_X_V2(p, 0); |
| 1224 | f->mt[0].y = SS4_STD_MF_Y_V2(p, 0); |
| 1225 | f->mt[1].x = SS4_STD_MF_X_V2(p, 1); |
| 1226 | f->mt[1].y = SS4_STD_MF_Y_V2(p, 1); |
| 1227 | } |
| 1228 | f->pressure = SS4_MF_Z_V2(p, 0) ? 0x30 : 0; |
| 1229 | |
| 1230 | if (SS4_IS_MF_CONTINUE(p)) { |
| 1231 | f->first_mp = 1; |
| 1232 | } else { |
| 1233 | f->fingers = 2; |
| 1234 | f->first_mp = 0; |
| 1235 | } |
| 1236 | f->is_mp = 0; |
| 1237 | |
| 1238 | break; |
| 1239 | |
| 1240 | case SS4_PACKET_ID_MULTI: |
| 1241 | if (priv->flags & ALPS_BUTTONPAD) { |
| 1242 | f->mt[2].x = SS4_BTL_MF_X_V2(p, 0); |
| 1243 | f->mt[2].y = SS4_BTL_MF_Y_V2(p, 0); |
| 1244 | f->mt[3].x = SS4_BTL_MF_X_V2(p, 1); |
| 1245 | f->mt[3].y = SS4_BTL_MF_Y_V2(p, 1); |
| 1246 | no_data_x = SS4_MFPACKET_NO_AX_BL; |
| 1247 | no_data_y = SS4_MFPACKET_NO_AY_BL; |
| 1248 | } else { |
| 1249 | f->mt[2].x = SS4_STD_MF_X_V2(p, 0); |
| 1250 | f->mt[2].y = SS4_STD_MF_Y_V2(p, 0); |
| 1251 | f->mt[3].x = SS4_STD_MF_X_V2(p, 1); |
| 1252 | f->mt[3].y = SS4_STD_MF_Y_V2(p, 1); |
| 1253 | no_data_x = SS4_MFPACKET_NO_AX; |
| 1254 | no_data_y = SS4_MFPACKET_NO_AY; |
| 1255 | } |
| 1256 | |
| 1257 | f->first_mp = 0; |
| 1258 | f->is_mp = 1; |
| 1259 | |
| 1260 | if (SS4_IS_5F_DETECTED(p)) { |
| 1261 | f->fingers = 5; |
| 1262 | } else if (f->mt[3].x == no_data_x && |
| 1263 | f->mt[3].y == no_data_y) { |
| 1264 | f->mt[3].x = 0; |
| 1265 | f->mt[3].y = 0; |
| 1266 | f->fingers = 3; |
| 1267 | } else { |
| 1268 | f->fingers = 4; |
| 1269 | } |
| 1270 | break; |
| 1271 | |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1272 | case SS4_PACKET_ID_STICK: |
Paul Donohue | 7229c58 | 2016-11-28 20:13:47 -0800 | [diff] [blame] | 1273 | /* |
| 1274 | * x, y, and pressure are decoded in |
| 1275 | * alps_process_packet_ss4_v2() |
| 1276 | */ |
| 1277 | f->first_mp = 0; |
| 1278 | f->is_mp = 0; |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1279 | break; |
| 1280 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1281 | case SS4_PACKET_ID_IDLE: |
| 1282 | default: |
| 1283 | memset(f, 0, sizeof(struct alps_fields)); |
| 1284 | break; |
| 1285 | } |
| 1286 | |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1287 | /* handle buttons */ |
| 1288 | if (pkt_id == SS4_PACKET_ID_STICK) { |
| 1289 | f->ts_left = !!(SS4_BTN_V2(p) & 0x01); |
| 1290 | if (!(priv->flags & ALPS_BUTTONPAD)) { |
| 1291 | f->ts_right = !!(SS4_BTN_V2(p) & 0x02); |
| 1292 | f->ts_middle = !!(SS4_BTN_V2(p) & 0x04); |
| 1293 | } |
| 1294 | } else { |
| 1295 | f->left = !!(SS4_BTN_V2(p) & 0x01); |
| 1296 | if (!(priv->flags & ALPS_BUTTONPAD)) { |
| 1297 | f->right = !!(SS4_BTN_V2(p) & 0x02); |
| 1298 | f->middle = !!(SS4_BTN_V2(p) & 0x04); |
| 1299 | } |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1300 | } |
| 1301 | |
| 1302 | return 0; |
| 1303 | } |
| 1304 | |
| 1305 | static void alps_process_packet_ss4_v2(struct psmouse *psmouse) |
| 1306 | { |
| 1307 | struct alps_data *priv = psmouse->private; |
| 1308 | unsigned char *packet = psmouse->packet; |
| 1309 | struct input_dev *dev = psmouse->dev; |
Ben Gamari | 4777ac2 | 2016-10-04 11:33:25 -0700 | [diff] [blame] | 1310 | struct input_dev *dev2 = priv->dev2; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1311 | struct alps_fields *f = &priv->f; |
| 1312 | |
| 1313 | memset(f, 0, sizeof(struct alps_fields)); |
| 1314 | priv->decode_fields(f, packet, psmouse); |
| 1315 | if (priv->multi_packet) { |
| 1316 | /* |
| 1317 | * Sometimes the first packet will indicate a multi-packet |
| 1318 | * sequence, but sometimes the next multi-packet would not |
| 1319 | * come. Check for this, and when it happens process the |
| 1320 | * position packet as usual. |
| 1321 | */ |
| 1322 | if (f->is_mp) { |
| 1323 | /* Now process the 1st packet */ |
| 1324 | priv->decode_fields(f, priv->multi_data, psmouse); |
| 1325 | } else { |
| 1326 | priv->multi_packet = 0; |
| 1327 | } |
| 1328 | } |
| 1329 | |
| 1330 | /* |
| 1331 | * "f.is_mp" would always be '0' after merging the 1st and 2nd packet. |
| 1332 | * When it is set, it means 2nd packet comes without 1st packet come. |
| 1333 | */ |
| 1334 | if (f->is_mp) |
| 1335 | return; |
| 1336 | |
| 1337 | /* Save the first packet */ |
| 1338 | if (!priv->multi_packet && f->first_mp) { |
| 1339 | priv->multi_packet = 1; |
| 1340 | memcpy(priv->multi_data, packet, sizeof(priv->multi_data)); |
| 1341 | return; |
| 1342 | } |
| 1343 | |
| 1344 | priv->multi_packet = 0; |
| 1345 | |
Paul Donohue | 864db92 | 2016-11-28 20:11:25 -0800 | [diff] [blame] | 1346 | /* Report trackstick */ |
| 1347 | if (alps_get_pkt_id_ss4_v2(packet) == SS4_PACKET_ID_STICK) { |
Paul Donohue | 7229c58 | 2016-11-28 20:13:47 -0800 | [diff] [blame] | 1348 | if (!(priv->flags & ALPS_DUALPOINT)) { |
| 1349 | psmouse_warn(psmouse, |
| 1350 | "Rejected trackstick packet from non DualPoint device"); |
| 1351 | return; |
Paul Donohue | 864db92 | 2016-11-28 20:11:25 -0800 | [diff] [blame] | 1352 | } |
Paul Donohue | 7229c58 | 2016-11-28 20:13:47 -0800 | [diff] [blame] | 1353 | |
Paul Donohue | 23fce36 | 2016-11-28 20:16:21 -0800 | [diff] [blame] | 1354 | input_report_rel(dev2, REL_X, SS4_TS_X_V2(packet)); |
| 1355 | input_report_rel(dev2, REL_Y, SS4_TS_Y_V2(packet)); |
| 1356 | input_report_abs(dev2, ABS_PRESSURE, SS4_TS_Z_V2(packet)); |
Paul Donohue | 7229c58 | 2016-11-28 20:13:47 -0800 | [diff] [blame] | 1357 | |
| 1358 | input_report_key(dev2, BTN_LEFT, f->ts_left); |
| 1359 | input_report_key(dev2, BTN_RIGHT, f->ts_right); |
| 1360 | input_report_key(dev2, BTN_MIDDLE, f->ts_middle); |
| 1361 | |
| 1362 | input_sync(dev2); |
Paul Donohue | 864db92 | 2016-11-28 20:11:25 -0800 | [diff] [blame] | 1363 | return; |
| 1364 | } |
| 1365 | |
| 1366 | /* Report touchpad */ |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1367 | alps_report_mt_data(psmouse, (f->fingers <= 4) ? f->fingers : 4); |
| 1368 | |
| 1369 | input_mt_report_finger_count(dev, f->fingers); |
| 1370 | |
| 1371 | input_report_key(dev, BTN_LEFT, f->left); |
| 1372 | input_report_key(dev, BTN_RIGHT, f->right); |
| 1373 | input_report_key(dev, BTN_MIDDLE, f->middle); |
| 1374 | |
| 1375 | input_report_abs(dev, ABS_PRESSURE, f->pressure); |
| 1376 | input_sync(dev); |
| 1377 | } |
| 1378 | |
| 1379 | static bool alps_is_valid_package_ss4_v2(struct psmouse *psmouse) |
| 1380 | { |
| 1381 | if (psmouse->pktcnt == 4 && ((psmouse->packet[3] & 0x08) != 0x08)) |
| 1382 | return false; |
| 1383 | if (psmouse->pktcnt == 6 && ((psmouse->packet[5] & 0x10) != 0x0)) |
| 1384 | return false; |
| 1385 | return true; |
| 1386 | } |
| 1387 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 1388 | static DEFINE_MUTEX(alps_mutex); |
| 1389 | |
| 1390 | static void alps_register_bare_ps2_mouse(struct work_struct *work) |
| 1391 | { |
| 1392 | struct alps_data *priv = |
| 1393 | container_of(work, struct alps_data, dev3_register_work.work); |
| 1394 | struct psmouse *psmouse = priv->psmouse; |
| 1395 | struct input_dev *dev3; |
| 1396 | int error = 0; |
| 1397 | |
| 1398 | mutex_lock(&alps_mutex); |
| 1399 | |
| 1400 | if (priv->dev3) |
| 1401 | goto out; |
| 1402 | |
| 1403 | dev3 = input_allocate_device(); |
| 1404 | if (!dev3) { |
| 1405 | psmouse_err(psmouse, "failed to allocate secondary device\n"); |
| 1406 | error = -ENOMEM; |
| 1407 | goto out; |
| 1408 | } |
| 1409 | |
| 1410 | snprintf(priv->phys3, sizeof(priv->phys3), "%s/%s", |
| 1411 | psmouse->ps2dev.serio->phys, |
| 1412 | (priv->dev2 ? "input2" : "input1")); |
| 1413 | dev3->phys = priv->phys3; |
| 1414 | |
| 1415 | /* |
| 1416 | * format of input device name is: "protocol vendor name" |
| 1417 | * see function psmouse_switch_protocol() in psmouse-base.c |
| 1418 | */ |
| 1419 | dev3->name = "PS/2 ALPS Mouse"; |
| 1420 | |
| 1421 | dev3->id.bustype = BUS_I8042; |
| 1422 | dev3->id.vendor = 0x0002; |
| 1423 | dev3->id.product = PSMOUSE_PS2; |
| 1424 | dev3->id.version = 0x0000; |
| 1425 | dev3->dev.parent = &psmouse->ps2dev.serio->dev; |
| 1426 | |
| 1427 | input_set_capability(dev3, EV_REL, REL_X); |
| 1428 | input_set_capability(dev3, EV_REL, REL_Y); |
| 1429 | input_set_capability(dev3, EV_KEY, BTN_LEFT); |
| 1430 | input_set_capability(dev3, EV_KEY, BTN_RIGHT); |
| 1431 | input_set_capability(dev3, EV_KEY, BTN_MIDDLE); |
| 1432 | |
| 1433 | __set_bit(INPUT_PROP_POINTER, dev3->propbit); |
| 1434 | |
| 1435 | error = input_register_device(dev3); |
| 1436 | if (error) { |
| 1437 | psmouse_err(psmouse, |
| 1438 | "failed to register secondary device: %d\n", |
| 1439 | error); |
| 1440 | input_free_device(dev3); |
| 1441 | goto out; |
| 1442 | } |
| 1443 | |
| 1444 | priv->dev3 = dev3; |
| 1445 | |
| 1446 | out: |
| 1447 | /* |
| 1448 | * Save the error code so that we can detect that we |
| 1449 | * already tried to create the device. |
| 1450 | */ |
| 1451 | if (error) |
| 1452 | priv->dev3 = ERR_PTR(error); |
| 1453 | |
| 1454 | mutex_unlock(&alps_mutex); |
| 1455 | } |
| 1456 | |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1457 | static void alps_report_bare_ps2_packet(struct psmouse *psmouse, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1458 | unsigned char packet[], |
| 1459 | bool report_buttons) |
| 1460 | { |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1461 | struct alps_data *priv = psmouse->private; |
Hans de Goede | 6bcca19 | 2015-04-08 09:26:42 -0700 | [diff] [blame] | 1462 | struct input_dev *dev, *dev2 = NULL; |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1463 | |
Hans de Goede | e3a7921 | 2015-04-03 17:20:05 -0700 | [diff] [blame] | 1464 | /* Figure out which device to use to report the bare packet */ |
| 1465 | if (priv->proto_version == ALPS_PROTO_V2 && |
| 1466 | (priv->flags & ALPS_DUALPOINT)) { |
| 1467 | /* On V2 devices the DualPoint Stick reports bare packets */ |
| 1468 | dev = priv->dev2; |
Hans de Goede | 6bcca19 | 2015-04-08 09:26:42 -0700 | [diff] [blame] | 1469 | dev2 = psmouse->dev; |
Hans de Goede | e3a7921 | 2015-04-03 17:20:05 -0700 | [diff] [blame] | 1470 | } else if (unlikely(IS_ERR_OR_NULL(priv->dev3))) { |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1471 | /* Register dev3 mouse if we received PS/2 packet first time */ |
| 1472 | if (!IS_ERR(priv->dev3)) |
| 1473 | psmouse_queue_work(psmouse, &priv->dev3_register_work, |
| 1474 | 0); |
| 1475 | return; |
| 1476 | } else { |
| 1477 | dev = priv->dev3; |
| 1478 | } |
| 1479 | |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1480 | if (report_buttons) |
Hans de Goede | 6bcca19 | 2015-04-08 09:26:42 -0700 | [diff] [blame] | 1481 | alps_report_buttons(dev, dev2, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1482 | packet[0] & 1, packet[0] & 2, packet[0] & 4); |
| 1483 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 1484 | input_report_rel(dev, REL_X, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1485 | packet[1] ? packet[1] - ((packet[0] << 4) & 0x100) : 0); |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 1486 | input_report_rel(dev, REL_Y, |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1487 | packet[2] ? ((packet[0] << 3) & 0x100) - packet[2] : 0); |
| 1488 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 1489 | input_sync(dev); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1490 | } |
| 1491 | |
| 1492 | static psmouse_ret_t alps_handle_interleaved_ps2(struct psmouse *psmouse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | { |
| 1494 | struct alps_data *priv = psmouse->private; |
| 1495 | |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1496 | if (psmouse->pktcnt < 6) |
| 1497 | return PSMOUSE_GOOD_DATA; |
| 1498 | |
| 1499 | if (psmouse->pktcnt == 6) { |
| 1500 | /* |
| 1501 | * Start a timer to flush the packet if it ends up last |
| 1502 | * 6-byte packet in the stream. Timer needs to fire |
| 1503 | * psmouse core times out itself. 20 ms should be enough |
| 1504 | * to decide if we are getting more data or not. |
| 1505 | */ |
| 1506 | mod_timer(&priv->timer, jiffies + msecs_to_jiffies(20)); |
| 1507 | return PSMOUSE_GOOD_DATA; |
| 1508 | } |
| 1509 | |
| 1510 | del_timer(&priv->timer); |
| 1511 | |
| 1512 | if (psmouse->packet[6] & 0x80) { |
| 1513 | |
| 1514 | /* |
| 1515 | * Highest bit is set - that means we either had |
| 1516 | * complete ALPS packet and this is start of the |
| 1517 | * next packet or we got garbage. |
| 1518 | */ |
| 1519 | |
| 1520 | if (((psmouse->packet[3] | |
| 1521 | psmouse->packet[4] | |
| 1522 | psmouse->packet[5]) & 0x80) || |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1523 | (!alps_is_valid_first_byte(priv, psmouse->packet[6]))) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1524 | psmouse_dbg(psmouse, |
Andy Shevchenko | 3b11292 | 2012-10-30 00:24:41 -0700 | [diff] [blame] | 1525 | "refusing packet %4ph (suspected interleaved ps/2)\n", |
| 1526 | psmouse->packet + 3); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1527 | return PSMOUSE_BAD_DATA; |
| 1528 | } |
| 1529 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 1530 | priv->process_packet(psmouse); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1531 | |
| 1532 | /* Continue with the next packet */ |
| 1533 | psmouse->packet[0] = psmouse->packet[6]; |
| 1534 | psmouse->pktcnt = 1; |
| 1535 | |
| 1536 | } else { |
| 1537 | |
| 1538 | /* |
| 1539 | * High bit is 0 - that means that we indeed got a PS/2 |
| 1540 | * packet in the middle of ALPS packet. |
| 1541 | * |
| 1542 | * There is also possibility that we got 6-byte ALPS |
| 1543 | * packet followed by 3-byte packet from trackpoint. We |
| 1544 | * can not distinguish between these 2 scenarios but |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1545 | * because the latter is unlikely to happen in course of |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1546 | * normal operation (user would need to press all |
| 1547 | * buttons on the pad and start moving trackpoint |
| 1548 | * without touching the pad surface) we assume former. |
| 1549 | * Even if we are wrong the wost thing that would happen |
| 1550 | * the cursor would jump but we should not get protocol |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1551 | * de-synchronization. |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1552 | */ |
| 1553 | |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1554 | alps_report_bare_ps2_packet(psmouse, &psmouse->packet[3], |
| 1555 | false); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1556 | |
| 1557 | /* |
| 1558 | * Continue with the standard ALPS protocol handling, |
| 1559 | * but make sure we won't process it as an interleaved |
| 1560 | * packet again, which may happen if all buttons are |
| 1561 | * pressed. To avoid this let's reset the 4th bit which |
| 1562 | * is normally 1. |
| 1563 | */ |
| 1564 | psmouse->packet[3] = psmouse->packet[6] & 0xf7; |
| 1565 | psmouse->pktcnt = 4; |
| 1566 | } |
| 1567 | |
| 1568 | return PSMOUSE_GOOD_DATA; |
| 1569 | } |
| 1570 | |
| 1571 | static void alps_flush_packet(unsigned long data) |
| 1572 | { |
| 1573 | struct psmouse *psmouse = (struct psmouse *)data; |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 1574 | struct alps_data *priv = psmouse->private; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1575 | |
| 1576 | serio_pause_rx(psmouse->ps2dev.serio); |
| 1577 | |
Seth Forshee | b46615f | 2011-11-07 19:53:30 -0800 | [diff] [blame] | 1578 | if (psmouse->pktcnt == psmouse->pktsize) { |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1579 | |
| 1580 | /* |
| 1581 | * We did not any more data in reasonable amount of time. |
| 1582 | * Validate the last 3 bytes and process as a standard |
| 1583 | * ALPS packet. |
| 1584 | */ |
| 1585 | if ((psmouse->packet[3] | |
| 1586 | psmouse->packet[4] | |
| 1587 | psmouse->packet[5]) & 0x80) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1588 | psmouse_dbg(psmouse, |
Andy Shevchenko | 3b11292 | 2012-10-30 00:24:41 -0700 | [diff] [blame] | 1589 | "refusing packet %3ph (suspected interleaved ps/2)\n", |
| 1590 | psmouse->packet + 3); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1591 | } else { |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 1592 | priv->process_packet(psmouse); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1593 | } |
| 1594 | psmouse->pktcnt = 0; |
| 1595 | } |
| 1596 | |
| 1597 | serio_continue_rx(psmouse->ps2dev.serio); |
| 1598 | } |
| 1599 | |
| 1600 | static psmouse_ret_t alps_process_byte(struct psmouse *psmouse) |
| 1601 | { |
| 1602 | struct alps_data *priv = psmouse->private; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1603 | |
Pali Rohár | 4ab8f7f | 2014-11-08 12:45:23 -0800 | [diff] [blame] | 1604 | /* |
| 1605 | * Check if we are dealing with a bare PS/2 packet, presumably from |
| 1606 | * a device connected to the external PS/2 port. Because bare PS/2 |
| 1607 | * protocol does not have enough constant bits to self-synchronize |
| 1608 | * properly we only do this if the device is fully synchronized. |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1609 | * Can not distinguish V8's first byte from PS/2 packet's |
Pali Rohár | 4ab8f7f | 2014-11-08 12:45:23 -0800 | [diff] [blame] | 1610 | */ |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1611 | if (priv->proto_version != ALPS_PROTO_V8 && |
| 1612 | !psmouse->out_of_sync_cnt && |
| 1613 | (psmouse->packet[0] & 0xc8) == 0x08) { |
| 1614 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1615 | if (psmouse->pktcnt == 3) { |
Hans de Goede | 59c30af | 2015-04-03 17:14:40 -0700 | [diff] [blame] | 1616 | alps_report_bare_ps2_packet(psmouse, psmouse->packet, |
| 1617 | true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1618 | return PSMOUSE_FULL_PACKET; |
| 1619 | } |
| 1620 | return PSMOUSE_GOOD_DATA; |
| 1621 | } |
| 1622 | |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1623 | /* Check for PS/2 packet stuffed in the middle of ALPS packet. */ |
| 1624 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1625 | if ((priv->flags & ALPS_PS2_INTERLEAVED) && |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1626 | psmouse->pktcnt >= 4 && (psmouse->packet[3] & 0x0f) == 0x0f) { |
| 1627 | return alps_handle_interleaved_ps2(psmouse); |
| 1628 | } |
| 1629 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1630 | if (!alps_is_valid_first_byte(priv, psmouse->packet[0])) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1631 | psmouse_dbg(psmouse, |
| 1632 | "refusing packet[0] = %x (mask0 = %x, byte0 = %x)\n", |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1633 | psmouse->packet[0], priv->mask0, priv->byte0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1634 | return PSMOUSE_BAD_DATA; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1635 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | |
Seth Forshee | b46615f | 2011-11-07 19:53:30 -0800 | [diff] [blame] | 1637 | /* Bytes 2 - pktsize should have 0 in the highest bit */ |
Pali Rohár | a7ef82a | 2014-11-08 23:36:09 -0800 | [diff] [blame] | 1638 | if (priv->proto_version < ALPS_PROTO_V5 && |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 1639 | psmouse->pktcnt >= 2 && psmouse->pktcnt <= psmouse->pktsize && |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1640 | (psmouse->packet[psmouse->pktcnt - 1] & 0x80)) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 1641 | psmouse_dbg(psmouse, "refusing packet[%i] = %x\n", |
| 1642 | psmouse->pktcnt - 1, |
| 1643 | psmouse->packet[psmouse->pktcnt - 1]); |
Pali Rohár | a7ef82a | 2014-11-08 23:36:09 -0800 | [diff] [blame] | 1644 | |
Dmitry Torokhov | fb2dd7a | 2015-01-14 10:39:52 -0800 | [diff] [blame] | 1645 | if (priv->proto_version == ALPS_PROTO_V3_RUSHMORE && |
Pali Rohár | a7ef82a | 2014-11-08 23:36:09 -0800 | [diff] [blame] | 1646 | psmouse->pktcnt == psmouse->pktsize) { |
| 1647 | /* |
| 1648 | * Some Dell boxes, such as Latitude E6440 or E7440 |
| 1649 | * with closed lid, quite often smash last byte of |
| 1650 | * otherwise valid packet with 0xff. Given that the |
| 1651 | * next packet is very likely to be valid let's |
| 1652 | * report PSMOUSE_FULL_PACKET but not process data, |
| 1653 | * rather than reporting PSMOUSE_BAD_DATA and |
| 1654 | * filling the logs. |
| 1655 | */ |
| 1656 | return PSMOUSE_FULL_PACKET; |
| 1657 | } |
| 1658 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1659 | return PSMOUSE_BAD_DATA; |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 1660 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1661 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 1662 | if ((priv->proto_version == ALPS_PROTO_V7 && |
| 1663 | !alps_is_valid_package_v7(psmouse)) || |
| 1664 | (priv->proto_version == ALPS_PROTO_V8 && |
| 1665 | !alps_is_valid_package_ss4_v2(psmouse))) { |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1666 | psmouse_dbg(psmouse, "refusing packet[%i] = %x\n", |
| 1667 | psmouse->pktcnt - 1, |
| 1668 | psmouse->packet[psmouse->pktcnt - 1]); |
| 1669 | return PSMOUSE_BAD_DATA; |
| 1670 | } |
| 1671 | |
Seth Forshee | b46615f | 2011-11-07 19:53:30 -0800 | [diff] [blame] | 1672 | if (psmouse->pktcnt == psmouse->pktsize) { |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 1673 | priv->process_packet(psmouse); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1674 | return PSMOUSE_FULL_PACKET; |
| 1675 | } |
| 1676 | |
| 1677 | return PSMOUSE_GOOD_DATA; |
| 1678 | } |
| 1679 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1680 | static int alps_command_mode_send_nibble(struct psmouse *psmouse, int nibble) |
| 1681 | { |
| 1682 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1683 | struct alps_data *priv = psmouse->private; |
| 1684 | int command; |
| 1685 | unsigned char *param; |
| 1686 | unsigned char dummy[4]; |
| 1687 | |
| 1688 | BUG_ON(nibble > 0xf); |
| 1689 | |
| 1690 | command = priv->nibble_commands[nibble].command; |
| 1691 | param = (command & 0x0f00) ? |
| 1692 | dummy : (unsigned char *)&priv->nibble_commands[nibble].data; |
| 1693 | |
| 1694 | if (ps2_command(ps2dev, param, command)) |
| 1695 | return -1; |
| 1696 | |
| 1697 | return 0; |
| 1698 | } |
| 1699 | |
| 1700 | static int alps_command_mode_set_addr(struct psmouse *psmouse, int addr) |
| 1701 | { |
| 1702 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1703 | struct alps_data *priv = psmouse->private; |
| 1704 | int i, nibble; |
| 1705 | |
| 1706 | if (ps2_command(ps2dev, NULL, priv->addr_command)) |
| 1707 | return -1; |
| 1708 | |
| 1709 | for (i = 12; i >= 0; i -= 4) { |
| 1710 | nibble = (addr >> i) & 0xf; |
| 1711 | if (alps_command_mode_send_nibble(psmouse, nibble)) |
| 1712 | return -1; |
| 1713 | } |
| 1714 | |
| 1715 | return 0; |
| 1716 | } |
| 1717 | |
| 1718 | static int __alps_command_mode_read_reg(struct psmouse *psmouse, int addr) |
| 1719 | { |
| 1720 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1721 | unsigned char param[4]; |
| 1722 | |
| 1723 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) |
| 1724 | return -1; |
| 1725 | |
| 1726 | /* |
| 1727 | * The address being read is returned in the first two bytes |
| 1728 | * of the result. Check that this address matches the expected |
| 1729 | * address. |
| 1730 | */ |
| 1731 | if (addr != ((param[0] << 8) | param[1])) |
| 1732 | return -1; |
| 1733 | |
| 1734 | return param[2]; |
| 1735 | } |
| 1736 | |
| 1737 | static int alps_command_mode_read_reg(struct psmouse *psmouse, int addr) |
| 1738 | { |
| 1739 | if (alps_command_mode_set_addr(psmouse, addr)) |
| 1740 | return -1; |
| 1741 | return __alps_command_mode_read_reg(psmouse, addr); |
| 1742 | } |
| 1743 | |
| 1744 | static int __alps_command_mode_write_reg(struct psmouse *psmouse, u8 value) |
| 1745 | { |
| 1746 | if (alps_command_mode_send_nibble(psmouse, (value >> 4) & 0xf)) |
| 1747 | return -1; |
| 1748 | if (alps_command_mode_send_nibble(psmouse, value & 0xf)) |
| 1749 | return -1; |
| 1750 | return 0; |
| 1751 | } |
| 1752 | |
| 1753 | static int alps_command_mode_write_reg(struct psmouse *psmouse, int addr, |
| 1754 | u8 value) |
| 1755 | { |
| 1756 | if (alps_command_mode_set_addr(psmouse, addr)) |
| 1757 | return -1; |
| 1758 | return __alps_command_mode_write_reg(psmouse, value); |
| 1759 | } |
| 1760 | |
Kevin Cernekee | 24ba970 | 2013-02-13 22:19:01 -0800 | [diff] [blame] | 1761 | static int alps_rpt_cmd(struct psmouse *psmouse, int init_command, |
| 1762 | int repeated_command, unsigned char *param) |
| 1763 | { |
| 1764 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1765 | |
| 1766 | param[0] = 0; |
| 1767 | if (init_command && ps2_command(ps2dev, param, init_command)) |
| 1768 | return -EIO; |
| 1769 | |
| 1770 | if (ps2_command(ps2dev, NULL, repeated_command) || |
| 1771 | ps2_command(ps2dev, NULL, repeated_command) || |
| 1772 | ps2_command(ps2dev, NULL, repeated_command)) |
| 1773 | return -EIO; |
| 1774 | |
| 1775 | param[0] = param[1] = param[2] = 0xff; |
| 1776 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) |
| 1777 | return -EIO; |
| 1778 | |
Dmitry Torokhov | 39fbe58 | 2013-02-14 09:04:24 -0800 | [diff] [blame] | 1779 | psmouse_dbg(psmouse, "%2.2X report: %3ph\n", |
| 1780 | repeated_command, param); |
Kevin Cernekee | 24ba970 | 2013-02-13 22:19:01 -0800 | [diff] [blame] | 1781 | return 0; |
| 1782 | } |
| 1783 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1784 | static bool alps_check_valid_firmware_id(unsigned char id[]) |
| 1785 | { |
| 1786 | if (id[0] == 0x73) |
| 1787 | return true; |
| 1788 | |
| 1789 | if (id[0] == 0x88 && |
| 1790 | (id[1] == 0x07 || |
| 1791 | id[1] == 0x08 || |
| 1792 | (id[1] & 0xf0) == 0xb0 || |
| 1793 | (id[1] & 0xf0) == 0xc0)) { |
| 1794 | return true; |
| 1795 | } |
| 1796 | |
| 1797 | return false; |
| 1798 | } |
| 1799 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 1800 | static int alps_enter_command_mode(struct psmouse *psmouse) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1801 | { |
| 1802 | unsigned char param[4]; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1803 | |
Kevin Cernekee | 24ba970 | 2013-02-13 22:19:01 -0800 | [diff] [blame] | 1804 | if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_RESET_WRAP, param)) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1805 | psmouse_err(psmouse, "failed to enter command mode\n"); |
| 1806 | return -1; |
| 1807 | } |
| 1808 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 1809 | if (!alps_check_valid_firmware_id(param)) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1810 | psmouse_dbg(psmouse, |
Kevin Cernekee | 24ba970 | 2013-02-13 22:19:01 -0800 | [diff] [blame] | 1811 | "unknown response while entering command mode\n"); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1812 | return -1; |
| 1813 | } |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1814 | return 0; |
| 1815 | } |
| 1816 | |
| 1817 | static inline int alps_exit_command_mode(struct psmouse *psmouse) |
| 1818 | { |
| 1819 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1820 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM)) |
| 1821 | return -1; |
| 1822 | return 0; |
| 1823 | } |
| 1824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | /* |
| 1826 | * For DualPoint devices select the device that should respond to |
| 1827 | * subsequent commands. It looks like glidepad is behind stickpointer, |
| 1828 | * I'd thought it would be other way around... |
| 1829 | */ |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1830 | static int alps_passthrough_mode_v2(struct psmouse *psmouse, bool enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | { |
| 1832 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1833 | int cmd = enable ? PSMOUSE_CMD_SETSCALE21 : PSMOUSE_CMD_SETSCALE11; |
| 1834 | |
| 1835 | if (ps2_command(ps2dev, NULL, cmd) || |
| 1836 | ps2_command(ps2dev, NULL, cmd) || |
| 1837 | ps2_command(ps2dev, NULL, cmd) || |
| 1838 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE)) |
| 1839 | return -1; |
| 1840 | |
| 1841 | /* we may get 3 more bytes, just ignore them */ |
Dmitry Torokhov | c611763 | 2005-06-01 02:39:51 -0500 | [diff] [blame] | 1842 | ps2_drain(ps2dev, 3, 100); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1843 | |
| 1844 | return 0; |
| 1845 | } |
| 1846 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1847 | static int alps_absolute_mode_v1_v2(struct psmouse *psmouse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1848 | { |
| 1849 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1850 | |
| 1851 | /* Try ALPS magic knock - 4 disable before enable */ |
| 1852 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1853 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1854 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1855 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1856 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) |
| 1857 | return -1; |
| 1858 | |
| 1859 | /* |
| 1860 | * Switch mouse to poll (remote) mode so motion data will not |
| 1861 | * get in our way |
| 1862 | */ |
Guenter Roeck | ad56814 | 2017-01-21 23:44:46 -0800 | [diff] [blame] | 1863 | return ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | } |
| 1865 | |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 1866 | static int alps_monitor_mode_send_word(struct psmouse *psmouse, u16 word) |
| 1867 | { |
| 1868 | int i, nibble; |
| 1869 | |
| 1870 | /* |
| 1871 | * b0-b11 are valid bits, send sequence is inverse. |
| 1872 | * e.g. when word = 0x0123, nibble send sequence is 3, 2, 1 |
| 1873 | */ |
| 1874 | for (i = 0; i <= 8; i += 4) { |
| 1875 | nibble = (word >> i) & 0xf; |
| 1876 | if (alps_command_mode_send_nibble(psmouse, nibble)) |
| 1877 | return -1; |
| 1878 | } |
| 1879 | |
| 1880 | return 0; |
| 1881 | } |
| 1882 | |
| 1883 | static int alps_monitor_mode_write_reg(struct psmouse *psmouse, |
| 1884 | u16 addr, u16 value) |
| 1885 | { |
| 1886 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1887 | |
| 1888 | /* 0x0A0 is the command to write the word */ |
| 1889 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE) || |
| 1890 | alps_monitor_mode_send_word(psmouse, 0x0A0) || |
| 1891 | alps_monitor_mode_send_word(psmouse, addr) || |
| 1892 | alps_monitor_mode_send_word(psmouse, value) || |
| 1893 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE)) |
| 1894 | return -1; |
| 1895 | |
| 1896 | return 0; |
| 1897 | } |
| 1898 | |
| 1899 | static int alps_monitor_mode(struct psmouse *psmouse, bool enable) |
| 1900 | { |
| 1901 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1902 | |
| 1903 | if (enable) { |
| 1904 | /* EC E9 F5 F5 E7 E6 E7 E9 to enter monitor mode */ |
| 1905 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) || |
| 1906 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_GETINFO) || |
| 1907 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1908 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1909 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) || |
| 1910 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 1911 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE21) || |
| 1912 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_GETINFO)) |
| 1913 | return -1; |
| 1914 | } else { |
| 1915 | /* EC to exit monitor mode */ |
| 1916 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP)) |
| 1917 | return -1; |
| 1918 | } |
| 1919 | |
| 1920 | return 0; |
| 1921 | } |
| 1922 | |
| 1923 | static int alps_absolute_mode_v6(struct psmouse *psmouse) |
| 1924 | { |
| 1925 | u16 reg_val = 0x181; |
| 1926 | int ret = -1; |
| 1927 | |
| 1928 | /* enter monitor mode, to write the register */ |
| 1929 | if (alps_monitor_mode(psmouse, true)) |
| 1930 | return -1; |
| 1931 | |
| 1932 | ret = alps_monitor_mode_write_reg(psmouse, 0x000, reg_val); |
| 1933 | |
| 1934 | if (alps_monitor_mode(psmouse, false)) |
| 1935 | ret = -1; |
| 1936 | |
| 1937 | return ret; |
| 1938 | } |
| 1939 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1940 | static int alps_get_status(struct psmouse *psmouse, char *param) |
| 1941 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1942 | /* Get status: 0xF5 0xF5 0xF5 0xE9 */ |
Kevin Cernekee | 24ba970 | 2013-02-13 22:19:01 -0800 | [diff] [blame] | 1943 | if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_DISABLE, param)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1944 | return -1; |
| 1945 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1946 | return 0; |
| 1947 | } |
| 1948 | |
| 1949 | /* |
| 1950 | * Turn touchpad tapping on or off. The sequences are: |
| 1951 | * 0xE9 0xF5 0xF5 0xF3 0x0A to enable, |
| 1952 | * 0xE9 0xF5 0xF5 0xE8 0x00 to disable. |
| 1953 | * My guess that 0xE9 (GetInfo) is here as a sync point. |
| 1954 | * For models that also have stickpointer (DualPoints) its tapping |
| 1955 | * is controlled separately (0xE6 0xE6 0xE6 0xF3 0x14|0x0A) but |
| 1956 | * we don't fiddle with it. |
| 1957 | */ |
| 1958 | static int alps_tap_mode(struct psmouse *psmouse, int enable) |
| 1959 | { |
| 1960 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 1961 | int cmd = enable ? PSMOUSE_CMD_SETRATE : PSMOUSE_CMD_SETRES; |
| 1962 | unsigned char tap_arg = enable ? 0x0A : 0x00; |
| 1963 | unsigned char param[4]; |
| 1964 | |
| 1965 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO) || |
| 1966 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1967 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_DISABLE) || |
| 1968 | ps2_command(ps2dev, &tap_arg, cmd)) |
| 1969 | return -1; |
| 1970 | |
| 1971 | if (alps_get_status(psmouse, param)) |
| 1972 | return -1; |
| 1973 | |
| 1974 | return 0; |
| 1975 | } |
| 1976 | |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 1977 | /* |
| 1978 | * alps_poll() - poll the touchpad for current motion packet. |
| 1979 | * Used in resync. |
| 1980 | */ |
| 1981 | static int alps_poll(struct psmouse *psmouse) |
| 1982 | { |
| 1983 | struct alps_data *priv = psmouse->private; |
Seth Forshee | b46615f | 2011-11-07 19:53:30 -0800 | [diff] [blame] | 1984 | unsigned char buf[sizeof(psmouse->packet)]; |
Dmitry Torokhov | b7802c5 | 2009-09-09 19:13:20 -0700 | [diff] [blame] | 1985 | bool poll_failed; |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 1986 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1987 | if (priv->flags & ALPS_PASS) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1988 | alps_passthrough_mode_v2(psmouse, true); |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 1989 | |
| 1990 | poll_failed = ps2_command(&psmouse->ps2dev, buf, |
| 1991 | PSMOUSE_CMD_POLL | (psmouse->pktsize << 8)) < 0; |
| 1992 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1993 | if (priv->flags & ALPS_PASS) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 1994 | alps_passthrough_mode_v2(psmouse, false); |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 1995 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 1996 | if (poll_failed || (buf[0] & priv->mask0) != priv->byte0) |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 1997 | return -1; |
| 1998 | |
| 1999 | if ((psmouse->badbyte & 0xc8) == 0x08) { |
| 2000 | /* |
| 2001 | * Poll the track stick ... |
| 2002 | */ |
| 2003 | if (ps2_command(&psmouse->ps2dev, buf, PSMOUSE_CMD_POLL | (3 << 8))) |
| 2004 | return -1; |
| 2005 | } |
| 2006 | |
| 2007 | memcpy(psmouse->packet, buf, sizeof(buf)); |
| 2008 | return 0; |
| 2009 | } |
| 2010 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2011 | static int alps_hw_init_v1_v2(struct psmouse *psmouse) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | { |
| 2013 | struct alps_data *priv = psmouse->private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2014 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2015 | if ((priv->flags & ALPS_PASS) && |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2016 | alps_passthrough_mode_v2(psmouse, true)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | return -1; |
Dmitry Torokhov | b7802c5 | 2009-09-09 19:13:20 -0700 | [diff] [blame] | 2018 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | |
Dmitry Torokhov | b7802c5 | 2009-09-09 19:13:20 -0700 | [diff] [blame] | 2020 | if (alps_tap_mode(psmouse, true)) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 2021 | psmouse_warn(psmouse, "Failed to enable hardware tapping\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2022 | return -1; |
Peter Osterlund | 963f626 | 2005-07-11 01:08:04 -0500 | [diff] [blame] | 2023 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2025 | if (alps_absolute_mode_v1_v2(psmouse)) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 2026 | psmouse_err(psmouse, "Failed to enable absolute mode\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2027 | return -1; |
| 2028 | } |
| 2029 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2030 | if ((priv->flags & ALPS_PASS) && |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2031 | alps_passthrough_mode_v2(psmouse, false)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2032 | return -1; |
Dmitry Torokhov | b7802c5 | 2009-09-09 19:13:20 -0700 | [diff] [blame] | 2033 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2034 | |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 2035 | /* ALPS needs stream mode, otherwise it won't report any data */ |
| 2036 | if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSTREAM)) { |
Dmitry Torokhov | b5d2170 | 2011-10-10 18:27:03 -0700 | [diff] [blame] | 2037 | psmouse_err(psmouse, "Failed to enable stream mode\n"); |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 2038 | return -1; |
| 2039 | } |
| 2040 | |
| 2041 | return 0; |
| 2042 | } |
| 2043 | |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 2044 | static int alps_hw_init_v6(struct psmouse *psmouse) |
| 2045 | { |
| 2046 | unsigned char param[2] = {0xC8, 0x14}; |
| 2047 | |
| 2048 | /* Enter passthrough mode to let trackpoint enter 6byte raw mode */ |
| 2049 | if (alps_passthrough_mode_v2(psmouse, true)) |
| 2050 | return -1; |
| 2051 | |
| 2052 | if (ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2053 | ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2054 | ps2_command(&psmouse->ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2055 | ps2_command(&psmouse->ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || |
| 2056 | ps2_command(&psmouse->ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE)) |
| 2057 | return -1; |
| 2058 | |
| 2059 | if (alps_passthrough_mode_v2(psmouse, false)) |
| 2060 | return -1; |
| 2061 | |
| 2062 | if (alps_absolute_mode_v6(psmouse)) { |
| 2063 | psmouse_err(psmouse, "Failed to enable absolute mode\n"); |
| 2064 | return -1; |
| 2065 | } |
| 2066 | |
| 2067 | return 0; |
| 2068 | } |
| 2069 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2070 | /* |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2071 | * Enable or disable passthrough mode to the trackstick. |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2072 | */ |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2073 | static int alps_passthrough_mode_v3(struct psmouse *psmouse, |
| 2074 | int reg_base, bool enable) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2075 | { |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2076 | int reg_val, ret = -1; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2077 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2078 | if (alps_enter_command_mode(psmouse)) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2079 | return -1; |
| 2080 | |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2081 | reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x0008); |
| 2082 | if (reg_val == -1) |
| 2083 | goto error; |
| 2084 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2085 | if (enable) |
| 2086 | reg_val |= 0x01; |
| 2087 | else |
| 2088 | reg_val &= ~0x01; |
| 2089 | |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2090 | ret = __alps_command_mode_write_reg(psmouse, reg_val); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2091 | |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2092 | error: |
| 2093 | if (alps_exit_command_mode(psmouse)) |
| 2094 | ret = -1; |
| 2095 | return ret; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2096 | } |
| 2097 | |
| 2098 | /* Must be in command mode when calling this function */ |
| 2099 | static int alps_absolute_mode_v3(struct psmouse *psmouse) |
| 2100 | { |
| 2101 | int reg_val; |
| 2102 | |
| 2103 | reg_val = alps_command_mode_read_reg(psmouse, 0x0004); |
| 2104 | if (reg_val == -1) |
| 2105 | return -1; |
| 2106 | |
| 2107 | reg_val |= 0x06; |
| 2108 | if (__alps_command_mode_write_reg(psmouse, reg_val)) |
| 2109 | return -1; |
| 2110 | |
| 2111 | return 0; |
| 2112 | } |
| 2113 | |
Pali Rohár | dae928e | 2016-01-06 15:50:08 -0800 | [diff] [blame] | 2114 | static int alps_probe_trackstick_v3_v7(struct psmouse *psmouse, int reg_base) |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2115 | { |
| 2116 | int ret = -EIO, reg_val; |
| 2117 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2118 | if (alps_enter_command_mode(psmouse)) |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2119 | goto error; |
| 2120 | |
| 2121 | reg_val = alps_command_mode_read_reg(psmouse, reg_base + 0x08); |
| 2122 | if (reg_val == -1) |
| 2123 | goto error; |
| 2124 | |
| 2125 | /* bit 7: trackstick is present */ |
| 2126 | ret = reg_val & 0x80 ? 0 : -ENODEV; |
| 2127 | |
| 2128 | error: |
| 2129 | alps_exit_command_mode(psmouse); |
| 2130 | return ret; |
| 2131 | } |
| 2132 | |
| 2133 | static int alps_setup_trackstick_v3(struct psmouse *psmouse, int reg_base) |
| 2134 | { |
| 2135 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2136 | int ret = 0; |
| 2137 | unsigned char param[4]; |
| 2138 | |
| 2139 | if (alps_passthrough_mode_v3(psmouse, reg_base, true)) |
| 2140 | return -EIO; |
| 2141 | |
| 2142 | /* |
| 2143 | * E7 report for the trackstick |
| 2144 | * |
| 2145 | * There have been reports of failures to seem to trace back |
| 2146 | * to the above trackstick check failing. When these occur |
| 2147 | * this E7 report fails, so when that happens we continue |
| 2148 | * with the assumption that there isn't a trackstick after |
| 2149 | * all. |
| 2150 | */ |
| 2151 | if (alps_rpt_cmd(psmouse, 0, PSMOUSE_CMD_SETSCALE21, param)) { |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2152 | psmouse_warn(psmouse, "Failed to initialize trackstick (E7 report failed)\n"); |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2153 | ret = -ENODEV; |
| 2154 | } else { |
Dmitry Torokhov | 39fbe58 | 2013-02-14 09:04:24 -0800 | [diff] [blame] | 2155 | psmouse_dbg(psmouse, "trackstick E7 report: %3ph\n", param); |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2156 | |
| 2157 | /* |
| 2158 | * Not sure what this does, but it is absolutely |
| 2159 | * essential. Without it, the touchpad does not |
| 2160 | * work at all and the trackstick just emits normal |
| 2161 | * PS/2 packets. |
| 2162 | */ |
| 2163 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2164 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2165 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSCALE11) || |
| 2166 | alps_command_mode_send_nibble(psmouse, 0x9) || |
| 2167 | alps_command_mode_send_nibble(psmouse, 0x4)) { |
| 2168 | psmouse_err(psmouse, |
| 2169 | "Error sending magic E6 sequence\n"); |
| 2170 | ret = -EIO; |
| 2171 | goto error; |
| 2172 | } |
| 2173 | |
| 2174 | /* |
| 2175 | * This ensures the trackstick packets are in the format |
| 2176 | * supported by this driver. If bit 1 isn't set the packet |
| 2177 | * format is different. |
| 2178 | */ |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2179 | if (alps_enter_command_mode(psmouse) || |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2180 | alps_command_mode_write_reg(psmouse, |
| 2181 | reg_base + 0x08, 0x82) || |
| 2182 | alps_exit_command_mode(psmouse)) |
| 2183 | ret = -EIO; |
| 2184 | } |
| 2185 | |
| 2186 | error: |
| 2187 | if (alps_passthrough_mode_v3(psmouse, reg_base, false)) |
| 2188 | ret = -EIO; |
| 2189 | |
| 2190 | return ret; |
| 2191 | } |
| 2192 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2193 | static int alps_hw_init_v3(struct psmouse *psmouse) |
| 2194 | { |
Pali Rohár | 4b1af85 | 2016-01-06 15:58:56 -0800 | [diff] [blame] | 2195 | struct alps_data *priv = psmouse->private; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2196 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2197 | int reg_val; |
| 2198 | unsigned char param[4]; |
| 2199 | |
Pali Rohár | 4b1af85 | 2016-01-06 15:58:56 -0800 | [diff] [blame] | 2200 | if ((priv->flags & ALPS_DUALPOINT) && |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2201 | alps_setup_trackstick_v3(psmouse, ALPS_REG_BASE_PINNACLE) == -EIO) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2202 | goto error; |
| 2203 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2204 | if (alps_enter_command_mode(psmouse) || |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2205 | alps_absolute_mode_v3(psmouse)) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2206 | psmouse_err(psmouse, "Failed to enter absolute mode\n"); |
| 2207 | goto error; |
| 2208 | } |
| 2209 | |
| 2210 | reg_val = alps_command_mode_read_reg(psmouse, 0x0006); |
| 2211 | if (reg_val == -1) |
| 2212 | goto error; |
| 2213 | if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01)) |
| 2214 | goto error; |
| 2215 | |
| 2216 | reg_val = alps_command_mode_read_reg(psmouse, 0x0007); |
| 2217 | if (reg_val == -1) |
| 2218 | goto error; |
| 2219 | if (__alps_command_mode_write_reg(psmouse, reg_val | 0x01)) |
| 2220 | goto error; |
| 2221 | |
| 2222 | if (alps_command_mode_read_reg(psmouse, 0x0144) == -1) |
| 2223 | goto error; |
| 2224 | if (__alps_command_mode_write_reg(psmouse, 0x04)) |
| 2225 | goto error; |
| 2226 | |
| 2227 | if (alps_command_mode_read_reg(psmouse, 0x0159) == -1) |
| 2228 | goto error; |
| 2229 | if (__alps_command_mode_write_reg(psmouse, 0x03)) |
| 2230 | goto error; |
| 2231 | |
| 2232 | if (alps_command_mode_read_reg(psmouse, 0x0163) == -1) |
| 2233 | goto error; |
| 2234 | if (alps_command_mode_write_reg(psmouse, 0x0163, 0x03)) |
| 2235 | goto error; |
| 2236 | |
| 2237 | if (alps_command_mode_read_reg(psmouse, 0x0162) == -1) |
| 2238 | goto error; |
| 2239 | if (alps_command_mode_write_reg(psmouse, 0x0162, 0x04)) |
| 2240 | goto error; |
| 2241 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2242 | alps_exit_command_mode(psmouse); |
| 2243 | |
| 2244 | /* Set rate and enable data reporting */ |
| 2245 | param[0] = 0x64; |
| 2246 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) || |
| 2247 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) { |
| 2248 | psmouse_err(psmouse, "Failed to enable data reporting\n"); |
| 2249 | return -1; |
| 2250 | } |
| 2251 | |
| 2252 | return 0; |
| 2253 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2254 | error: |
| 2255 | /* |
| 2256 | * Leaving the touchpad in command mode will essentially render |
| 2257 | * it unusable until the machine reboots, so exit it here just |
| 2258 | * to be safe |
| 2259 | */ |
| 2260 | alps_exit_command_mode(psmouse); |
| 2261 | return -1; |
| 2262 | } |
| 2263 | |
Hans de Goede | f3f33c6 | 2014-07-29 11:22:07 -0700 | [diff] [blame] | 2264 | static int alps_get_v3_v7_resolution(struct psmouse *psmouse, int reg_pitch) |
| 2265 | { |
| 2266 | int reg, x_pitch, y_pitch, x_electrode, y_electrode, x_phys, y_phys; |
| 2267 | struct alps_data *priv = psmouse->private; |
| 2268 | |
| 2269 | reg = alps_command_mode_read_reg(psmouse, reg_pitch); |
| 2270 | if (reg < 0) |
| 2271 | return reg; |
| 2272 | |
| 2273 | x_pitch = (char)(reg << 4) >> 4; /* sign extend lower 4 bits */ |
| 2274 | x_pitch = 50 + 2 * x_pitch; /* In 0.1 mm units */ |
| 2275 | |
| 2276 | y_pitch = (char)reg >> 4; /* sign extend upper 4 bits */ |
| 2277 | y_pitch = 36 + 2 * y_pitch; /* In 0.1 mm units */ |
| 2278 | |
| 2279 | reg = alps_command_mode_read_reg(psmouse, reg_pitch + 1); |
| 2280 | if (reg < 0) |
| 2281 | return reg; |
| 2282 | |
| 2283 | x_electrode = (char)(reg << 4) >> 4; /* sign extend lower 4 bits */ |
| 2284 | x_electrode = 17 + x_electrode; |
| 2285 | |
| 2286 | y_electrode = (char)reg >> 4; /* sign extend upper 4 bits */ |
| 2287 | y_electrode = 13 + y_electrode; |
| 2288 | |
| 2289 | x_phys = x_pitch * (x_electrode - 1); /* In 0.1 mm units */ |
| 2290 | y_phys = y_pitch * (y_electrode - 1); /* In 0.1 mm units */ |
| 2291 | |
| 2292 | priv->x_res = priv->x_max * 10 / x_phys; /* units / mm */ |
| 2293 | priv->y_res = priv->y_max * 10 / y_phys; /* units / mm */ |
| 2294 | |
| 2295 | psmouse_dbg(psmouse, |
| 2296 | "pitch %dx%d num-electrodes %dx%d physical size %dx%d mm res %dx%d\n", |
| 2297 | x_pitch, y_pitch, x_electrode, y_electrode, |
| 2298 | x_phys / 10, y_phys / 10, priv->x_res, priv->y_res); |
| 2299 | |
| 2300 | return 0; |
| 2301 | } |
| 2302 | |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 2303 | static int alps_hw_init_rushmore_v3(struct psmouse *psmouse) |
| 2304 | { |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2305 | struct alps_data *priv = psmouse->private; |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 2306 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2307 | int reg_val, ret = -1; |
| 2308 | |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2309 | if (priv->flags & ALPS_DUALPOINT) { |
| 2310 | reg_val = alps_setup_trackstick_v3(psmouse, |
| 2311 | ALPS_REG_BASE_RUSHMORE); |
| 2312 | if (reg_val == -EIO) |
| 2313 | goto error; |
Kevin Cernekee | cd40120 | 2013-02-13 22:28:07 -0800 | [diff] [blame] | 2314 | } |
| 2315 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2316 | if (alps_enter_command_mode(psmouse) || |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 2317 | alps_command_mode_read_reg(psmouse, 0xc2d9) == -1 || |
| 2318 | alps_command_mode_write_reg(psmouse, 0xc2cb, 0x00)) |
| 2319 | goto error; |
| 2320 | |
Hans de Goede | f3f33c6 | 2014-07-29 11:22:07 -0700 | [diff] [blame] | 2321 | if (alps_get_v3_v7_resolution(psmouse, 0xc2da)) |
| 2322 | goto error; |
| 2323 | |
Kevin Cernekee | 1302bac | 2013-02-13 22:27:08 -0800 | [diff] [blame] | 2324 | reg_val = alps_command_mode_read_reg(psmouse, 0xc2c6); |
| 2325 | if (reg_val == -1) |
| 2326 | goto error; |
| 2327 | if (__alps_command_mode_write_reg(psmouse, reg_val & 0xfd)) |
| 2328 | goto error; |
| 2329 | |
| 2330 | if (alps_command_mode_write_reg(psmouse, 0xc2c9, 0x64)) |
| 2331 | goto error; |
| 2332 | |
| 2333 | /* enter absolute mode */ |
| 2334 | reg_val = alps_command_mode_read_reg(psmouse, 0xc2c4); |
| 2335 | if (reg_val == -1) |
| 2336 | goto error; |
| 2337 | if (__alps_command_mode_write_reg(psmouse, reg_val | 0x02)) |
| 2338 | goto error; |
| 2339 | |
| 2340 | alps_exit_command_mode(psmouse); |
| 2341 | return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE); |
| 2342 | |
| 2343 | error: |
| 2344 | alps_exit_command_mode(psmouse); |
| 2345 | return ret; |
| 2346 | } |
| 2347 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2348 | /* Must be in command mode when calling this function */ |
| 2349 | static int alps_absolute_mode_v4(struct psmouse *psmouse) |
| 2350 | { |
| 2351 | int reg_val; |
| 2352 | |
| 2353 | reg_val = alps_command_mode_read_reg(psmouse, 0x0004); |
| 2354 | if (reg_val == -1) |
| 2355 | return -1; |
| 2356 | |
| 2357 | reg_val |= 0x02; |
| 2358 | if (__alps_command_mode_write_reg(psmouse, reg_val)) |
| 2359 | return -1; |
| 2360 | |
| 2361 | return 0; |
| 2362 | } |
| 2363 | |
| 2364 | static int alps_hw_init_v4(struct psmouse *psmouse) |
| 2365 | { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2366 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2367 | unsigned char param[4]; |
| 2368 | |
Kevin Cernekee | d18e53f | 2013-02-21 22:58:20 -0800 | [diff] [blame] | 2369 | if (alps_enter_command_mode(psmouse)) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2370 | goto error; |
| 2371 | |
| 2372 | if (alps_absolute_mode_v4(psmouse)) { |
| 2373 | psmouse_err(psmouse, "Failed to enter absolute mode\n"); |
| 2374 | goto error; |
| 2375 | } |
| 2376 | |
| 2377 | if (alps_command_mode_write_reg(psmouse, 0x0007, 0x8c)) |
| 2378 | goto error; |
| 2379 | |
| 2380 | if (alps_command_mode_write_reg(psmouse, 0x0149, 0x03)) |
| 2381 | goto error; |
| 2382 | |
| 2383 | if (alps_command_mode_write_reg(psmouse, 0x0160, 0x03)) |
| 2384 | goto error; |
| 2385 | |
| 2386 | if (alps_command_mode_write_reg(psmouse, 0x017f, 0x15)) |
| 2387 | goto error; |
| 2388 | |
| 2389 | if (alps_command_mode_write_reg(psmouse, 0x0151, 0x01)) |
| 2390 | goto error; |
| 2391 | |
| 2392 | if (alps_command_mode_write_reg(psmouse, 0x0168, 0x03)) |
| 2393 | goto error; |
| 2394 | |
| 2395 | if (alps_command_mode_write_reg(psmouse, 0x014a, 0x03)) |
| 2396 | goto error; |
| 2397 | |
| 2398 | if (alps_command_mode_write_reg(psmouse, 0x0161, 0x03)) |
| 2399 | goto error; |
| 2400 | |
| 2401 | alps_exit_command_mode(psmouse); |
| 2402 | |
| 2403 | /* |
| 2404 | * This sequence changes the output from a 9-byte to an |
| 2405 | * 8-byte format. All the same data seems to be present, |
| 2406 | * just in a more compact format. |
| 2407 | */ |
| 2408 | param[0] = 0xc8; |
| 2409 | param[1] = 0x64; |
| 2410 | param[2] = 0x50; |
| 2411 | if (ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || |
| 2412 | ps2_command(ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE) || |
| 2413 | ps2_command(ps2dev, ¶m[2], PSMOUSE_CMD_SETRATE) || |
| 2414 | ps2_command(ps2dev, param, PSMOUSE_CMD_GETID)) |
| 2415 | return -1; |
| 2416 | |
| 2417 | /* Set rate and enable data reporting */ |
| 2418 | param[0] = 0x64; |
| 2419 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_SETRATE) || |
| 2420 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE)) { |
| 2421 | psmouse_err(psmouse, "Failed to enable data reporting\n"); |
| 2422 | return -1; |
| 2423 | } |
| 2424 | |
| 2425 | return 0; |
| 2426 | |
| 2427 | error: |
| 2428 | /* |
| 2429 | * Leaving the touchpad in command mode will essentially render |
| 2430 | * it unusable until the machine reboots, so exit it here just |
| 2431 | * to be safe |
| 2432 | */ |
| 2433 | alps_exit_command_mode(psmouse); |
| 2434 | return -1; |
| 2435 | } |
| 2436 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2437 | static int alps_get_otp_values_ss4_v2(struct psmouse *psmouse, |
| 2438 | unsigned char index, unsigned char otp[]) |
| 2439 | { |
| 2440 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2441 | |
| 2442 | switch (index) { |
| 2443 | case 0: |
| 2444 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || |
| 2445 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || |
| 2446 | ps2_command(ps2dev, otp, PSMOUSE_CMD_GETINFO)) |
| 2447 | return -1; |
| 2448 | |
| 2449 | break; |
| 2450 | |
| 2451 | case 1: |
| 2452 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) || |
| 2453 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) || |
| 2454 | ps2_command(ps2dev, otp, PSMOUSE_CMD_GETINFO)) |
| 2455 | return -1; |
| 2456 | |
| 2457 | break; |
| 2458 | } |
| 2459 | |
| 2460 | return 0; |
| 2461 | } |
| 2462 | |
Fengguang Wu | 07f19e3 | 2015-04-10 23:54:31 -0700 | [diff] [blame] | 2463 | static int alps_update_device_area_ss4_v2(unsigned char otp[][4], |
| 2464 | struct alps_data *priv) |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2465 | { |
| 2466 | int num_x_electrode; |
| 2467 | int num_y_electrode; |
| 2468 | int x_pitch, y_pitch, x_phys, y_phys; |
| 2469 | |
| 2470 | num_x_electrode = SS4_NUMSENSOR_XOFFSET + (otp[1][0] & 0x0F); |
| 2471 | num_y_electrode = SS4_NUMSENSOR_YOFFSET + ((otp[1][0] >> 4) & 0x0F); |
| 2472 | |
| 2473 | priv->x_max = (num_x_electrode - 1) * SS4_COUNT_PER_ELECTRODE; |
| 2474 | priv->y_max = (num_y_electrode - 1) * SS4_COUNT_PER_ELECTRODE; |
| 2475 | |
| 2476 | x_pitch = ((otp[1][2] >> 2) & 0x07) + SS4_MIN_PITCH_MM; |
| 2477 | y_pitch = ((otp[1][2] >> 5) & 0x07) + SS4_MIN_PITCH_MM; |
| 2478 | |
| 2479 | x_phys = x_pitch * (num_x_electrode - 1); /* In 0.1 mm units */ |
| 2480 | y_phys = y_pitch * (num_y_electrode - 1); /* In 0.1 mm units */ |
| 2481 | |
| 2482 | priv->x_res = priv->x_max * 10 / x_phys; /* units / mm */ |
| 2483 | priv->y_res = priv->y_max * 10 / y_phys; /* units / mm */ |
| 2484 | |
| 2485 | return 0; |
| 2486 | } |
| 2487 | |
Fengguang Wu | 07f19e3 | 2015-04-10 23:54:31 -0700 | [diff] [blame] | 2488 | static int alps_update_btn_info_ss4_v2(unsigned char otp[][4], |
| 2489 | struct alps_data *priv) |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2490 | { |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2491 | unsigned char is_btnless; |
| 2492 | |
| 2493 | is_btnless = (otp[1][1] >> 3) & 0x01; |
| 2494 | |
| 2495 | if (is_btnless) |
| 2496 | priv->flags |= ALPS_BUTTONPAD; |
| 2497 | |
| 2498 | return 0; |
| 2499 | } |
| 2500 | |
| 2501 | static int alps_set_defaults_ss4_v2(struct psmouse *psmouse, |
| 2502 | struct alps_data *priv) |
| 2503 | { |
| 2504 | unsigned char otp[2][4]; |
| 2505 | |
| 2506 | memset(otp, 0, sizeof(otp)); |
| 2507 | |
| 2508 | if (alps_get_otp_values_ss4_v2(psmouse, 0, &otp[0][0]) || |
| 2509 | alps_get_otp_values_ss4_v2(psmouse, 1, &otp[1][0])) |
| 2510 | return -1; |
| 2511 | |
| 2512 | alps_update_device_area_ss4_v2(otp, priv); |
| 2513 | |
| 2514 | alps_update_btn_info_ss4_v2(otp, priv); |
| 2515 | |
| 2516 | return 0; |
| 2517 | } |
| 2518 | |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 2519 | static int alps_dolphin_get_device_area(struct psmouse *psmouse, |
| 2520 | struct alps_data *priv) |
| 2521 | { |
| 2522 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2523 | unsigned char param[4] = {0}; |
| 2524 | int num_x_electrode, num_y_electrode; |
| 2525 | |
| 2526 | if (alps_enter_command_mode(psmouse)) |
| 2527 | return -1; |
| 2528 | |
| 2529 | param[0] = 0x0a; |
| 2530 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_RESET_WRAP) || |
| 2531 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) || |
| 2532 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETPOLL) || |
| 2533 | ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || |
| 2534 | ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE)) |
| 2535 | return -1; |
| 2536 | |
| 2537 | if (ps2_command(ps2dev, param, PSMOUSE_CMD_GETINFO)) |
| 2538 | return -1; |
| 2539 | |
| 2540 | /* |
| 2541 | * Dolphin's sensor line number is not fixed. It can be calculated |
| 2542 | * by adding the device's register value with DOLPHIN_PROFILE_X/YOFFSET. |
| 2543 | * Further more, we can get device's x_max and y_max by multiplying |
| 2544 | * sensor line number with DOLPHIN_COUNT_PER_ELECTRODE. |
| 2545 | * |
| 2546 | * e.g. When we get register's sensor_x = 11 & sensor_y = 8, |
| 2547 | * real sensor line number X = 11 + 8 = 19, and |
| 2548 | * real sensor line number Y = 8 + 1 = 9. |
| 2549 | * So, x_max = (19 - 1) * 64 = 1152, and |
| 2550 | * y_max = (9 - 1) * 64 = 512. |
| 2551 | */ |
| 2552 | num_x_electrode = DOLPHIN_PROFILE_XOFFSET + (param[2] & 0x0F); |
| 2553 | num_y_electrode = DOLPHIN_PROFILE_YOFFSET + ((param[2] >> 4) & 0x0F); |
| 2554 | priv->x_bits = num_x_electrode; |
| 2555 | priv->y_bits = num_y_electrode; |
| 2556 | priv->x_max = (num_x_electrode - 1) * DOLPHIN_COUNT_PER_ELECTRODE; |
| 2557 | priv->y_max = (num_y_electrode - 1) * DOLPHIN_COUNT_PER_ELECTRODE; |
| 2558 | |
| 2559 | if (alps_exit_command_mode(psmouse)) |
| 2560 | return -1; |
| 2561 | |
| 2562 | return 0; |
| 2563 | } |
| 2564 | |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2565 | static int alps_hw_init_dolphin_v1(struct psmouse *psmouse) |
| 2566 | { |
| 2567 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2568 | unsigned char param[2]; |
| 2569 | |
| 2570 | /* This is dolphin "v1" as empirically defined by florin9doi */ |
| 2571 | param[0] = 0x64; |
| 2572 | param[1] = 0x28; |
| 2573 | |
| 2574 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || |
| 2575 | ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || |
| 2576 | ps2_command(ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE)) |
| 2577 | return -1; |
| 2578 | |
| 2579 | return 0; |
| 2580 | } |
| 2581 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2582 | static int alps_hw_init_v7(struct psmouse *psmouse) |
| 2583 | { |
| 2584 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2585 | int reg_val, ret = -1; |
| 2586 | |
| 2587 | if (alps_enter_command_mode(psmouse) || |
| 2588 | alps_command_mode_read_reg(psmouse, 0xc2d9) == -1) |
| 2589 | goto error; |
| 2590 | |
Hans de Goede | f3f33c6 | 2014-07-29 11:22:07 -0700 | [diff] [blame] | 2591 | if (alps_get_v3_v7_resolution(psmouse, 0xc397)) |
| 2592 | goto error; |
| 2593 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2594 | if (alps_command_mode_write_reg(psmouse, 0xc2c9, 0x64)) |
| 2595 | goto error; |
| 2596 | |
| 2597 | reg_val = alps_command_mode_read_reg(psmouse, 0xc2c4); |
| 2598 | if (reg_val == -1) |
| 2599 | goto error; |
| 2600 | if (__alps_command_mode_write_reg(psmouse, reg_val | 0x02)) |
| 2601 | goto error; |
| 2602 | |
| 2603 | alps_exit_command_mode(psmouse); |
| 2604 | return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE); |
| 2605 | |
| 2606 | error: |
| 2607 | alps_exit_command_mode(psmouse); |
| 2608 | return ret; |
| 2609 | } |
| 2610 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2611 | static int alps_hw_init_ss4_v2(struct psmouse *psmouse) |
| 2612 | { |
| 2613 | struct ps2dev *ps2dev = &psmouse->ps2dev; |
| 2614 | char param[2] = {0x64, 0x28}; |
| 2615 | int ret = -1; |
| 2616 | |
| 2617 | /* enter absolute mode */ |
| 2618 | if (ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || |
| 2619 | ps2_command(ps2dev, NULL, PSMOUSE_CMD_SETSTREAM) || |
| 2620 | ps2_command(ps2dev, ¶m[0], PSMOUSE_CMD_SETRATE) || |
| 2621 | ps2_command(ps2dev, ¶m[1], PSMOUSE_CMD_SETRATE)) { |
| 2622 | goto error; |
| 2623 | } |
| 2624 | |
| 2625 | /* T.B.D. Decread noise packet number, delete in the future */ |
| 2626 | if (alps_exit_command_mode(psmouse) || |
| 2627 | alps_enter_command_mode(psmouse) || |
| 2628 | alps_command_mode_write_reg(psmouse, 0x001D, 0x20)) { |
| 2629 | goto error; |
| 2630 | } |
| 2631 | alps_exit_command_mode(psmouse); |
| 2632 | |
| 2633 | return ps2_command(ps2dev, NULL, PSMOUSE_CMD_ENABLE); |
| 2634 | |
| 2635 | error: |
| 2636 | alps_exit_command_mode(psmouse); |
| 2637 | return ret; |
| 2638 | } |
| 2639 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2640 | static int alps_set_protocol(struct psmouse *psmouse, |
| 2641 | struct alps_data *priv, |
| 2642 | const struct alps_protocol_info *protocol) |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2643 | { |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2644 | psmouse->private = priv; |
| 2645 | |
| 2646 | setup_timer(&priv->timer, alps_flush_packet, (unsigned long)psmouse); |
| 2647 | |
| 2648 | priv->proto_version = protocol->version; |
| 2649 | priv->byte0 = protocol->byte0; |
| 2650 | priv->mask0 = protocol->mask0; |
| 2651 | priv->flags = protocol->flags; |
Kevin Cernekee | f673ceb | 2013-02-13 22:23:34 -0800 | [diff] [blame] | 2652 | |
Kevin Cernekee | 7a9f73e | 2013-02-13 22:24:55 -0800 | [diff] [blame] | 2653 | priv->x_max = 2000; |
| 2654 | priv->y_max = 1400; |
| 2655 | priv->x_bits = 15; |
| 2656 | priv->y_bits = 11; |
| 2657 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2658 | switch (priv->proto_version) { |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2659 | case ALPS_PROTO_V1: |
| 2660 | case ALPS_PROTO_V2: |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2661 | priv->hw_init = alps_hw_init_v1_v2; |
| 2662 | priv->process_packet = alps_process_packet_v1_v2; |
| 2663 | priv->set_abs_params = alps_set_abs_params_st; |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 2664 | priv->x_max = 1023; |
| 2665 | priv->y_max = 767; |
Hans de Goede | 1955621 | 2015-10-26 01:50:28 -0700 | [diff] [blame] | 2666 | if (dmi_check_system(alps_dmi_has_separate_stick_buttons)) |
| 2667 | priv->flags |= ALPS_STICK_BITS; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2668 | break; |
Dmitry Torokhov | fb2dd7a | 2015-01-14 10:39:52 -0800 | [diff] [blame] | 2669 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2670 | case ALPS_PROTO_V3: |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2671 | priv->hw_init = alps_hw_init_v3; |
| 2672 | priv->process_packet = alps_process_packet_v3; |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 2673 | priv->set_abs_params = alps_set_abs_params_semi_mt; |
Kevin Cernekee | f85e500 | 2013-02-13 22:26:11 -0800 | [diff] [blame] | 2674 | priv->decode_fields = alps_decode_pinnacle; |
Kevin Cernekee | 50e8b21 | 2013-02-13 22:23:04 -0800 | [diff] [blame] | 2675 | priv->nibble_commands = alps_v3_nibble_commands; |
| 2676 | priv->addr_command = PSMOUSE_CMD_RESET_WRAP; |
Pali Rohár | 4b1af85 | 2016-01-06 15:58:56 -0800 | [diff] [blame] | 2677 | |
| 2678 | if (alps_probe_trackstick_v3_v7(psmouse, |
| 2679 | ALPS_REG_BASE_PINNACLE) < 0) |
| 2680 | priv->flags &= ~ALPS_DUALPOINT; |
| 2681 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2682 | break; |
Dmitry Torokhov | fb2dd7a | 2015-01-14 10:39:52 -0800 | [diff] [blame] | 2683 | |
| 2684 | case ALPS_PROTO_V3_RUSHMORE: |
| 2685 | priv->hw_init = alps_hw_init_rushmore_v3; |
| 2686 | priv->process_packet = alps_process_packet_v3; |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 2687 | priv->set_abs_params = alps_set_abs_params_semi_mt; |
Dmitry Torokhov | fb2dd7a | 2015-01-14 10:39:52 -0800 | [diff] [blame] | 2688 | priv->decode_fields = alps_decode_rushmore; |
| 2689 | priv->nibble_commands = alps_v3_nibble_commands; |
| 2690 | priv->addr_command = PSMOUSE_CMD_RESET_WRAP; |
| 2691 | priv->x_bits = 16; |
| 2692 | priv->y_bits = 12; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2693 | |
Pali Rohár | dae928e | 2016-01-06 15:50:08 -0800 | [diff] [blame] | 2694 | if (alps_probe_trackstick_v3_v7(psmouse, |
| 2695 | ALPS_REG_BASE_RUSHMORE) < 0) |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2696 | priv->flags &= ~ALPS_DUALPOINT; |
| 2697 | |
Dmitry Torokhov | fb2dd7a | 2015-01-14 10:39:52 -0800 | [diff] [blame] | 2698 | break; |
| 2699 | |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2700 | case ALPS_PROTO_V4: |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2701 | priv->hw_init = alps_hw_init_v4; |
| 2702 | priv->process_packet = alps_process_packet_v4; |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 2703 | priv->set_abs_params = alps_set_abs_params_semi_mt; |
Kevin Cernekee | 50e8b21 | 2013-02-13 22:23:04 -0800 | [diff] [blame] | 2704 | priv->nibble_commands = alps_v4_nibble_commands; |
| 2705 | priv->addr_command = PSMOUSE_CMD_DISABLE; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2706 | break; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2707 | |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2708 | case ALPS_PROTO_V5: |
| 2709 | priv->hw_init = alps_hw_init_dolphin_v1; |
Yunkang Tang | ee65d4b | 2013-12-26 14:54:19 -0800 | [diff] [blame] | 2710 | priv->process_packet = alps_process_touchpad_packet_v3_v5; |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2711 | priv->decode_fields = alps_decode_dolphin; |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 2712 | priv->set_abs_params = alps_set_abs_params_semi_mt; |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2713 | priv->nibble_commands = alps_v3_nibble_commands; |
| 2714 | priv->addr_command = PSMOUSE_CMD_RESET_WRAP; |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2715 | priv->x_bits = 23; |
| 2716 | priv->y_bits = 12; |
Dmitry Torokhov | c164c14 | 2015-03-21 20:29:34 -0700 | [diff] [blame] | 2717 | |
| 2718 | if (alps_dolphin_get_device_area(psmouse, priv)) |
| 2719 | return -EIO; |
| 2720 | |
Dave Turvene | 75af9e5 | 2013-02-21 22:58:28 -0800 | [diff] [blame] | 2721 | break; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2722 | |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 2723 | case ALPS_PROTO_V6: |
| 2724 | priv->hw_init = alps_hw_init_v6; |
| 2725 | priv->process_packet = alps_process_packet_v6; |
| 2726 | priv->set_abs_params = alps_set_abs_params_st; |
| 2727 | priv->nibble_commands = alps_v6_nibble_commands; |
| 2728 | priv->x_max = 2047; |
| 2729 | priv->y_max = 1535; |
| 2730 | break; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2731 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2732 | case ALPS_PROTO_V7: |
| 2733 | priv->hw_init = alps_hw_init_v7; |
| 2734 | priv->process_packet = alps_process_packet_v7; |
| 2735 | priv->decode_fields = alps_decode_packet_v7; |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2736 | priv->set_abs_params = alps_set_abs_params_v7; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2737 | priv->nibble_commands = alps_v3_nibble_commands; |
| 2738 | priv->addr_command = PSMOUSE_CMD_RESET_WRAP; |
Dmitry Torokhov | c164c14 | 2015-03-21 20:29:34 -0700 | [diff] [blame] | 2739 | priv->x_max = 0xfff; |
| 2740 | priv->y_max = 0x7ff; |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2741 | |
| 2742 | if (priv->fw_ver[1] != 0xba) |
| 2743 | priv->flags |= ALPS_BUTTONPAD; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2744 | |
Pali Rohár | dae928e | 2016-01-06 15:50:08 -0800 | [diff] [blame] | 2745 | if (alps_probe_trackstick_v3_v7(psmouse, ALPS_REG_BASE_V7) < 0) |
| 2746 | priv->flags &= ~ALPS_DUALPOINT; |
| 2747 | |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2748 | break; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2749 | |
| 2750 | case ALPS_PROTO_V8: |
| 2751 | priv->hw_init = alps_hw_init_ss4_v2; |
| 2752 | priv->process_packet = alps_process_packet_ss4_v2; |
| 2753 | priv->decode_fields = alps_decode_ss4_v2; |
| 2754 | priv->set_abs_params = alps_set_abs_params_ss4_v2; |
| 2755 | priv->nibble_commands = alps_v3_nibble_commands; |
| 2756 | priv->addr_command = PSMOUSE_CMD_RESET_WRAP; |
| 2757 | |
| 2758 | if (alps_set_defaults_ss4_v2(psmouse, priv)) |
| 2759 | return -EIO; |
| 2760 | |
Ben Gamari | aeaa881 | 2016-10-04 11:43:30 -0700 | [diff] [blame] | 2761 | if (priv->fw_ver[1] == 0x1) |
| 2762 | priv->flags |= ALPS_DUALPOINT | |
| 2763 | ALPS_DUALPOINT_WITH_PRESSURE; |
| 2764 | |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2765 | break; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2766 | } |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2767 | |
| 2768 | return 0; |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2769 | } |
| 2770 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2771 | static const struct alps_protocol_info *alps_match_table(unsigned char *e7, |
| 2772 | unsigned char *ec) |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2773 | { |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2774 | const struct alps_model_info *model; |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2775 | int i; |
| 2776 | |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2777 | for (i = 0; i < ARRAY_SIZE(alps_model_data); i++) { |
| 2778 | model = &alps_model_data[i]; |
| 2779 | |
Pali Rohár | a3cbfd5 | 2017-03-07 09:43:35 -0800 | [diff] [blame^] | 2780 | if (!memcmp(e7, model->signature, sizeof(model->signature))) |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2781 | return &model->protocol_info; |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2782 | } |
| 2783 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2784 | return NULL; |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2785 | } |
| 2786 | |
| 2787 | static int alps_identify(struct psmouse *psmouse, struct alps_data *priv) |
| 2788 | { |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2789 | const struct alps_protocol_info *protocol; |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2790 | unsigned char e6[4], e7[4], ec[4]; |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2791 | int error; |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2792 | |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2793 | /* |
| 2794 | * First try "E6 report". |
| 2795 | * ALPS should return 0,0,10 or 0,0,100 if no buttons are pressed. |
| 2796 | * The bits 0-2 of the first byte will be 1s if some buttons are |
| 2797 | * pressed. |
| 2798 | */ |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2799 | if (alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES, |
| 2800 | PSMOUSE_CMD_SETSCALE11, e6)) |
| 2801 | return -EIO; |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2802 | |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2803 | if ((e6[0] & 0xf8) != 0 || e6[1] != 0 || (e6[2] != 10 && e6[2] != 100)) |
| 2804 | return -EINVAL; |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2805 | |
| 2806 | /* |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2807 | * Now get the "E7" and "EC" reports. These will uniquely identify |
| 2808 | * most ALPS touchpads. |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2809 | */ |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2810 | if (alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES, |
| 2811 | PSMOUSE_CMD_SETSCALE21, e7) || |
| 2812 | alps_rpt_cmd(psmouse, PSMOUSE_CMD_SETRES, |
| 2813 | PSMOUSE_CMD_RESET_WRAP, ec) || |
| 2814 | alps_exit_command_mode(psmouse)) |
| 2815 | return -EIO; |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2816 | |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2817 | protocol = alps_match_table(e7, ec); |
| 2818 | if (!protocol) { |
Pali Rohár | 09c398b | 2017-03-07 09:41:34 -0800 | [diff] [blame] | 2819 | if (e7[0] == 0x73 && e7[1] == 0x02 && e7[2] == 0x64 && |
| 2820 | ec[2] == 0x8a) { |
| 2821 | protocol = &alps_v4_protocol_data; |
| 2822 | } else if (e7[0] == 0x73 && e7[1] == 0x03 && e7[2] == 0x50 && |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2823 | ec[0] == 0x73 && (ec[1] == 0x01 || ec[1] == 0x02)) { |
| 2824 | protocol = &alps_v5_protocol_data; |
| 2825 | } else if (ec[0] == 0x88 && |
| 2826 | ((ec[1] & 0xf0) == 0xb0 || (ec[1] & 0xf0) == 0xc0)) { |
| 2827 | protocol = &alps_v7_protocol_data; |
| 2828 | } else if (ec[0] == 0x88 && ec[1] == 0x08) { |
| 2829 | protocol = &alps_v3_rushmore_data; |
| 2830 | } else if (ec[0] == 0x88 && ec[1] == 0x07 && |
| 2831 | ec[2] >= 0x90 && ec[2] <= 0x9d) { |
| 2832 | protocol = &alps_v3_protocol_data; |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2833 | } else if (e7[0] == 0x73 && e7[1] == 0x03 && |
| 2834 | e7[2] == 0x14 && ec[1] == 0x02) { |
| 2835 | protocol = &alps_v8_protocol_data; |
Ben Gamari | aeaa881 | 2016-10-04 11:43:30 -0700 | [diff] [blame] | 2836 | } else if (e7[0] == 0x73 && e7[1] == 0x03 && |
| 2837 | e7[2] == 0x28 && ec[1] == 0x01) { |
| 2838 | protocol = &alps_v8_protocol_data; |
Pali Rohár | c981523 | 2017-03-07 09:42:46 -0800 | [diff] [blame] | 2839 | } else if (e7[0] == 0x73 && e7[1] == 0x03 && e7[2] == 0xc8) { |
| 2840 | protocol = &alps_v9_protocol_data; |
| 2841 | psmouse_warn(psmouse, |
| 2842 | "Unsupported ALPS V9 touchpad: E7=%3ph, EC=%3ph\n", |
| 2843 | e7, ec); |
| 2844 | return -EINVAL; |
Dmitry Torokhov | 3296f71 | 2015-01-12 00:30:32 -0800 | [diff] [blame] | 2845 | } else { |
| 2846 | psmouse_dbg(psmouse, |
| 2847 | "Likely not an ALPS touchpad: E7=%3ph, EC=%3ph\n", e7, ec); |
| 2848 | return -EINVAL; |
| 2849 | } |
| 2850 | } |
| 2851 | |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2852 | if (priv) { |
| 2853 | /* Save the Firmware version */ |
| 2854 | memcpy(priv->fw_ver, ec, 3); |
| 2855 | error = alps_set_protocol(psmouse, priv, protocol); |
| 2856 | if (error) |
| 2857 | return error; |
| 2858 | } |
Hans de Goede | c0cd17f | 2014-07-25 22:49:14 -0700 | [diff] [blame] | 2859 | |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2860 | return 0; |
Kevin Cernekee | 2e992cc | 2013-02-13 20:57:04 -0800 | [diff] [blame] | 2861 | } |
| 2862 | |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 2863 | static int alps_reconnect(struct psmouse *psmouse) |
| 2864 | { |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2865 | struct alps_data *priv = psmouse->private; |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 2866 | |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 2867 | psmouse_reset(psmouse); |
| 2868 | |
Kevin Cernekee | b5d6b85 | 2013-02-13 22:19:59 -0800 | [diff] [blame] | 2869 | if (alps_identify(psmouse, priv) < 0) |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 2870 | return -1; |
| 2871 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2872 | return priv->hw_init(psmouse); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2873 | } |
| 2874 | |
| 2875 | static void alps_disconnect(struct psmouse *psmouse) |
| 2876 | { |
| 2877 | struct alps_data *priv = psmouse->private; |
Dmitry Torokhov | 2e5b636 | 2005-09-15 02:01:44 -0500 | [diff] [blame] | 2878 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2879 | psmouse_reset(psmouse); |
Sebastian Kapfer | 1d9f262 | 2009-12-15 08:39:50 -0800 | [diff] [blame] | 2880 | del_timer_sync(&priv->timer); |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 2881 | if (priv->dev2) |
| 2882 | input_unregister_device(priv->dev2); |
| 2883 | if (!IS_ERR_OR_NULL(priv->dev3)) |
| 2884 | input_unregister_device(priv->dev3); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | kfree(priv); |
| 2886 | } |
| 2887 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2888 | static void alps_set_abs_params_st(struct alps_data *priv, |
| 2889 | struct input_dev *dev1) |
| 2890 | { |
Yunkang Tang | 95f75e9 | 2013-12-01 22:33:52 -0800 | [diff] [blame] | 2891 | input_set_abs_params(dev1, ABS_X, 0, priv->x_max, 0, 0); |
| 2892 | input_set_abs_params(dev1, ABS_Y, 0, priv->y_max, 0, 0); |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2893 | input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0); |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2894 | } |
| 2895 | |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2896 | static void alps_set_abs_params_mt_common(struct alps_data *priv, |
| 2897 | struct input_dev *dev1) |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2898 | { |
Kevin Cernekee | 7a9f73e | 2013-02-13 22:24:55 -0800 | [diff] [blame] | 2899 | input_set_abs_params(dev1, ABS_MT_POSITION_X, 0, priv->x_max, 0, 0); |
| 2900 | input_set_abs_params(dev1, ABS_MT_POSITION_Y, 0, priv->y_max, 0, 0); |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2901 | |
Hans de Goede | f3f33c6 | 2014-07-29 11:22:07 -0700 | [diff] [blame] | 2902 | input_abs_set_res(dev1, ABS_MT_POSITION_X, priv->x_res); |
| 2903 | input_abs_set_res(dev1, ABS_MT_POSITION_Y, priv->y_res); |
| 2904 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2905 | set_bit(BTN_TOOL_TRIPLETAP, dev1->keybit); |
| 2906 | set_bit(BTN_TOOL_QUADTAP, dev1->keybit); |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2907 | } |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2908 | |
Hans de Goede | 688ea36 | 2015-05-20 14:42:50 -0700 | [diff] [blame] | 2909 | static void alps_set_abs_params_semi_mt(struct alps_data *priv, |
| 2910 | struct input_dev *dev1) |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2911 | { |
| 2912 | alps_set_abs_params_mt_common(priv, dev1); |
| 2913 | input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0); |
| 2914 | |
| 2915 | input_mt_init_slots(dev1, MAX_TOUCHES, |
| 2916 | INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED | |
Hans de Goede | 1662c033 | 2015-05-20 14:42:15 -0700 | [diff] [blame] | 2917 | INPUT_MT_SEMI_MT); |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2918 | } |
| 2919 | |
| 2920 | static void alps_set_abs_params_v7(struct alps_data *priv, |
| 2921 | struct input_dev *dev1) |
| 2922 | { |
| 2923 | alps_set_abs_params_mt_common(priv, dev1); |
Masaki Ota | 8d28984 | 2015-03-27 21:30:46 -0700 | [diff] [blame] | 2924 | set_bit(BTN_TOOL_QUINTTAP, dev1->keybit); |
Masaki Ota | 8eccd39 | 2015-03-27 20:44:21 -0700 | [diff] [blame] | 2925 | |
| 2926 | input_mt_init_slots(dev1, MAX_TOUCHES, |
| 2927 | INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED | |
| 2928 | INPUT_MT_TRACK); |
Masaki Ota | 3db5b9f | 2015-03-27 20:57:52 -0700 | [diff] [blame] | 2929 | |
| 2930 | set_bit(BTN_TOOL_QUINTTAP, dev1->keybit); |
| 2931 | } |
| 2932 | |
| 2933 | static void alps_set_abs_params_ss4_v2(struct alps_data *priv, |
| 2934 | struct input_dev *dev1) |
| 2935 | { |
| 2936 | alps_set_abs_params_mt_common(priv, dev1); |
| 2937 | input_set_abs_params(dev1, ABS_PRESSURE, 0, 127, 0, 0); |
| 2938 | set_bit(BTN_TOOL_QUINTTAP, dev1->keybit); |
| 2939 | |
| 2940 | input_mt_init_slots(dev1, MAX_TOUCHES, |
| 2941 | INPUT_MT_POINTER | INPUT_MT_DROP_UNUSED | |
| 2942 | INPUT_MT_TRACK); |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2943 | } |
| 2944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2945 | int alps_init(struct psmouse *psmouse) |
| 2946 | { |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2947 | struct alps_data *priv = psmouse->private; |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 2948 | struct input_dev *dev1 = psmouse->dev; |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2949 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2950 | |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 2951 | error = priv->hw_init(psmouse); |
| 2952 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2953 | goto init_fail; |
| 2954 | |
Dmitry Torokhov | 7105d2e | 2009-12-11 23:54:54 -0800 | [diff] [blame] | 2955 | /* |
| 2956 | * Undo part of setup done for us by psmouse core since touchpad |
| 2957 | * is not a relative device. |
| 2958 | */ |
| 2959 | __clear_bit(EV_REL, dev1->evbit); |
| 2960 | __clear_bit(REL_X, dev1->relbit); |
| 2961 | __clear_bit(REL_Y, dev1->relbit); |
| 2962 | |
| 2963 | /* |
| 2964 | * Now set up our capabilities. |
| 2965 | */ |
Jiri Slaby | 7b19ada | 2007-10-18 23:40:32 -0700 | [diff] [blame] | 2966 | dev1->evbit[BIT_WORD(EV_KEY)] |= BIT_MASK(EV_KEY); |
| 2967 | dev1->keybit[BIT_WORD(BTN_TOUCH)] |= BIT_MASK(BTN_TOUCH); |
| 2968 | dev1->keybit[BIT_WORD(BTN_TOOL_FINGER)] |= BIT_MASK(BTN_TOOL_FINGER); |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 2969 | dev1->keybit[BIT_WORD(BTN_LEFT)] |= |
| 2970 | BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2971 | |
Jiri Slaby | 7b19ada | 2007-10-18 23:40:32 -0700 | [diff] [blame] | 2972 | dev1->evbit[BIT_WORD(EV_ABS)] |= BIT_MASK(EV_ABS); |
Seth Forshee | 25bded7 | 2011-11-07 19:53:36 -0800 | [diff] [blame] | 2973 | |
Kevin Cernekee | 24af5cb | 2013-02-13 22:22:08 -0800 | [diff] [blame] | 2974 | priv->set_abs_params(priv, dev1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2975 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2976 | if (priv->flags & ALPS_WHEEL) { |
Jiri Slaby | 7b19ada | 2007-10-18 23:40:32 -0700 | [diff] [blame] | 2977 | dev1->evbit[BIT_WORD(EV_REL)] |= BIT_MASK(EV_REL); |
| 2978 | dev1->relbit[BIT_WORD(REL_WHEEL)] |= BIT_MASK(REL_WHEEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2979 | } |
| 2980 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2981 | if (priv->flags & (ALPS_FW_BK_1 | ALPS_FW_BK_2)) { |
Jiri Slaby | 7b19ada | 2007-10-18 23:40:32 -0700 | [diff] [blame] | 2982 | dev1->keybit[BIT_WORD(BTN_FORWARD)] |= BIT_MASK(BTN_FORWARD); |
| 2983 | dev1->keybit[BIT_WORD(BTN_BACK)] |= BIT_MASK(BTN_BACK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2984 | } |
| 2985 | |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 2986 | if (priv->flags & ALPS_FOUR_BUTTONS) { |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 2987 | dev1->keybit[BIT_WORD(BTN_0)] |= BIT_MASK(BTN_0); |
| 2988 | dev1->keybit[BIT_WORD(BTN_1)] |= BIT_MASK(BTN_1); |
| 2989 | dev1->keybit[BIT_WORD(BTN_2)] |= BIT_MASK(BTN_2); |
| 2990 | dev1->keybit[BIT_WORD(BTN_3)] |= BIT_MASK(BTN_3); |
Yunkang Tang | 3808843 | 2014-07-26 13:51:41 -0700 | [diff] [blame] | 2991 | } else if (priv->flags & ALPS_BUTTONPAD) { |
| 2992 | set_bit(INPUT_PROP_BUTTONPAD, dev1->propbit); |
| 2993 | clear_bit(BTN_RIGHT, dev1->keybit); |
Maxim Levitsky | 71bb21b | 2009-11-16 22:12:22 -0800 | [diff] [blame] | 2994 | } else { |
| 2995 | dev1->keybit[BIT_WORD(BTN_MIDDLE)] |= BIT_MASK(BTN_MIDDLE); |
| 2996 | } |
| 2997 | |
Pali Rohár | dfba860 | 2015-01-09 12:48:44 -0800 | [diff] [blame] | 2998 | if (priv->flags & ALPS_DUALPOINT) { |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 2999 | struct input_dev *dev2; |
| 3000 | |
| 3001 | dev2 = input_allocate_device(); |
| 3002 | if (!dev2) { |
| 3003 | psmouse_err(psmouse, |
| 3004 | "failed to allocate trackstick device\n"); |
| 3005 | error = -ENOMEM; |
| 3006 | goto init_fail; |
| 3007 | } |
| 3008 | |
| 3009 | snprintf(priv->phys2, sizeof(priv->phys2), "%s/input1", |
| 3010 | psmouse->ps2dev.serio->phys); |
| 3011 | dev2->phys = priv->phys2; |
| 3012 | |
Pali Rohár | dfba860 | 2015-01-09 12:48:44 -0800 | [diff] [blame] | 3013 | /* |
| 3014 | * format of input device name is: "protocol vendor name" |
| 3015 | * see function psmouse_switch_protocol() in psmouse-base.c |
| 3016 | */ |
| 3017 | dev2->name = "AlpsPS/2 ALPS DualPoint Stick"; |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3018 | |
| 3019 | dev2->id.bustype = BUS_I8042; |
| 3020 | dev2->id.vendor = 0x0002; |
Pali Rohár | dfba860 | 2015-01-09 12:48:44 -0800 | [diff] [blame] | 3021 | dev2->id.product = PSMOUSE_ALPS; |
| 3022 | dev2->id.version = priv->proto_version; |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3023 | dev2->dev.parent = &psmouse->ps2dev.serio->dev; |
Pali Rohár | dfba860 | 2015-01-09 12:48:44 -0800 | [diff] [blame] | 3024 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3025 | input_set_capability(dev2, EV_REL, REL_X); |
| 3026 | input_set_capability(dev2, EV_REL, REL_Y); |
Ben Gamari | 7ad8a10 | 2016-10-04 11:41:58 -0700 | [diff] [blame] | 3027 | if (priv->flags & ALPS_DUALPOINT_WITH_PRESSURE) { |
| 3028 | input_set_capability(dev2, EV_ABS, ABS_PRESSURE); |
| 3029 | input_set_abs_params(dev2, ABS_PRESSURE, 0, 127, 0, 0); |
| 3030 | } |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3031 | input_set_capability(dev2, EV_KEY, BTN_LEFT); |
| 3032 | input_set_capability(dev2, EV_KEY, BTN_RIGHT); |
| 3033 | input_set_capability(dev2, EV_KEY, BTN_MIDDLE); |
Dmitry Torokhov | 968ac84 | 2005-05-29 02:28:29 -0500 | [diff] [blame] | 3034 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3035 | __set_bit(INPUT_PROP_POINTER, dev2->propbit); |
Hans de Goede | 7611392 | 2014-09-08 14:42:12 -0700 | [diff] [blame] | 3036 | __set_bit(INPUT_PROP_POINTING_STICK, dev2->propbit); |
| 3037 | |
Pali Rohár | 04aae28 | 2015-01-14 13:18:30 -0800 | [diff] [blame] | 3038 | error = input_register_device(dev2); |
| 3039 | if (error) { |
| 3040 | psmouse_err(psmouse, |
| 3041 | "failed to register trackstick device: %d\n", |
| 3042 | error); |
| 3043 | input_free_device(dev2); |
| 3044 | goto init_fail; |
| 3045 | } |
| 3046 | |
| 3047 | priv->dev2 = dev2; |
| 3048 | } |
| 3049 | |
| 3050 | priv->psmouse = psmouse; |
| 3051 | |
| 3052 | INIT_DELAYED_WORK(&priv->dev3_register_work, |
| 3053 | alps_register_bare_ps2_mouse); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3054 | |
| 3055 | psmouse->protocol_handler = alps_process_byte; |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 3056 | psmouse->poll = alps_poll; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3057 | psmouse->disconnect = alps_disconnect; |
| 3058 | psmouse->reconnect = alps_reconnect; |
Kevin Cernekee | 99df65e | 2013-02-13 20:56:33 -0800 | [diff] [blame] | 3059 | psmouse->pktsize = priv->proto_version == ALPS_PROTO_V4 ? 8 : 6; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3060 | |
Dmitry Torokhov | f0d5c6f4 | 2006-01-14 00:27:37 -0500 | [diff] [blame] | 3061 | /* We are having trouble resyncing ALPS touchpads so disable it for now */ |
| 3062 | psmouse->resync_time = 0; |
| 3063 | |
Pali Rohár | 9d720b3 | 2014-11-08 12:58:57 -0800 | [diff] [blame] | 3064 | /* Allow 2 invalid packets without resetting device */ |
| 3065 | psmouse->resetafter = psmouse->pktsize * 2; |
| 3066 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3067 | return 0; |
| 3068 | |
| 3069 | init_fail: |
Dmitry Torokhov | f42649e | 2007-04-12 01:31:13 -0400 | [diff] [blame] | 3070 | psmouse_reset(psmouse); |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3071 | /* |
| 3072 | * Even though we did not allocate psmouse->private we do free |
| 3073 | * it here. |
| 3074 | */ |
| 3075 | kfree(psmouse->private); |
Dmitry Torokhov | 1e0c5b1 | 2007-05-14 23:51:54 -0400 | [diff] [blame] | 3076 | psmouse->private = NULL; |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3077 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3078 | } |
| 3079 | |
Dmitry Torokhov | b7802c5 | 2009-09-09 19:13:20 -0700 | [diff] [blame] | 3080 | int alps_detect(struct psmouse *psmouse, bool set_properties) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3081 | { |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3082 | struct alps_data *priv; |
| 3083 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3084 | |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3085 | error = alps_identify(psmouse, NULL); |
| 3086 | if (error) |
| 3087 | return error; |
| 3088 | |
| 3089 | /* |
| 3090 | * Reset the device to make sure it is fully operational: |
| 3091 | * on some laptops, like certain Dell Latitudes, we may |
| 3092 | * fail to properly detect presence of trackstick if device |
| 3093 | * has not been reset. |
| 3094 | */ |
| 3095 | psmouse_reset(psmouse); |
| 3096 | |
| 3097 | priv = kzalloc(sizeof(struct alps_data), GFP_KERNEL); |
| 3098 | if (!priv) |
| 3099 | return -ENOMEM; |
| 3100 | |
| 3101 | error = alps_identify(psmouse, priv); |
Dmitry Torokhov | 93050db | 2015-02-27 15:49:51 -0800 | [diff] [blame] | 3102 | if (error) { |
| 3103 | kfree(priv); |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3104 | return error; |
Dmitry Torokhov | 93050db | 2015-02-27 15:49:51 -0800 | [diff] [blame] | 3105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3106 | |
| 3107 | if (set_properties) { |
| 3108 | psmouse->vendor = "ALPS"; |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3109 | psmouse->name = priv->flags & ALPS_DUALPOINT ? |
Dmitry Torokhov | 968ac84 | 2005-05-29 02:28:29 -0500 | [diff] [blame] | 3110 | "DualPoint TouchPad" : "GlidePoint"; |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3111 | psmouse->model = priv->proto_version; |
| 3112 | } else { |
| 3113 | /* |
| 3114 | * Destroy alps_data structure we allocated earlier since |
| 3115 | * this was just a "trial run". Otherwise we'll keep it |
| 3116 | * to be used by alps_init() which has to be called if |
| 3117 | * we succeed and set_properties is true. |
| 3118 | */ |
| 3119 | kfree(priv); |
| 3120 | psmouse->private = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3121 | } |
Dmitry Torokhov | a09221e | 2015-01-13 20:46:09 -0800 | [diff] [blame] | 3122 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3123 | return 0; |
| 3124 | } |
| 3125 | |