linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H
@ 2023-03-03 15:26 Jonathan Denose
  2023-03-06 11:00 ` Hans de Goede
  2023-03-17 10:37 ` Dmitry Torokhov
  0 siblings, 2 replies; 5+ messages in thread
From: Jonathan Denose @ 2023-03-03 15:26 UTC (permalink / raw)
  To: LKML
  Cc: Jonathan Denose, Dmitry Torokhov, Hans de Goede, Huacai Chen,
	Mattijs Korpershoek, Takashi Iwai, Werner Sembach, Wolfram Sang,
	linux-input

Fujitsu Lifebook A574/H requires the nomux option to properly
probe the touchpad, especially when waking from sleep.

Signed-off-by: Jonathan Denose <jdenose@google.com>
---

 drivers/input/serio/i8042-acpipnpio.h | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h
index efc61736099b..fe7ffe30997c 100644
--- a/drivers/input/serio/i8042-acpipnpio.h
+++ b/drivers/input/serio/i8042-acpipnpio.h
@@ -610,6 +610,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
 		},
 		.driver_data = (void *)(SERIO_QUIRK_NOMUX)
 	},
+	{
+		/* Fujitsu Lifebook A574/H */
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "FMVA0501PZ"),
+		},
+		.driver_data = (void *)(SERIO_QUIRK_NOMUX)
+	},
 	{
 		/* Gigabyte M912 */
 		.matches = {
-- 
2.40.0.rc0.216.gc4246ad0f0-goog


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

* Re: [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H
  2023-03-03 15:26 [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H Jonathan Denose
@ 2023-03-06 11:00 ` Hans de Goede
  2023-03-15 21:39   ` Jonathan Denose
  2023-03-17 10:37 ` Dmitry Torokhov
  1 sibling, 1 reply; 5+ messages in thread
From: Hans de Goede @ 2023-03-06 11:00 UTC (permalink / raw)
  To: Jonathan Denose, LKML
  Cc: Jonathan Denose, Dmitry Torokhov, Huacai Chen,
	Mattijs Korpershoek, Takashi Iwai, Werner Sembach, Wolfram Sang,
	linux-input

Hi,

On 3/3/23 16:26, Jonathan Denose wrote:
> Fujitsu Lifebook A574/H requires the nomux option to properly
> probe the touchpad, especially when waking from sleep.
> 
> Signed-off-by: Jonathan Denose <jdenose@google.com>

Thanks, patch looks good to me:

Reviewed-by: Hans de Goede <hdegoede@redhat.com>

Regards,

Hans


> ---
> 
>  drivers/input/serio/i8042-acpipnpio.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h
> index efc61736099b..fe7ffe30997c 100644
> --- a/drivers/input/serio/i8042-acpipnpio.h
> +++ b/drivers/input/serio/i8042-acpipnpio.h
> @@ -610,6 +610,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
>  		},
>  		.driver_data = (void *)(SERIO_QUIRK_NOMUX)
>  	},
> +	{
> +		/* Fujitsu Lifebook A574/H */
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "FMVA0501PZ"),
> +		},
> +		.driver_data = (void *)(SERIO_QUIRK_NOMUX)
> +	},
>  	{
>  		/* Gigabyte M912 */
>  		.matches = {


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

* Re: [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H
  2023-03-06 11:00 ` Hans de Goede
@ 2023-03-15 21:39   ` Jonathan Denose
  2023-03-16  8:49     ` Hans de Goede
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Denose @ 2023-03-15 21:39 UTC (permalink / raw)
  To: Hans de Goede
  Cc: LKML, Jonathan Denose, Dmitry Torokhov, Huacai Chen,
	Mattijs Korpershoek, Takashi Iwai, Werner Sembach, Wolfram Sang,
	linux-input

Hello Hans,

Thank you very much for your review.

For my knowledge, what is the timeline for patches in the input
mailing list getting applied to a maintainer branch after review?

Best,
Jonathan

On Mon, Mar 6, 2023 at 5:00 AM Hans de Goede <hdegoede@redhat.com> wrote:
>
> Hi,
>
> On 3/3/23 16:26, Jonathan Denose wrote:
> > Fujitsu Lifebook A574/H requires the nomux option to properly
> > probe the touchpad, especially when waking from sleep.
> >
> > Signed-off-by: Jonathan Denose <jdenose@google.com>
>
> Thanks, patch looks good to me:
>
> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
>
> Regards,
>
> Hans
>
>
> > ---
> >
> >  drivers/input/serio/i8042-acpipnpio.h | 8 ++++++++
> >  1 file changed, 8 insertions(+)
> >
> > diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h
> > index efc61736099b..fe7ffe30997c 100644
> > --- a/drivers/input/serio/i8042-acpipnpio.h
> > +++ b/drivers/input/serio/i8042-acpipnpio.h
> > @@ -610,6 +610,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
> >               },
> >               .driver_data = (void *)(SERIO_QUIRK_NOMUX)
> >       },
> > +     {
> > +             /* Fujitsu Lifebook A574/H */
> > +             .matches = {
> > +                     DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
> > +                     DMI_MATCH(DMI_PRODUCT_NAME, "FMVA0501PZ"),
> > +             },
> > +             .driver_data = (void *)(SERIO_QUIRK_NOMUX)
> > +     },
> >       {
> >               /* Gigabyte M912 */
> >               .matches = {
>

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

* Re: [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H
  2023-03-15 21:39   ` Jonathan Denose
@ 2023-03-16  8:49     ` Hans de Goede
  0 siblings, 0 replies; 5+ messages in thread
From: Hans de Goede @ 2023-03-16  8:49 UTC (permalink / raw)
  To: Jonathan Denose
  Cc: LKML, Jonathan Denose, Dmitry Torokhov, Huacai Chen,
	Mattijs Korpershoek, Takashi Iwai, Werner Sembach, Wolfram Sang,
	linux-input

Hi,

On 3/15/23 22:39, Jonathan Denose wrote:
> Hello Hans,
> 
> Thank you very much for your review.
> 
> For my knowledge, what is the timeline for patches in the input
> mailing list getting applied to a maintainer branch after review?

It depends on when Dmitry has time to go through the patch queue. Not a really helpful answer I know, sorry.

Regards,

Hans


> On Mon, Mar 6, 2023 at 5:00 AM Hans de Goede <hdegoede@redhat.com> wrote:
>>
>> Hi,
>>
>> On 3/3/23 16:26, Jonathan Denose wrote:
>>> Fujitsu Lifebook A574/H requires the nomux option to properly
>>> probe the touchpad, especially when waking from sleep.
>>>
>>> Signed-off-by: Jonathan Denose <jdenose@google.com>
>>
>> Thanks, patch looks good to me:
>>
>> Reviewed-by: Hans de Goede <hdegoede@redhat.com>
>>
>> Regards,
>>
>> Hans
>>
>>
>>> ---
>>>
>>>  drivers/input/serio/i8042-acpipnpio.h | 8 ++++++++
>>>  1 file changed, 8 insertions(+)
>>>
>>> diff --git a/drivers/input/serio/i8042-acpipnpio.h b/drivers/input/serio/i8042-acpipnpio.h
>>> index efc61736099b..fe7ffe30997c 100644
>>> --- a/drivers/input/serio/i8042-acpipnpio.h
>>> +++ b/drivers/input/serio/i8042-acpipnpio.h
>>> @@ -610,6 +610,14 @@ static const struct dmi_system_id i8042_dmi_quirk_table[] __initconst = {
>>>               },
>>>               .driver_data = (void *)(SERIO_QUIRK_NOMUX)
>>>       },
>>> +     {
>>> +             /* Fujitsu Lifebook A574/H */
>>> +             .matches = {
>>> +                     DMI_MATCH(DMI_SYS_VENDOR, "FUJITSU"),
>>> +                     DMI_MATCH(DMI_PRODUCT_NAME, "FMVA0501PZ"),
>>> +             },
>>> +             .driver_data = (void *)(SERIO_QUIRK_NOMUX)
>>> +     },
>>>       {
>>>               /* Gigabyte M912 */
>>>               .matches = {
>>
> 


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

* Re: [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H
  2023-03-03 15:26 [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H Jonathan Denose
  2023-03-06 11:00 ` Hans de Goede
@ 2023-03-17 10:37 ` Dmitry Torokhov
  1 sibling, 0 replies; 5+ messages in thread
From: Dmitry Torokhov @ 2023-03-17 10:37 UTC (permalink / raw)
  To: Jonathan Denose
  Cc: LKML, Jonathan Denose, Hans de Goede, Huacai Chen,
	Mattijs Korpershoek, Takashi Iwai, Werner Sembach, Wolfram Sang,
	linux-input

On Fri, Mar 03, 2023 at 09:26:23AM -0600, Jonathan Denose wrote:
> Fujitsu Lifebook A574/H requires the nomux option to properly
> probe the touchpad, especially when waking from sleep.
> 
> Signed-off-by: Jonathan Denose <jdenose@google.com>

Applied, thank you.

-- 
Dmitry

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

end of thread, other threads:[~2023-03-17 10:38 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-03 15:26 [PATCH] Input: i8042 - Add quirk for Fujitsu Lifebook A574/H Jonathan Denose
2023-03-06 11:00 ` Hans de Goede
2023-03-15 21:39   ` Jonathan Denose
2023-03-16  8:49     ` Hans de Goede
2023-03-17 10:37 ` Dmitry Torokhov

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