lkml.org 
[lkml]   [2018]   [Jan]   [19]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] Support tablet mode switch for Dell laptops
On Fri, Jan 19, 2018 at 04:09:09PM +0000, Mario.Limonciello@dell.com wrote:
> > -----Original Message-----
> > From: platform-driver-x86-owner@vger.kernel.org [mailto:platform-driver-x86-
> > owner@vger.kernel.org] On Behalf Of Pali Rohár
> > Sent: Friday, January 19, 2018 10:01 AM
> > To: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> > Cc: linux-kernel@vger.kernel.org; mjg59@srcf.ucam.org; dvhart@infradead.org;
> > andy@infradead.org; bhush94@gmail.com; platform-driver-x86@vger.kernel.org;
> > Marco Martin <notmart@gmail.com>
> > Subject: Re: [PATCH] Support tablet mode switch for Dell laptops
> >
> > On Thursday 18 January 2018 16:44:08 Pali Rohár wrote:
> > > On Thursday 18 January 2018 14:59:50 Marco Martin wrote:
> > > > - if (!sparse_keymap_report_event(priv->input_dev, event, 1, true))
> > > > + if (event == 0xCC) {
> > > > + input_report_switch(priv->input_dev, SW_TABLET_MODE, 1);
> > > > + input_sync(priv->input_dev);
> > > > + } else if (event == 0xCD) {
> > > > + input_report_switch(priv->input_dev, SW_TABLET_MODE, 0);
> > > > + input_sync(priv->input_dev);
> > > > + } else if (!sparse_keymap_report_event(priv->input_dev, event, 1, true))
> > >
> > > Is not it possible to put 0xCC and 0xCD into sparse keymap table?
> > > Because IIRC sparse keymap was created just to avoid that big
> > > if-elseif-elseif-else blocks.
> >
> > Dmitry, can you comment above part? I think that there should be better
> > way how to handle above switches and sparse keymap via one input device.
> >
> > > > dev_info(&device->dev, "unknown event index 0x%x\n",
> > > > event);
> > > > }
> > >
> >
> > --
> > Pali Rohár
> > pali.rohar@gmail.com
>
> We discussed a little more on the bug he filed with attached DSDT. I think that in
> sparse keymap he can use KE_VSW for the entries and sparse keymap can handle.

No it should be KE_SW I believe, as the "keycode" encodes the state.
See example in intel-hid.c.

So you probably want:

...
{ KE_SW, 0xCC, { .sw = { SW_TABLET_MODE, 1 } } }, /* Press */
{ KE_SW, 0xCD, { .sw = { SW_TABLET_MODE, 0 } } }, /* Release */

Thanks.

--
Dmitry

\
 
 \ /
  Last update: 2018-01-19 18:29    [W:0.051 / U:0.568 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site