LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Jiri Kosina <jkosina@suse.cz>
To: Seth Forshee <seth.forshee@canonical.com>
Cc: linux-input@vger.kernel.org, linux-kernel@vger.kernel.org,
Benjamin Tissoires <benjamin.tissoires@redhat.com>
Subject: Re: [PATCH v2] HID: multitouch: Add support for button type usage
Date: Wed, 11 Mar 2015 12:19:13 -0400 (EDT) [thread overview]
Message-ID: <alpine.LNX.2.00.1503111216190.24876@pobox.suse.cz> (raw)
In-Reply-To: <1425180871-5232-1-git-send-email-seth.forshee@canonical.com>
On Sat, 28 Feb 2015, Seth Forshee wrote:
> According to [1], Windows Precision Touchpad devices must supply
> a button type usage in the device capabilities feature report. A
> value of 0 indicates that the device contains a depressible
> button (i.e. it's a click-pad) whereas a value of 1 indicates
> a non-depressible button. Add support for this usage and set
> INPUT_PROP_BUTTONPAD on the touchpad input device whenever a
> depressible button is present.
>
> v2: Add string for button type usage in debugfs.
>
> [1] https://msdn.microsoft.com/en-us/library/windows/hardware/dn467314(v=vs.85).aspx
>
> Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
I'd like to have Benjamin's Ack on this. Adding him to CC. Please also see
015fdaa9f8ed ("HID: multitouch: add support of clickpads").
> ---
> drivers/hid/hid-debug.c | 1 +
> drivers/hid/hid-multitouch.c | 19 +++++++++++++++++++
> include/linux/hid.h | 1 +
> 3 files changed, 21 insertions(+)
>
> diff --git a/drivers/hid/hid-debug.c b/drivers/hid/hid-debug.c
> index 8bf61d2..4b2a18a 100644
> --- a/drivers/hid/hid-debug.c
> +++ b/drivers/hid/hid-debug.c
> @@ -165,6 +165,7 @@ static const struct hid_usage_entry hid_usage_table[] = {
> {0, 0x53, "DeviceIndex"},
> {0, 0x54, "ContactCount"},
> {0, 0x55, "ContactMaximumNumber"},
> + {0, 0x59, "ButtonType"},
> {0, 0x5A, "SecondaryBarrelSwitch"},
> {0, 0x5B, "TransducerSerialNumber"},
> { 15, 0, "PhysicalInterfaceDevice" },
> diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
> index f65e78b..b19d721 100644
> --- a/drivers/hid/hid-multitouch.c
> +++ b/drivers/hid/hid-multitouch.c
> @@ -72,6 +72,10 @@ MODULE_LICENSE("GPL");
> #define MT_INPUTMODE_TOUCHSCREEN 0x02
> #define MT_INPUTMODE_TOUCHPAD 0x03
>
> +#define MT_BUTTONTYPE_DEPRESSIBLE 0
> +#define MT_BUTTONTYPE_NONDEPRESSIBLE 1
> +#define MT_BUTTONTYPE_MAX MT_BUTTONTYPE_NONDEPRESSIBLE
> +
> struct mt_slot {
> __s32 x, y, cx, cy, p, w, h;
> __s32 contactid; /* the device ContactID assigned to this slot */
> @@ -116,6 +120,7 @@ struct mt_device {
> __u8 touches_by_report; /* how many touches are present in one report:
> * 1 means we should use a serial protocol
> * > 1 means hybrid (multitouch) protocol */
> + __u8 buttontype; /* depressible or non-depressible touchpad */
> bool serial_maybe; /* need to check for serial protocol */
> bool curvalid; /* is the current contact valid? */
> unsigned mt_flags; /* flags to pass to input-mt */
> @@ -334,6 +339,16 @@ static void mt_feature_mapping(struct hid_device *hdev,
> td->maxcontacts = td->mtclass.maxcontacts;
>
> break;
> + case HID_DG_BUTTONTYPE:
> + if (usage->usage_index >= field->report_count) {
> + dev_err(&hdev->dev, "HID_DG_BUTTONTYPE out of range\n");
> + break;
> + }
> +
> + if (field->value[usage->usage_index] <= MT_BUTTONTYPE_MAX)
> + td->buttontype = field->value[usage->usage_index];
> +
> + break;
> }
> }
>
> @@ -728,6 +743,9 @@ static void mt_touch_input_configured(struct hid_device *hdev,
> if (cls->quirks & MT_QUIRK_NOT_SEEN_MEANS_UP)
> td->mt_flags |= INPUT_MT_DROP_UNUSED;
>
> + if (td->buttontype == MT_BUTTONTYPE_DEPRESSIBLE)
> + __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
> +
> input_mt_init_slots(input, td->maxcontacts, td->mt_flags);
>
> td->mt_flags = 0;
> @@ -1009,6 +1027,7 @@ static int mt_probe(struct hid_device *hdev, const struct hid_device_id *id)
> td->inputmode_value = MT_INPUTMODE_TOUCHSCREEN;
> td->cc_index = -1;
> td->mt_report_id = -1;
> + td->buttontype = MT_BUTTONTYPE_NONDEPRESSIBLE;
> hid_set_drvdata(hdev, td);
>
> td->fields = devm_kzalloc(&hdev->dev, sizeof(struct mt_fields),
> diff --git a/include/linux/hid.h b/include/linux/hid.h
> index 06c4607..498ddad 100644
> --- a/include/linux/hid.h
> +++ b/include/linux/hid.h
> @@ -269,6 +269,7 @@ struct hid_item {
> #define HID_DG_DEVICEINDEX 0x000d0053
> #define HID_DG_CONTACTCOUNT 0x000d0054
> #define HID_DG_CONTACTMAX 0x000d0055
> +#define HID_DG_BUTTONTYPE 0x000d0059
> #define HID_DG_BARRELSWITCH2 0x000d005a
> #define HID_DG_TOOLSERIALNUMBER 0x000d005b
>
> --
> 2.1.4
>
--
Jiri Kosina
SUSE Labs
next prev parent reply other threads:[~2015-03-11 16:19 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-27 21:00 [PATCH] " Seth Forshee
2015-03-01 3:34 ` [PATCH v2] " Seth Forshee
2015-03-11 16:19 ` Jiri Kosina [this message]
2015-03-11 17:25 ` Seth Forshee
2015-03-11 17:29 ` [PATCH v3] " Seth Forshee
2015-03-11 20:55 ` Benjamin Tissoires
2015-03-11 21:55 ` Seth Forshee
2015-03-11 22:26 ` [PATCH v4] " Seth Forshee
2015-03-12 1:13 ` Benjamin Tissoires
2015-03-12 4:06 ` Jiri Kosina
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=alpine.LNX.2.00.1503111216190.24876@pobox.suse.cz \
--to=jkosina@suse.cz \
--cc=benjamin.tissoires@redhat.com \
--cc=linux-input@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=seth.forshee@canonical.com \
--subject='Re: [PATCH v2] HID: multitouch: Add support for button type usage' \
/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
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).