linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book
@ 2016-05-09 14:57 Andy Shevchenko
  2016-05-10 14:21 ` Benjamin Tissoires
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2016-05-09 14:57 UTC (permalink / raw)
  To: linux-input, Benjamin Tissoires, Jiri Kosina, Mika Westerberg
  Cc: Andy Shevchenko

Microsoft Surface Book has HID multitouch connected device. Enable it here.

The change has been tested on bare metal by reading raw data from
/dev/input/event4.

The patch uses HID device ID submitted earlier here:
http://marc.info/?l=linux-input&m=146280544721389&w=2

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 drivers/hid/hid-multitouch.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
index c741f5e..c3df02d 100644
--- a/drivers/hid/hid-multitouch.c
+++ b/drivers/hid/hid-multitouch.c
@@ -1377,6 +1377,11 @@ static const struct hid_device_id mt_devices[] = {
 		MT_USB_DEVICE(USB_VENDOR_ID_ILITEK,
 			USB_DEVICE_ID_ILITEK_MULTITOUCH) },
 
+	/* Microsoft Surface Book */
+	{ .driver_data = MT_CLS_EXPORT_ALL_INPUTS,
+		MT_USB_DEVICE(USB_VENDOR_ID_MICROSOFT,
+			USB_DEVICE_ID_MS_SURFACE_BOOK) },
+
 	/* MosArt panels */
 	{ .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
 		MT_USB_DEVICE(USB_VENDOR_ID_ASUS,
-- 
2.8.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book
  2016-05-09 14:57 [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book Andy Shevchenko
@ 2016-05-10 14:21 ` Benjamin Tissoires
  2016-05-10 15:04   ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Tissoires @ 2016-05-10 14:21 UTC (permalink / raw)
  To: Andy Shevchenko; +Cc: linux-input, Jiri Kosina, Mika Westerberg

Hi Andy,

On May 09 2016 or thereabouts, Andy Shevchenko wrote:
> Microsoft Surface Book has HID multitouch connected device. Enable it here.
> 
> The change has been tested on bare metal by reading raw data from
> /dev/input/event4.
> 
> The patch uses HID device ID submitted earlier here:
> http://marc.info/?l=linux-input&m=146280544721389&w=2
> 
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  drivers/hid/hid-multitouch.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-multitouch.c
> index c741f5e..c3df02d 100644
> --- a/drivers/hid/hid-multitouch.c
> +++ b/drivers/hid/hid-multitouch.c
> @@ -1377,6 +1377,11 @@ static const struct hid_device_id mt_devices[] = {
>  		MT_USB_DEVICE(USB_VENDOR_ID_ILITEK,
>  			USB_DEVICE_ID_ILITEK_MULTITOUCH) },
>  
> +	/* Microsoft Surface Book */
> +	{ .driver_data = MT_CLS_EXPORT_ALL_INPUTS,
> +		MT_USB_DEVICE(USB_VENDOR_ID_MICROSOFT,
> +			USB_DEVICE_ID_MS_SURFACE_BOOK) },
> +

I am a little bit lost here. In your previous patch, you unset the group
MULTITOUCH to the USB_DEVICE_ID_MS_SURFACE_BOOK. But here, you bind a
device to it which will never been present according to
http://marc.info/?l=linux-input&m=146280544721389&w=2

Also, please make sure all features are working on the keyboard (special
functions/LEDs).
The good news is I have been sent a Surface 3 with the typecover. So I
intend to work on either fixing hid-multitouch or enabling multitouch
for hid-microsoft depending on which makes more sense.

Cheers,
Benjamin

