include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / input / mouse / lifebook.c
CommitLineData
02d7f589
KE
1/*
2 * Fujitsu B-series Lifebook PS/2 TouchScreen driver
3 *
4 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
5 * Copyright (c) 2005 Kenan Esau <kenan.esau@conan.de>
6 *
7 * TouchScreen detection, absolute mode setting and packet layout is taken from
8 * Harald Hoyer's description of the device.
9 *
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License version 2 as published by
12 * the Free Software Foundation.
13 */
14
15#include <linux/input.h>
16#include <linux/serio.h>
17#include <linux/libps2.h>
18#include <linux/dmi.h>
5a0e3ad6 19#include <linux/slab.h>
02d7f589
KE
20
21#include "psmouse.h"
22#include "lifebook.h"
23
2ebdcc61
DT
24struct lifebook_data {
25 struct input_dev *dev2; /* Relative device */
26 char phys[32];
27};
28
7705d548
DT
29static bool lifebook_present;
30
e7afcd1b
DT
31static const char *desired_serio_phys;
32
7705d548 33static int lifebook_limit_serio3(const struct dmi_system_id *d)
e7afcd1b 34{
7705d548 35 desired_serio_phys = "isa0060/serio3";
e7afcd1b
DT
36 return 0;
37}
38
b7802c5c 39static bool lifebook_use_6byte_proto;
1b118799 40
1855256c 41static int lifebook_set_6byte_proto(const struct dmi_system_id *d)
1b118799 42{
b7802c5c 43 lifebook_use_6byte_proto = true;
1b118799
DT
44 return 0;
45}
46
7705d548 47static const struct dmi_system_id __initconst lifebook_dmi_table[] = {
b1b29650 48 {
9961e259 49 /* FLORA-ie 55mi */
b1b29650
AM
50 .matches = {
51 DMI_MATCH(DMI_PRODUCT_NAME, "FLORA-ie 55mi"),
52 },
53 },
57b5e2ae
JD
54 {
55 /* LifeBook B */
56 .matches = {
57 DMI_MATCH(DMI_PRODUCT_NAME, "Lifebook B Series"),
58 },
59 },
b1b29650 60 {
9961e259 61 /* LifeBook B */
b1b29650
AM
62 .matches = {
63 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"),
64 },
65 },
66 {
9961e259 67 /* Lifebook B */
b1b29650
AM
68 .matches = {
69 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK B Series"),
70 },
71 },
6b9ff696 72 {
9961e259 73 /* Lifebook B-2130 */
6b9ff696
DT
74 .matches = {
75 DMI_MATCH(DMI_BOARD_NAME, "ZEPHYR"),
76 },
77 },
b1b29650 78 {
9961e259 79 /* Lifebook B213x/B2150 */
b1b29650
AM
80 .matches = {
81 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B2131/B2133/B2150"),
82 },
83 },
84 {
9961e259 85 /* Zephyr */
b1b29650
AM
86 .matches = {
87 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPHYR"),
88 },
89 },
90 {
9961e259 91 /* Panasonic CF-18 */
b1b29650
AM
92 .matches = {
93 DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
94 },
7705d548 95 .callback = lifebook_limit_serio3,
b1b29650 96 },
1b118799 97 {
9961e259 98 /* Panasonic CF-28 */
1b118799
DT
99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
101 DMI_MATCH(DMI_PRODUCT_NAME, "CF-28"),
102 },
103 .callback = lifebook_set_6byte_proto,
104 },
43887ba1 105 {
9961e259 106 /* Panasonic CF-29 */
43887ba1
DT
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
110 },
111 .callback = lifebook_set_6byte_proto,
112 },
f76f672e 113 {
9961e259 114 /* Panasonic CF-72 */
f76f672e
DT
115 .matches = {
116 DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"),
117 },
b1e69aae 118 .callback = lifebook_set_6byte_proto,
f76f672e 119 },
b1b29650 120 {
9961e259 121 /* Lifebook B142 */
b1b29650
AM
122 .matches = {
123 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B142"),
124 },
125 },
126 { }
02d7f589
KE
127};
128
7705d548
DT
129void __init lifebook_module_init(void)
130{
131 lifebook_present = dmi_check_system(lifebook_dmi_table);
132}
133
7d12e780 134static psmouse_ret_t lifebook_process_byte(struct psmouse *psmouse)
02d7f589 135{
2ebdcc61
DT
136 struct lifebook_data *priv = psmouse->private;
137 struct input_dev *dev1 = psmouse->dev;
e6b20d8d 138 struct input_dev *dev2 = priv ? priv->dev2 : NULL;
1b118799 139 unsigned char *packet = psmouse->packet;
b7802c5c 140 bool relative_packet = packet[0] & 0x08;
02d7f589 141
1b118799
DT
142 if (relative_packet || !lifebook_use_6byte_proto) {
143 if (psmouse->pktcnt != 3)
144 return PSMOUSE_GOOD_DATA;
02d7f589 145 } else {
1b118799
DT
146 switch (psmouse->pktcnt) {
147 case 1:
148 return (packet[0] & 0xf8) == 0x00 ?
149 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
150 case 2:
151 return PSMOUSE_GOOD_DATA;
152 case 3:
153 return ((packet[2] & 0x30) << 2) == (packet[2] & 0xc0) ?
154 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
155 case 4:
156 return (packet[3] & 0xf8) == 0xc0 ?
157 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
158 case 5:
159 return (packet[4] & 0xc0) == (packet[2] & 0xc0) ?
160 PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
161 case 6:
162 if (((packet[5] & 0x30) << 2) != (packet[5] & 0xc0))
163 return PSMOUSE_BAD_DATA;
164 if ((packet[5] & 0xc0) != (packet[1] & 0xc0))
165 return PSMOUSE_BAD_DATA;
166 break; /* report data */
167 }
168 }
169
170 if (relative_packet) {
2ebdcc61
DT
171 if (!dev2)
172 printk(KERN_WARNING "lifebook.c: got relative packet "
173 "but no relative device set up\n");
1b118799 174 } else {
9b771ac4
DT
175 if (lifebook_use_6byte_proto) {
176 input_report_abs(dev1, ABS_X,
177 ((packet[1] & 0x3f) << 6) | (packet[2] & 0x3f));
178 input_report_abs(dev1, ABS_Y,
179 4096 - (((packet[4] & 0x3f) << 6) | (packet[5] & 0x3f)));
180 } else {
181 input_report_abs(dev1, ABS_X,
182 (packet[1] | ((packet[0] & 0x30) << 4)));
183 input_report_abs(dev1, ABS_Y,
184 1024 - (packet[2] | ((packet[0] & 0xC0) << 2)));
185 }
186 input_report_key(dev1, BTN_TOUCH, packet[0] & 0x04);
187 input_sync(dev1);
02d7f589
KE
188 }
189
2ebdcc61
DT
190 if (dev2) {
191 if (relative_packet) {
192 input_report_rel(dev2, REL_X,
193 ((packet[0] & 0x10) ? packet[1] - 256 : packet[1]));
194 input_report_rel(dev2, REL_Y,
195 -(int)((packet[0] & 0x20) ? packet[2] - 256 : packet[2]));
196 }
197 input_report_key(dev2, BTN_LEFT, packet[0] & 0x01);
198 input_report_key(dev2, BTN_RIGHT, packet[0] & 0x02);
199 input_sync(dev2);
200 }
02d7f589
KE
201
202 return PSMOUSE_FULL_PACKET;
203}
204
a15d60f8 205static int lifebook_absolute_mode(struct psmouse *psmouse)
02d7f589
KE
206{
207 struct ps2dev *ps2dev = &psmouse->ps2dev;
208 unsigned char param;
209
14e94143 210 if (psmouse_reset(psmouse))
02d7f589
KE
211 return -1;
212
14e94143 213 /*
0cc1770b
DT
214 * Enable absolute output -- ps2_command fails always but if
215 * you leave this call out the touchsreen will never send
216 * absolute coordinates
217 */
1b118799 218 param = lifebook_use_6byte_proto ? 0x08 : 0x07;
02d7f589
KE
219 ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
220
02d7f589
KE
221 return 0;
222}
223
2ebdcc61
DT
224static void lifebook_relative_mode(struct psmouse *psmouse)
225{
226 struct ps2dev *ps2dev = &psmouse->ps2dev;
227 unsigned char param = 0x06;
228
229 ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
230}
231
a913829e
DT
232static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution)
233{
e38de678
HD
234 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
235 unsigned char p;
a913829e
DT
236
237 if (resolution == 0 || resolution > 400)
238 resolution = 400;
239
e38de678
HD
240 p = params[resolution / 100];
241 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
242 psmouse->resolution = 50 << p;
a913829e
DT
243}
244
02d7f589
KE
245static void lifebook_disconnect(struct psmouse *psmouse)
246{
653e91d0
AS
247 struct lifebook_data *priv = psmouse->private;
248
02d7f589 249 psmouse_reset(psmouse);
653e91d0
AS
250 if (priv) {
251 input_unregister_device(priv->dev2);
252 kfree(priv);
253 }
2ebdcc61 254 psmouse->private = NULL;
02d7f589
KE
255}
256
b7802c5c 257int lifebook_detect(struct psmouse *psmouse, bool set_properties)
02d7f589 258{
7705d548 259 if (!lifebook_present)
02d7f589
KE
260 return -1;
261
e7afcd1b
DT
262 if (desired_serio_phys &&
263 strcmp(psmouse->ps2dev.serio->phys, desired_serio_phys))
264 return -1;
265
02d7f589 266 if (set_properties) {
a15d60f8
DT
267 psmouse->vendor = "Fujitsu";
268 psmouse->name = "Lifebook TouchScreen";
02d7f589
KE
269 }
270
a15d60f8 271 return 0;
02d7f589 272}
a15d60f8 273
2ebdcc61
DT
274static int lifebook_create_relative_device(struct psmouse *psmouse)
275{
276 struct input_dev *dev2;
277 struct lifebook_data *priv;
278 int error = -ENOMEM;
279
280 priv = kzalloc(sizeof(struct lifebook_data), GFP_KERNEL);
281 dev2 = input_allocate_device();
282 if (!priv || !dev2)
283 goto err_out;
284
285 priv->dev2 = dev2;
286 snprintf(priv->phys, sizeof(priv->phys),
287 "%s/input1", psmouse->ps2dev.serio->phys);
288
289 dev2->phys = priv->phys;
290 dev2->name = "PS/2 Touchpad";
291 dev2->id.bustype = BUS_I8042;
292 dev2->id.vendor = 0x0002;
293 dev2->id.product = PSMOUSE_LIFEBOOK;
294 dev2->id.version = 0x0000;
295 dev2->dev.parent = &psmouse->ps2dev.serio->dev;
296
7b19ada2
JS
297 dev2->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
298 dev2->relbit[BIT_WORD(REL_X)] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
0cc1770b
DT
299 dev2->keybit[BIT_WORD(BTN_LEFT)] =
300 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT);
2ebdcc61
DT
301
302 error = input_register_device(priv->dev2);
303 if (error)
304 goto err_out;
305
306 psmouse->private = priv;
307 return 0;
308
309 err_out:
310 input_free_device(dev2);
311 kfree(priv);
312 return error;
313}
314
a15d60f8
DT
315int lifebook_init(struct psmouse *psmouse)
316{
2ebdcc61 317 struct input_dev *dev1 = psmouse->dev;
62e729b6 318 int max_coord = lifebook_use_6byte_proto ? 4096 : 1024;
2e5b636b 319
a15d60f8
DT
320 if (lifebook_absolute_mode(psmouse))
321 return -1;
322
7b19ada2 323 dev1->evbit[0] = BIT_MASK(EV_ABS) | BIT_MASK(EV_KEY);
2ebdcc61 324 dev1->relbit[0] = 0;
0cc1770b 325 dev1->keybit[BIT_WORD(BTN_MOUSE)] = 0;
7b19ada2 326 dev1->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
2ebdcc61
DT
327 input_set_abs_params(dev1, ABS_X, 0, max_coord, 0, 0);
328 input_set_abs_params(dev1, ABS_Y, 0, max_coord, 0, 0);
329
330 if (!desired_serio_phys) {
331 if (lifebook_create_relative_device(psmouse)) {
332 lifebook_relative_mode(psmouse);
333 return -1;
334 }
335 }
a15d60f8
DT
336
337 psmouse->protocol_handler = lifebook_process_byte;
a913829e 338 psmouse->set_resolution = lifebook_set_resolution;
a15d60f8
DT
339 psmouse->disconnect = lifebook_disconnect;
340 psmouse->reconnect = lifebook_absolute_mode;
1b118799 341
2ebdcc61
DT
342 psmouse->model = lifebook_use_6byte_proto ? 6 : 3;
343
1b118799
DT
344 /*
345 * Use packet size = 3 even when using 6-byte protocol because
346 * that's what POLL will return on Lifebooks (according to spec).
347 */
a15d60f8
DT
348 psmouse->pktsize = 3;
349
350 return 0;
351}
352