lifebook.c 8.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Fujitsu B-series Lifebook PS/2 TouchScreen driver
 *
 * Copyright (c) 2005 Vojtech Pavlik <vojtech@suse.cz>
 * Copyright (c) 2005 Kenan Esau <kenan.esau@conan.de>
 *
 * TouchScreen detection, absolute mode setting and packet layout is taken from
 * Harald Hoyer's description of the device.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 as published by
 * the Free Software Foundation.
 */

#include <linux/input.h>
#include <linux/serio.h>
#include <linux/libps2.h>
#include <linux/dmi.h>

#include "psmouse.h"
#include "lifebook.h"

23 24 25 26 27
struct lifebook_data {
	struct input_dev *dev2;		/* Relative device */
	char phys[32];
};

28 29
static bool lifebook_present;

30 31
static const char *desired_serio_phys;

32
static int lifebook_limit_serio3(const struct dmi_system_id *d)
33
{
34
	desired_serio_phys = "isa0060/serio3";
35 36 37
	return 0;
}

38
static bool lifebook_use_6byte_proto;
39

40
static int lifebook_set_6byte_proto(const struct dmi_system_id *d)
41
{
42
	lifebook_use_6byte_proto = true;
43 44 45
	return 0;
}

46
static const struct dmi_system_id __initconst lifebook_dmi_table[] = {
47
	{
48
		/* FLORA-ie 55mi */
49 50 51 52 53
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "FLORA-ie 55mi"),
		},
	},
	{
54
		/* LifeBook B */
55 56 57 58 59
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"),
		},
	},
	{
60
		/* Lifebook B */
61 62 63 64
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK B Series"),
		},
	},
65
	{
66
		/* Lifebook B-2130 */
67 68 69 70
		.matches = {
			DMI_MATCH(DMI_BOARD_NAME, "ZEPHYR"),
		},
	},
71
	{
72
		/* Lifebook B213x/B2150 */
73 74 75 76 77
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B2131/B2133/B2150"),
		},
	},
	{
78
		/* Zephyr */
79 80 81 82 83
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "ZEPHYR"),
		},
	},
	{
84
		/* Panasonic CF-18 */
85 86 87
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
		},
88
		.callback = lifebook_limit_serio3,
89
	},
90
	{
91
		/* Panasonic CF-28 */
92 93 94 95 96 97
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-28"),
		},
		.callback = lifebook_set_6byte_proto,
	},
98
	{
99
		/* Panasonic CF-29 */
100 101 102 103 104 105
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
		},
		.callback = lifebook_set_6byte_proto,
	},
106
	{
107
		/* Panasonic CF-72 */
108 109 110
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-72"),
		},
111
		.callback = lifebook_set_6byte_proto,
112
	},
113
	{
114
		/* Lifebook B142 */
115 116 117 118 119
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B142"),
		},
	},
	{ }
120 121
};

122 123 124 125 126
void __init lifebook_module_init(void)
{
	lifebook_present = dmi_check_system(lifebook_dmi_table);
}

127
static psmouse_ret_t lifebook_process_byte(struct psmouse *psmouse)
128
{
129 130
	struct lifebook_data *priv = psmouse->private;
	struct input_dev *dev1 = psmouse->dev;
131
	struct input_dev *dev2 = priv ? priv->dev2 : NULL;
132
	unsigned char *packet = psmouse->packet;
133
	bool relative_packet = packet[0] & 0x08;
134

135 136 137
	if (relative_packet || !lifebook_use_6byte_proto) {
		if (psmouse->pktcnt != 3)
			return PSMOUSE_GOOD_DATA;
138
	} else {
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
		switch (psmouse->pktcnt) {
		case 1:
			return (packet[0] & 0xf8) == 0x00 ?
				PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
		case 2:
			return PSMOUSE_GOOD_DATA;
		case 3:
			return ((packet[2] & 0x30) << 2) == (packet[2] & 0xc0) ?
				PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
		case 4:
			return (packet[3] & 0xf8) == 0xc0 ?
				PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
		case 5:
			return (packet[4] & 0xc0) == (packet[2] & 0xc0) ?
				PSMOUSE_GOOD_DATA : PSMOUSE_BAD_DATA;
		case 6:
			if (((packet[5] & 0x30) << 2) != (packet[5] & 0xc0))
				return PSMOUSE_BAD_DATA;
			if ((packet[5] & 0xc0) != (packet[1] & 0xc0))
				return PSMOUSE_BAD_DATA;
			break; /* report data */
		}
	}

	if (relative_packet) {
164 165 166
		if (!dev2)
			printk(KERN_WARNING "lifebook.c: got relative packet "
				"but no relative device set up\n");
167
	} else {
168 169 170 171 172 173 174 175 176 177 178 179 180
		if (lifebook_use_6byte_proto) {
			input_report_abs(dev1, ABS_X,
				((packet[1] & 0x3f) << 6) | (packet[2] & 0x3f));
			input_report_abs(dev1, ABS_Y,
				4096 - (((packet[4] & 0x3f) << 6) | (packet[5] & 0x3f)));
		} else {
			input_report_abs(dev1, ABS_X,
				(packet[1] | ((packet[0] & 0x30) << 4)));
			input_report_abs(dev1, ABS_Y,
				1024 - (packet[2] | ((packet[0] & 0xC0) << 2)));
		}
		input_report_key(dev1, BTN_TOUCH, packet[0] & 0x04);
		input_sync(dev1);
181 182
	}

183 184 185 186 187 188 189 190 191 192 193
	if (dev2) {
		if (relative_packet) {
			input_report_rel(dev2, REL_X,
				((packet[0] & 0x10) ? packet[1] - 256 : packet[1]));
			input_report_rel(dev2, REL_Y,
				 -(int)((packet[0] & 0x20) ? packet[2] - 256 : packet[2]));
		}
		input_report_key(dev2, BTN_LEFT, packet[0] & 0x01);
		input_report_key(dev2, BTN_RIGHT, packet[0] & 0x02);
		input_sync(dev2);
	}
194 195 196 197

	return PSMOUSE_FULL_PACKET;
}

