lifebook.c 6.0 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 28 29 30
static const char *desired_serio_phys;

static int lifebook_set_serio_phys(struct dmi_system_id *d)
{
	desired_serio_phys = d->driver_data;
	return 0;
}

31 32 33 34 35 36 37 38
static unsigned char lifebook_use_6byte_proto;

static int lifebook_set_6byte_proto(struct dmi_system_id *d)
{
	lifebook_use_6byte_proto = 1;
	return 0;
}

39
static struct dmi_system_id lifebook_dmi_table[] = {
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
	{
		.ident = "FLORA-ie 55mi",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "FLORA-ie 55mi"),
		},
	},
	{
		.ident = "LifeBook B",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B Series"),
		},
	},
	{
		.ident = "Lifebook B",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LIFEBOOK B Series"),
		},
	},
	{
		.ident = "Lifebook B213x/B2150",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B2131/B2133/B2150"),
		},
	},
	{
		.ident = "Zephyr",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "ZEPHYR"),
		},
	},
	{
		.ident = "CF-18",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
		},
75 76
		.callback = lifebook_set_serio_phys,
		.driver_data = "isa0060/serio3",
77
	},
78 79 80 81 82 83 84 85
	{
		.ident = "Panasonic CF-28",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-28"),
		},
		.callback = lifebook_set_6byte_proto,
	},
86 87 88 89 90 91 92 93
	{
		.ident = "Panasonic CF-29",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "Matsushita"),
			DMI_MATCH(DMI_PRODUCT_NAME, "CF-29"),
		},
		.callback = lifebook_set_6byte_proto,
	},
94 95 96 97 98 99 100
	{
		.ident = "Lifebook B142",
		.matches = {
			DMI_MATCH(DMI_PRODUCT_NAME, "LifeBook B142"),
		},
	},
	{ }
101 102
};

103
static psmouse_ret_t lifebook_process_byte(struct psmouse *psmouse)
104
{
105
	struct input_dev *dev = psmouse->dev;
106 107
	unsigned char *packet = psmouse->packet;
	int relative_packet = packet[0] & 0x08;
108

109 110 111
	if (relative_packet || !lifebook_use_6byte_proto) {
		if (psmouse->pktcnt != 3)
			return PSMOUSE_GOOD_DATA;
112
	} else {
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
		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) {
138 139 140 141
		input_report_rel(dev, REL_X,
				((packet[0] & 0x10) ? packet[1] - 256 : packet[1]));
		input_report_rel(dev, REL_Y,
				 -(int)((packet[0] & 0x20) ? packet[2] - 256 : packet[2]));
142 143 144 145 146 147 148 149 150 151
	} else if (lifebook_use_6byte_proto) {
		input_report_abs(dev, ABS_X,
				 ((packet[1] & 0x3f) << 6) | (packet[2] & 0x3f));
		input_report_abs(dev, ABS_Y,
				 4096 - (((packet[4] & 0x3f) << 6) | (packet[5] & 0x3f)));
	} else {
		input_report_abs(dev, ABS_X,
				 (packet[1] | ((packet[0] & 0x30) << 4)));
		input_report_abs(dev, ABS_Y,
				 1024 - (packet[2] | ((packet[0] & 0xC0) << 2)));
152 153 154 155 156 157 158 159 160 161 162
	}

	input_report_key(dev, BTN_LEFT, packet[0] & 0x01);
	input_report_key(dev, BTN_RIGHT, packet[0] & 0x02);
	input_report_key(dev, BTN_TOUCH, packet[0] & 0x04);

	input_sync(dev);

	return PSMOUSE_FULL_PACKET;
}

163
static int lifebook_absolute_mode(struct psmouse *psmouse)
164 165 166 167
{
	struct ps2dev *ps2dev = &psmouse->ps2dev;
	unsigned char param;

168
	if (psmouse_reset(psmouse))
169 170
		return -1;

171
	/*
172 173 174
	   Enable absolute output -- ps2_command fails always but if
	   you leave this call out the touchsreen will never send
	   absolute coordinates
175
	*/
176
	param = lifebook_use_6byte_proto ? 0x08 : 0x07;
177 178 179 180 181
	ps2_command(ps2dev, &param, PSMOUSE_CMD_SETRES);

	return 0;
}

182 183
static void lifebook_set_resolution(struct psmouse *psmouse, unsigned int resolution)
{
H
Helge Deller 已提交
184 185
	static const unsigned char params[] = { 0, 1, 2, 2, 3 };
	unsigned char p;
186 187 188 189

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

H
Helge Deller 已提交
190 191 192
	p = params[resolution / 100];
	ps2_command(&psmouse->ps2dev, &p, PSMOUSE_CMD_SETRES);
	psmouse->resolution = 50 << p;
193 194
}

195 196 197 198 199
static void lifebook_disconnect(struct psmouse *psmouse)
{
	psmouse_reset(psmouse);
}

200
int lifebook_detect(struct psmouse *psmouse, int set_properties)
201
{
202
        if (!dmi_check_system(lifebook_dmi_table))
203 204
                return -1;

205 206 207 208
	if (desired_serio_phys &&
	    strcmp(psmouse->ps2dev.serio->phys, desired_serio_phys))
		return -1;

209
	if (set_properties) {
210 211
		psmouse->vendor = "Fujitsu";
		psmouse->name = "Lifebook TouchScreen";
212 213
	}

214
        return 0;
215
}
216 217 218

int lifebook_init(struct psmouse *psmouse)
{
219
	struct input_dev *input_dev = psmouse->dev;
220
	int max_coord = lifebook_use_6byte_proto ? 1024 : 4096;
221

222 223 224
	if (lifebook_absolute_mode(psmouse))
		return -1;

225 226 227 228
	input_dev->evbit[0] = BIT(EV_ABS) | BIT(EV_KEY) | BIT(EV_REL);
	input_dev->keybit[LONG(BTN_LEFT)] = BIT(BTN_LEFT) | BIT(BTN_MIDDLE) | BIT(BTN_RIGHT);
	input_dev->keybit[LONG(BTN_TOUCH)] = BIT(BTN_TOUCH);
	input_dev->relbit[0] = BIT(REL_X) | BIT(REL_Y);
229 230
	input_set_abs_params(input_dev, ABS_X, 0, max_coord, 0, 0);
	input_set_abs_params(input_dev, ABS_Y, 0, max_coord, 0, 0);
231 232

	psmouse->protocol_handler = lifebook_process_byte;
233
	psmouse->set_resolution = lifebook_set_resolution;
234 235
	psmouse->disconnect = lifebook_disconnect;
	psmouse->reconnect  = lifebook_absolute_mode;
236 237 238 239 240

	/*
	 * Use packet size = 3 even when using 6-byte protocol because
	 * that's what POLL will return on Lifebooks (according to spec).
	 */
241 242 243 244 245
	psmouse->pktsize = 3;

	return 0;
}