GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / input / mouse / lifebook.c
blob0c6f54bfef5e9a07f749ca3450b7a5619cd7e438
1 /*
2 * Fujitsu B-series Lifebook PS/2 TouchScreen driver
4 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
5 * Copyright (c) 2005 Kenan Esau <kenan.esau@conan.de>
7 * TouchScreen detection, absolute mode setting and packet layout is taken from
8 * Harald Hoyer's description of the device.
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.
15 #include <linux/input.h>
16 #include <linux/serio.h>
17 #include <linux/libps2.h>
18 #include <linux/dmi.h>
19 #include <linux/slab.h>
21 #include "psmouse.h"
22 #include "lifebook.h"
24 struct lifebook_data {
25 struct input_dev *dev2; /* Relative device */
26 char phys[32];
29 static bool lifebook_present;
31 static const char *desired_serio_phys;
33 static int lifebook_limit_serio3(const struct dmi_system_id *d)
35 desired_serio_phys = "isa0060/serio3";
36 return 0;
39 static bool lifebook_use_6byte_proto;
41 static int lifebook_set_6byte_proto(const struct dmi_system_id *d)
43 lifebook_use_6byte_proto = true;
44 return 0;
47 static const struct dmi_system_id __initconst lifebook_dmi_table[] = {
49 /* FLORA-ie 55mi */
50 .matches = {
51 DMI_MATCH(DMI_PRODUCT_NAME, "FLORA-ie 55mi"),
55 /* LifeBook B */
56 .matches = {
57 DMI_MATCH(DMI_PRODUCT_NAME, "Lifebook B Series"),
61 /* LifeBook B */
62 .matches = {
63 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"),
67 /* Lifebook B */
68 .matches = {
69 DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK B Series"),
73 /* Lifebook B-2130 */
74 .matches = {
75 DMI_MATCH(DMI_BOARD_NAME, "ZEPHYR"),
79 /* Lifebook B213x/B2150 */
80 .matches = {
81 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B2131/B2133/B2150"),
85 /* Zephyr */
86 .matches = {
87 DMI_MATCH(DMI_PRODUCT_NAME, "ZEPHYR"),
91 /* Panasonic CF-18 */
92 .matches = {
93 DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
95 .callback = lifebook_limit_serio3,
98 /* Panasonic CF-28 */
99 .matches = {
100 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
101 DMI_MATCH(DMI_PRODUCT_NAME, "CF-28"),
103 .callback = lifebook_set_6byte_proto,
106 /* Panasonic CF-29 */
107 .matches = {
108 DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
109 DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
111 .callback = lifebook_set_6byte_proto,
114 /* Panasonic CF-72 */
115 .matches = {
116 DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"),
118 .callback = lifebook_set_6byte_proto,
121 /* Lifebook B142 */
122 .matches = {
123 DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B142"),
129 void __init lifebook_module_init(void)
131 lifebook_present = dmi_check_system(lifebook_dmi_table);
134 static psmouse_ret_t lifebook_process_byte(struct psmouse *psmouse)
136 struct lifebook_data *priv = psmouse->private;
137 struct input_dev *dev1 = psmouse->dev;
138 struct input_dev *dev2 = priv ? priv->dev2 : NULL;
139 unsigned char *packet = psmouse->packet;
140 bool relative_packet = packet[0] & 0x08;
142 if (relative_packet || !lifebook_use_6byte_proto) {
143 if (psmouse->pktcnt != 3)
144 return PSMOUSE_GOOD_DATA;
145 } else {
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 */
170 if (relative_packet) {
171 if (!dev2)
172 printk(KERN_WARNING "lifebook.c: got relative packet "
173 "but no relative device set up\n");
174 } else {
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)));
186 input_report_key(dev1, BTN_TOUCH, packet[0] & 0x04);
187 input_sync(dev1);
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]));
197 input_report_key(dev2, BTN_LEFT, packet[0] & 0x01);
198 input_report_key(dev2, BTN_RIGHT, packet[0] & 0x02);
199 input_sync(dev2);
202 return PSMOUSE_FULL_PACKET;
205 static int lifebook_absolute_mode(struct psmouse *psmouse)
207 struct ps2dev *ps2dev = &psmouse->ps2dev;
208 unsigned char param;
210 if (psmouse_reset(psmouse))
211 return -1;
214 * Enable absolute output -- ps2_command fails always but if
215 * you leave this call out the touchsreen will never send
216 * absolute coordinates
218 param = lifebook_use_6byte_proto ? 0x08 : 0x07;
219 ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
221 return 0;
224 static void lifebook_relative_mode(struct psmouse *psmouse)
226 struct ps2dev *ps2dev = &psmouse->ps2dev;
227 unsigned char param = 0x06;
229 ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
232 static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution)
234 static const unsigned char params[] = { 0, 1, 2, 2, 3 };
235 unsigned char p;
237 if (resolution == 0 || resolution > 400)
238 resolution = 400;
240 p = params[resolution / 100];
241 ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
242 psmouse->resolution = 50 << p;
245 static void lifebook_disconnect(struct psmouse *psmouse)
247 struct lifebook_data *priv = psmouse->private;
249 psmouse_reset(psmouse);
250 if (priv) {
251 input_unregister_device(priv->dev2);
252 kfree(priv);
254 psmouse->private = NULL;
257 int lifebook_detect(struct psmouse *psmouse, bool set_properties)
259 if (!lifebook_present)
260 return -1;
262 if (desired_serio_phys &&
263 strcmp(psmouse->ps2dev.serio->phys, desired_serio_phys))
264 return -1;
266 if (set_properties) {
267 psmouse->vendor = "Fujitsu";
268 psmouse->name = "Lifebook TouchScreen";
271 return 0;
274 static int lifebook_create_relative_device(struct psmouse *psmouse)
276 struct input_dev *dev2;
277 struct lifebook_data *priv;
278 int error = -ENOMEM;
280 priv = kzalloc(sizeof(struct lifebook_data), GFP_KERNEL);
281 dev2 = input_allocate_device();
282 if (!priv || !dev2)
283 goto err_out;
285 priv->dev2 = dev2;
286 snprintf(priv->phys, sizeof(priv->phys),
287 "%s/input1", psmouse->ps2dev.serio->phys);
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;
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);
299 dev2->keybit[BIT_WORD(BTN_LEFT)] =
300 BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT);
302 error = input_register_device(priv->dev2);
303 if (error)
304 goto err_out;
306 psmouse->private = priv;
307 return 0;
309 err_out:
310 input_free_device(dev2);
311 kfree(priv);
312 return error;
315 int lifebook_init(struct psmouse *psmouse)
317 struct input_dev *dev1 = psmouse->dev;
318 int max_coord = lifebook_use_6byte_proto ? 4096 : 1024;
320 if (lifebook_absolute_mode(psmouse))
321 return -1;
323 dev1->evbit[0] = BIT_MASK(EV_ABS) | BIT_MASK(EV_KEY);
324 dev1->relbit[0] = 0;
325 dev1->keybit[BIT_WORD(BTN_MOUSE)] = 0;
326 dev1->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
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);
330 if (!desired_serio_phys) {
331 if (lifebook_create_relative_device(psmouse)) {
332 lifebook_relative_mode(psmouse);
333 return -1;
337 psmouse->protocol_handler = lifebook_process_byte;
338 psmouse->set_resolution = lifebook_set_resolution;
339 psmouse->disconnect = lifebook_disconnect;
340 psmouse->reconnect = lifebook_absolute_mode;
342 psmouse->model = lifebook_use_6byte_proto ? 6 : 3;
345 * Use packet size = 3 even when using 6-byte protocol because
346 * that's what POLL will return on Lifebooks (according to spec).
348 psmouse->pktsize = 3;
350 return 0;