>  	/* MosArt panels */
>  	{ .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
>  		MT_USB_DEVICE(USB_VENDOR_ID_ASUS,
> -- 
> 2.8.1
> 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book
  2016-05-10 14:21 ` Benjamin Tissoires
@ 2016-05-10 15:04   ` Andy Shevchenko
  2016-05-10 16:06     ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2016-05-10 15:04 UTC (permalink / raw)
  To: Benjamin Tissoires; +Cc: linux-input, Jiri Kosina, Mika Westerberg

On Tue, 2016-05-10 at 16:21 +0200, Benjamin Tissoires wrote:
> Hi Andy,
> 
> On May 09 2016 or thereabouts, Andy Shevchenko wrote:
> > 
> > Microsoft Surface Book has HID multitouch connected device. Enable
> > it here.
> > 
> > The change has been tested on bare metal by reading raw data from
> > /dev/input/event4.
> > 
> > The patch uses HID device ID submitted earlier here:
> > http://marc.info/?l=linux-input&m=146280544721389&w=2
> > 
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > ---
> >  drivers/hid/hid-multitouch.c | 5 +++++
> >  1 file changed, 5 insertions(+)
> > 
> > diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-
> > multitouch.c
> > index c741f5e..c3df02d 100644
> > --- a/drivers/hid/hid-multitouch.c
> > +++ b/drivers/hid/hid-multitouch.c
> > @@ -1377,6 +1377,11 @@ static const struct hid_device_id
> > mt_devices[] = {
> >  		MT_USB_DEVICE(USB_VENDOR_ID_ILITEK,
> >  			USB_DEVICE_ID_ILITEK_MULTITOUCH) },
> >  
> > +	/* Microsoft Surface Book */
> > +	{ .driver_data = MT_CLS_EXPORT_ALL_INPUTS,
> > +		MT_USB_DEVICE(USB_VENDOR_ID_MICROSOFT,
> > +			USB_DEVICE_ID_MS_SURFACE_BOOK) },
> > +
> I am a little bit lost here. In your previous patch, you unset the
> group
> MULTITOUCH to the USB_DEVICE_ID_MS_SURFACE_BOOK. But here, you bind a
> device to it which will never been present according to
> http://marc.info/?l=linux-input&m=146280544721389&w=2

Yes, that line is redundant. So, the first hunk of that patch should be
removed.

> 
> Also, please make sure all features are working on the keyboard
> (special
> functions/LEDs).

Caps Lock LED is not functional. I have no idea yet what drives it.

> The good news is I have been sent a Surface 3 with the typecover. So I
> intend to work on either fixing hid-multitouch or enabling multitouch
> for hid-microsoft depending on which makes more sense.
> 
> Cheers,
> Benjamin
> 
> > 
> >  	/* MosArt panels */
> >  	{ .driver_data = MT_CLS_CONFIDENCE_MINUS_ONE,
> >  		MT_USB_DEVICE(USB_VENDOR_ID_ASUS,

-- 
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book
  2016-05-10 15:04   ` Andy Shevchenko
@ 2016-05-10 16:06     ` Andy Shevchenko
  0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2016-05-10 16:06 UTC (permalink / raw)
  To: Benjamin Tissoires; +Cc: linux-input, Jiri Kosina, Mika Westerberg

On Tue, 2016-05-10 at 18:04 +0300, Andy Shevchenko wrote:
> On Tue, 2016-05-10 at 16:21 +0200, Benjamin Tissoires wrote:
> > 
> > Hi Andy,
> > 
> > On May 09 2016 or thereabouts, Andy Shevchenko wrote:
> > > 
> > > 
> > > Microsoft Surface Book has HID multitouch connected device. Enable
> > > it here.
> > > 
> > > The change has been tested on bare metal by reading raw data from
> > > /dev/input/event4.
> > > 
> > > The patch uses HID device ID submitted earlier here:
> > > http://marc.info/?l=linux-input&m=146280544721389&w=2
> > > 
> > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > ---
> > >  drivers/hid/hid-multitouch.c | 5 +++++
> > >  1 file changed, 5 insertions(+)
> > > 
> > > diff --git a/drivers/hid/hid-multitouch.c b/drivers/hid/hid-
> > > multitouch.c
> > > index c741f5e..c3df02d 100644
> > > --- a/drivers/hid/hid-multitouch.c
> > > +++ b/drivers/hid/hid-multitouch.c
> > > @@ -1377,6 +1377,11 @@ static const struct hid_device_id
> > > mt_devices[] = {
> > >  		MT_USB_DEVICE(USB_VENDOR_ID_ILITEK,
> > >  			USB_DEVICE_ID_ILITEK_MULTITOUCH) },
> > >  
> > > +	/* Microsoft Surface Book */
> > > +	{ .driver_data = MT_CLS_EXPORT_ALL_INPUTS,
> > > +		MT_USB_DEVICE(USB_VENDOR_ID_MICROSOFT,
> > > +			USB_DEVICE_ID_MS_SURFACE_BOOK) },
> > > +
> > I am a little bit lost here. In your previous patch, you unset the
> > group
> > MULTITOUCH to the USB_DEVICE_ID_MS_SURFACE_BOOK. But here, you bind
> > a
> > device to it which will never been present according to
> > http://marc.info/?l=linux-input&m=146280544721389&w=2
> Yes, that line is redundant. So, the first hunk of that patch should
> be
> removed.

Okay, it seems I have to resend these two as one without mentioned hunk.

-- 
Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Intel Finland Oy

--
To unsubscribe from this list: send the line "unsubscribe linux-input" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-05-10 16:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-09 14:57 [PATCH v1 1/1] HID: multitouch: enable touchpad on Surface Book Andy Shevchenko
2016-05-10 14:21 ` Benjamin Tissoires
2016-05-10 15:04   ` Andy Shevchenko
2016-05-10 16:06     ` Andy Shevchenko

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).