From: "Eisenberger Tamás" <ufooka@gmail.com>
To: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org
Subject: [PATCH] Input: Add support for Fujitsu S762 laptops scroll wheel
Date: Mon, 06 May 2013 19:35:50 +0200 [thread overview]
Message-ID: <1367861750.11289.3.camel@u-foka-laptop.ethome2> (raw)
Detects and makes the Touch Scroll Wheel found on some Fujitsu laptops
working.
The detection is based on the (hopefully) unique E7 report of the wheel
device.
Up and down scrolling is detected by the only byte that has different
values in the devices packets, but it should be fine since it only able
to report that two events.
Signed-off-by: Tama's Eisenberger <tamas@eisenberger.hu>
Index: linux/drivers/input/mouse/alps.c
===================================================================
--- linux.orig/drivers/input/mouse/alps.c
+++ linux/drivers/input/mouse/alps.c
@@ -410,6 +410,17 @@ static void alps_process_trackstick_pack
if (packet[1] == 0x7f && packet[2] == 0x7f && packet[4] == 0x7f)
return;
+ if (priv->quirks & ALPS_QUIRK_SCROLL_WHEEL) {
+ if (packet[3] == 0x4c)
+ input_report_rel(dev, REL_WHEEL, 1);
+
+ if (packet[3] == 0x58)
+ input_report_rel(dev, REL_WHEEL, -1);
+
+ input_sync(dev);
+ return;
+ }
+
x = (s8)(((packet[0] & 0x20) << 2) | (packet[1] & 0x7f));
y = (s8)(((packet[0] & 0x10) << 3) | (packet[2] & 0x7f));
z = (packet[4] & 0x7c) >> 2;
@@ -1255,6 +1266,7 @@ error:
static int alps_setup_trackstick_v3(struct psmouse *psmouse, int
reg_base)
{
struct ps2dev *ps2dev = &psmouse->ps2dev;
+ struct alps_data *priv = psmouse->private;
int ret = 0;
unsigned char param[4];
@@ -1277,6 +1289,12 @@ static int alps_setup_trackstick_v3(stru
psmouse_dbg(psmouse, "trackstick E7 report: %3ph\n", param);
/*
+ * Detect fujitsu scroll wheel device
+ */
+ if (param[0] == 0x34 && param[1] == 0x01 && param[2] == 0x14)
+ priv->quirks |= ALPS_QUIRK_SCROLL_WHEEL;
+
+ /*
* Not sure what this does, but it is absolutely
* essential. Without it, the touchpad does not
* work at all and the trackstick just emits normal
@@ -1798,12 +1816,16 @@ int alps_init(struct psmouse *psmouse)
dev2->id.product = PSMOUSE_ALPS;
dev2->id.version = 0x0000;
dev2->dev.parent = &psmouse->ps2dev.serio->dev;
-
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);
dev2->keybit[BIT_WORD(BTN_LEFT)] =
BIT_MASK(BTN_LEFT) | BIT_MASK(BTN_MIDDLE) | BIT_MASK(BTN_RIGHT);
+ if (priv->quirks & ALPS_QUIRK_SCROLL_WHEEL) {
+ dev2->name = "DualPoint Scroll Wheel";
+ dev2->relbit[BIT_WORD(REL_X)] |= BIT_MASK(REL_WHEEL);
+ }
+
if (input_register_device(priv->dev2))
goto init_fail;
Index: linux/drivers/input/mouse/alps.h
===================================================================
--- linux.orig/drivers/input/mouse/alps.h
+++ linux/drivers/input/mouse/alps.h
@@ -158,6 +158,7 @@ struct alps_data {
};
#define ALPS_QUIRK_TRACKSTICK_BUTTONS 1 /* trakcstick buttons in
trackstick packet */
+#define ALPS_QUIRK_SCROLL_WHEEL 2 /* secondary device is scroll wheel
*/
#ifdef CONFIG_MOUSE_PS2_ALPS
int alps_detect(struct psmouse *psmouse, bool set_properties);
next reply other threads:[~2013-05-06 17:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-06 17:35 Eisenberger Tamás [this message]
2013-05-21 16:28 ` [PATCH] Input: Add support for Fujitsu S762 laptops scroll wheel Eisenberger Tamás
2013-05-21 18:58 ` Dmitry Torokhov
2013-05-27 18:13 ` Eisenberger Tamás
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1367861750.11289.3.camel@u-foka-laptop.ethome2 \
--to=ufooka@gmail.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).