* [PATCH] HID: multitouch: add support of clickpads
@ 2015-03-06 16:14 Benjamin Tissoires
2015-03-06 20:53 ` Benjamin Tissoires
2015-03-06 21:56 ` Jiri Kosina
0 siblings, 2 replies; 3+ messages in thread
From: Benjamin Tissoires @ 2015-03-06 16:14 UTC (permalink / raw)
To: Jiri Kosina, Jason Gerecke; +Cc: linux-input, linux-kernel
Touchpads that have only one button are called clickpads and should
be advertised as such by the kernel.
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
---
Hi,
this has been on my local tree for nearly a year now, but I never really
managed to take the time to make it working properly.
Jason raised the subject yesterday, so I finally had a look and fixed the
last bugs.
All the current touchscreens I have the logs are not showing INPUT_PROP_BUTTONPAD
as expected, so I think this should be fine to go upstream.
Cheers,
Benjamin
drivers/hid/hid-multitouch.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
index b61715f..a8bec33 100644
--- a/drivers/hid/hid-multitouch.c
+++ b/drivers/hid/hid-multitouch.c
@@ -115,6 +115,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 buttons_count; /* number of physical buttons per 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 */
@@ -378,6 +379,10 @@ static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
td->inputmode_value = MT_INPUTMODE_TOUCHPAD;
}
+ /* count the buttons on touchpads */
+ if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON)
+ td->buttons_count++;
+
if (usage->usage_index)
prev_usage = &field->usage[usage->usage_index - 1];
@@ -727,6 +732,10 @@ 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;
+ /* check for clickpads */
+ if ((td->mt_flags & INPUT_MT_POINTER) && (td->buttons_count == 1))
+ __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
+
input_mt_init_slots(input, td->maxcontacts, td->mt_flags);
td->mt_flags = 0;
--
2.1.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] HID: multitouch: add support of clickpads
2015-03-06 16:14 [PATCH] HID: multitouch: add support of clickpads Benjamin Tissoires
@ 2015-03-06 20:53 ` Benjamin Tissoires
2015-03-06 21:56 ` Jiri Kosina
1 sibling, 0 replies; 3+ messages in thread
From: Benjamin Tissoires @ 2015-03-06 20:53 UTC (permalink / raw)
To: linux-input
Cc: Jiri Kosina, Jason Gerecke, linux-kernel@vger.kernel.org,
Jason Ekstrand
On Fri, Mar 6, 2015 at 11:14 AM, Benjamin Tissoires
<benjamin.tissoires@redhat.com> wrote:
> Touchpads that have only one button are called clickpads and should
> be advertised as such by the kernel.
>
> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
> ---
>
> Hi,
>
> this has been on my local tree for nearly a year now, but I never really
> managed to take the time to make it working properly.
> Jason raised the subject yesterday, so I finally had a look and fixed the
> last bugs.
Sorry, wrong Jason :)
Meanwhile, Jason reported that it fixed his problem:
Tested-by: Jason Ekstrand <jason@jlekstrand.net>
cheers,
Benjamin
>
> All the current touchscreens I have the logs are not showing INPUT_PROP_BUTTONPAD
> as expected, so I think this should be fine to go upstream.
>
> Cheers,
> Benjamin
>
> drivers/hid/hid-multitouch.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
> index b61715f..a8bec33 100644
> --- a/drivers/hid/hid-multitouch.c
> +++ b/drivers/hid/hid-multitouch.c
> @@ -115,6 +115,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 buttons_count; /* number of physical buttons per 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 */
> @@ -378,6 +379,10 @@ static int mt_touch_input_mapping(struct hid_device *hdev, struct hid_input *hi,
> td->inputmode_value = MT_INPUTMODE_TOUCHPAD;
> }
>
> + /* count the buttons on touchpads */
> + if ((usage->hid & HID_USAGE_PAGE) == HID_UP_BUTTON)
> + td->buttons_count++;
> +
> if (usage->usage_index)
> prev_usage = &field->usage[usage->usage_index - 1];
>
> @@ -727,6 +732,10 @@ 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;
>
> + /* check for clickpads */
> + if ((td->mt_flags & INPUT_MT_POINTER) && (td->buttons_count == 1))
> + __set_bit(INPUT_PROP_BUTTONPAD, input->propbit);
> +
> input_mt_init_slots(input, td->maxcontacts, td->mt_flags);
>
> td->mt_flags = 0;
> --
> 2.1.0
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] HID: multitouch: add support of clickpads
2015-03-06 16:14 [PATCH] HID: multitouch: add support of clickpads Benjamin Tissoires
2015-03-06 20:53 ` Benjamin Tissoires
@ 2015-03-06 21:56 ` Jiri Kosina
1 sibling, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2015-03-06 21:56 UTC (permalink / raw)
To: Benjamin Tissoires
Cc: Jason Gerecke, linux-input, linux-kernel, Jason Ekstrand
On Fri, 6 Mar 2015, Benjamin Tissoires wrote:
> Touchpads that have only one button are called clickpads and should
> be advertised as such by the kernel.
>
> Signed-off-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>
Applied for for-4.1/multitouch.
--
Jiri Kosina
SUSE Labs
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-03-06 21:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-06 16:14 [PATCH] HID: multitouch: add support of clickpads Benjamin Tissoires
2015-03-06 20:53 ` Benjamin Tissoires
2015-03-06 21:56 ` Jiri Kosina
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).