linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA
@ 2021-12-04  1:56 Samuel Čavoj
  2021-12-06  9:03 ` Takashi Iwai
  2021-12-07  7:20 ` Dmitry Torokhov
  0 siblings, 2 replies; 3+ messages in thread
From: Samuel Čavoj @ 2021-12-04  1:56 UTC (permalink / raw)
  To: Dmitry Torokhov
  Cc: linux-input, linux-kernel, Samuel Čavoj, Takashi Iwai

The ASUS UM325UA suffers from the same issue as the ASUS UX425UA, which
is a very similar laptop. The i8042 device is not usable immediately
after boot and fails to initialize, requiring a deferred retry.

Enable the deferred probe quirk for the UM325UA.

BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1190256
Signed-off-by: Samuel Čavoj <samuel@cavoj.net>
Cc: Takashi Iwai <tiwai@suse.de>
Link: https://lore.kernel.org/r/20211117063757.11380-1-tiwai@suse.de
---
 drivers/input/serio/i8042-x86ia64io.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
index 1acc7c844929..148a7c5fd0e2 100644
--- a/drivers/input/serio/i8042-x86ia64io.h
+++ b/drivers/input/serio/i8042-x86ia64io.h
@@ -1003,6 +1003,13 @@ static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = {
 			DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"),
 		},
 	},
+	{
+		/* ASUS ZenBook UM325UA */
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+			DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"),
+		},
+	},
 	{ }
 };
 
-- 
2.34.1


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

* Re: [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA
  2021-12-04  1:56 [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA Samuel Čavoj
@ 2021-12-06  9:03 ` Takashi Iwai
  2021-12-07  7:20 ` Dmitry Torokhov
  1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2021-12-06  9:03 UTC (permalink / raw)
  To: Samuel Čavoj
  Cc: Dmitry Torokhov, linux-input, linux-kernel, Takashi Iwai

On Sat, 04 Dec 2021 02:56:16 +0100,
Samuel Čavoj wrote:
> 
> The ASUS UM325UA suffers from the same issue as the ASUS UX425UA, which
> is a very similar laptop. The i8042 device is not usable immediately
> after boot and fails to initialize, requiring a deferred retry.
> 
> Enable the deferred probe quirk for the UM325UA.
> 
> BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1190256
> Signed-off-by: Samuel Čavoj <samuel@cavoj.net>
> Cc: Takashi Iwai <tiwai@suse.de>

Reviewed-by: Takashi Iwai <tiwai@suse.de>


thanks,

Takashi

> Link: https://lore.kernel.org/r/20211117063757.11380-1-tiwai@suse.de
> ---
>  drivers/input/serio/i8042-x86ia64io.h | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
> index 1acc7c844929..148a7c5fd0e2 100644
> --- a/drivers/input/serio/i8042-x86ia64io.h
> +++ b/drivers/input/serio/i8042-x86ia64io.h
> @@ -1003,6 +1003,13 @@ static const struct dmi_system_id i8042_dmi_probe_defer_table[] __initconst = {
>  			DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX425UA"),
>  		},
>  	},
> +	{
> +		/* ASUS ZenBook UM325UA */
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "ZenBook UX325UA_UM325UA"),
> +		},
> +	},
>  	{ }
>  };
>  
> -- 
> 2.34.1
> 

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

* Re: [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA
  2021-12-04  1:56 [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA Samuel Čavoj
  2021-12-06  9:03 ` Takashi Iwai
@ 2021-12-07  7:20 ` Dmitry Torokhov
  1 sibling, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2021-12-07  7:20 UTC (permalink / raw)
  To: Samuel Čavoj; +Cc: linux-input, linux-kernel, Takashi Iwai

On Sat, Dec 04, 2021 at 02:56:16AM +0100, Samuel Čavoj wrote:
> The ASUS UM325UA suffers from the same issue as the ASUS UX425UA, which
> is a very similar laptop. The i8042 device is not usable immediately
> after boot and fails to initialize, requiring a deferred retry.
> 
> Enable the deferred probe quirk for the UM325UA.
> 
> BugLink: https://bugzilla.suse.com/show_bug.cgi?id=1190256
> Signed-off-by: Samuel Čavoj <samuel@cavoj.net>
> Cc: Takashi Iwai <tiwai@suse.de>
> Link: https://lore.kernel.org/r/20211117063757.11380-1-tiwai@suse.de

Applied, thank you.

-- 
Dmitry

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

end of thread, other threads:[~2021-12-07  7:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-12-04  1:56 [PATCH] Input: i8042 - enable deferred probe quirk for ASUS UM325UA Samuel Čavoj
2021-12-06  9:03 ` Takashi Iwai
2021-12-07  7:20 ` 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).