198
static int lifebook_absolute_mode(struct psmouse *psmouse)
199 200 201 202
{
	struct ps2dev *ps2dev = &psmouse->ps2dev;
	unsigned char param;

203
	if (psmouse_reset(psmouse))
204 205
		return -1;

206
	/*
207 208 209 210
	 * Enable absolute output -- ps2_command fails always but if
	 * you leave this call out the touchsreen will never send
	 * absolute coordinates
	 */
211
	param = lifebook_use_6byte_proto ? 0x08 : 0x07;
212 213 214 215 216
	ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);

	return 0;
}

217 218 219 220 221 222 223 224
static void lifebook_relative_mode(struct psmouse *psmouse)
{
	struct ps2dev *ps2dev = &psmouse->ps2dev;
	unsigned char param = 0x06;

	ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);
}

225 226
static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution)
{
H
Helge Deller 已提交
227 228
	static const unsigned char params[] = { 0, 1, 2, 2, 3 };
	unsigned char p;
229 230 231 232

	if (resolution == 0 || resolution > 400)
		resolution = 400;

H
Helge Deller 已提交
233 234 235
	p = params[resolution / 100];
	ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
	psmouse->resolution = 50 << p;
236 237
}

238 239
static void lifebook_disconnect(struct psmouse *psmouse)
{
240 241
	struct lifebook_data *priv = psmouse->private;

242
	psmouse_reset(psmouse);
243 244 245 246
	if (priv) {
		input_unregister_device(priv->dev2);
		kfree(priv);
	}
247
	psmouse->private = NULL;
248 249
}

250
int lifebook_detect(struct psmouse *psmouse, bool set_properties)
251
{
252
        if (!lifebook_present)
253 254
                return -1;

255 256 257 258
	if (desired_serio_phys &&
	    strcmp(psmouse->ps2dev.serio->phys, desired_serio_phys))
		return -1;

259
	if (set_properties) {
260 261
		psmouse->vendor = "Fujitsu";
		psmouse->name = "Lifebook TouchScreen";
262 263
	}

264
        return 0;
265
}
266

267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289
static int lifebook_create_relative_device(struct psmouse *psmouse)
{
	struct input_dev *dev2;
	struct lifebook_data *priv;
	int error = -ENOMEM;

	priv = kzalloc(sizeof(struct lifebook_data), GFP_KERNEL);
	dev2 = input_allocate_device();
	if (!priv || !dev2)
		goto err_out;

	priv->dev2 = dev2;
	snprintf(priv->phys, sizeof(priv->phys),
		 "%s/input1", psmouse->ps2dev.serio->phys);

	dev2->phys = priv->phys;
	dev2->name = "PS/2 Touchpad";
	dev2->id.bustype = BUS_I8042;
	dev2->id.vendor  = 0x0002;
	dev2->id.product = PSMOUSE_LIFEBOOK;
	dev2->id.version = 0x0000;
	dev2->dev.parent = &psmouse->ps2dev.serio->dev;

290 291
	dev2->evbit[0] = BIT_MASK(EV_KEY) | BIT_MASK(EV_REL);
	dev2->relbit[BIT_WORD(REL_X)] = BIT_MASK(REL_X) | BIT_MASK(REL_Y);
292 293
	dev2->keybit[BIT_WORD(BTN_LEFT)] =
				BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_RIGHT);
294 295 296 297 298 299 300 301 302 303 304 305 306 307

	error = input_register_device(priv->dev2);
	if (error)
		goto err_out;

	psmouse->private = priv;
	return 0;

 err_out:
	input_free_device(dev2);
	kfree(priv);
	return error;
}

308 309
int lifebook_init(struct psmouse *psmouse)
{
310
	struct input_dev *dev1 = psmouse->dev;
311
	int max_coord = lifebook_use_6byte_proto ? 4096 : 1024;
312

313 314 315
	if (lifebook_absolute_mode(psmouse))
		return -1;

316
	dev1->evbit[0] = BIT_MASK(EV_ABS) | BIT_MASK(EV_KEY);
317
	dev1->relbit[0] = 0;
318
	dev1->keybit[BIT_WORD(BTN_MOUSE)] = 0;
319
	dev1->keybit[BIT_WORD(BTN_TOUCH)] = BIT_MASK(BTN_TOUCH);
320 321 322 323 324 325 326 327 328
	input_set_abs_params(dev1, ABS_X, 0, max_coord, 0, 0);
	input_set_abs_params(dev1, ABS_Y, 0, max_coord, 0, 0);

	if (!desired_serio_phys) {
		if (lifebook_create_relative_device(psmouse)) {
			lifebook_relative_mode(psmouse);
			return -1;
		}
	}
329 330

	psmouse->protocol_handler = lifebook_process_byte;
331
	psmouse->set_resolution = lifebook_set_resolution;
332 333
	psmouse->disconnect = lifebook_disconnect;
	psmouse->reconnect  = lifebook_absolute_mode;
334

335 336
	psmouse->model = lifebook_use_6byte_proto ? 6 : 3;

337 338 339 340
	/*
	 * Use packet size = 3 even when using 6-byte protocol because
	 * that's what POLL will return on Lifebooks (according to spec).
	 */
341 342 343 344 345
	psmouse->pktsize = 3;

	return 0;
}