public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
@ 2025-12-05 18:50 Kurt Borja
  2025-12-05 18:50 ` [PATCH 1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Kurt Borja
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: Kurt Borja @ 2025-12-05 18:50 UTC (permalink / raw)
  To: Hans de Goede, Ilpo Järvinen
  Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, Kurt Borja,
	stable

Hi Ilpo,

I managed to get my hands on acpidumps for these models so this is
verified against those.

Thanks for all your latest reviews!

Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
Kurt Borja (3):
      platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops
      platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16
      platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora

 drivers/platform/x86/dell/alienware-wmi-wmax.c | 32 ++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
---
base-commit: 9b9c0adbc3f8a524d291baccc9d0c04097fb4869
change-id: 20251111-area-51-7e6c2501e4eb

-- 
 ~ Kurt


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

* [PATCH 1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops
  2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
@ 2025-12-05 18:50 ` Kurt Borja
  2025-12-05 18:50 ` [PATCH 2/3] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Kurt Borja
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Kurt Borja @ 2025-12-05 18:50 UTC (permalink / raw)
  To: Hans de Goede, Ilpo Järvinen
  Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, Kurt Borja,
	stable

Add AWCC support for new Alienware Area-51 laptops.

Cc: stable@vger.kernel.org
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
 drivers/platform/x86/dell/alienware-wmi-wmax.c | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index fadf7aac6779..b7b684fda22e 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -89,6 +89,22 @@ static struct awcc_quirks generic_quirks = {
 static struct awcc_quirks empty_quirks;
 
 static const struct dmi_system_id awcc_dmi_table[] __initconst = {
+	{
+		.ident = "Alienware 16 Area-51",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware 16 Area-51"),
+		},
+		.driver_data = &g_series_quirks,
+	},
+	{
+		.ident = "Alienware 18 Area-51",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware 18 Area-51"),
+		},
+		.driver_data = &g_series_quirks,
+	},
 	{
 		.ident = "Alienware 16 Aurora",
 		.matches = {

-- 
2.52.0


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

* [PATCH 2/3] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16
  2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
  2025-12-05 18:50 ` [PATCH 1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Kurt Borja
@ 2025-12-05 18:50 ` Kurt Borja
  2025-12-05 18:50 ` [PATCH 3/3] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Kurt Borja
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: Kurt Borja @ 2025-12-05 18:50 UTC (permalink / raw)
  To: Hans de Goede, Ilpo Järvinen
  Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, Kurt Borja,
	stable

Add AWCC support for Alienware x16 laptops.

Cc: <stable@vger.kernel.org>
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
 drivers/platform/x86/dell/alienware-wmi-wmax.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index b7b684fda22e..baea397e0530 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -177,6 +177,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
 		},
 		.driver_data = &generic_quirks,
 	},
+	{
+		.ident = "Alienware x16",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware x16"),
+		},
+		.driver_data = &g_series_quirks,
+	},
 	{
 		.ident = "Alienware x17",
 		.matches = {

-- 
2.52.0


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

* [PATCH 3/3] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora
  2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
  2025-12-05 18:50 ` [PATCH 1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Kurt Borja
  2025-12-05 18:50 ` [PATCH 2/3] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Kurt Borja
@ 2025-12-05 18:50 ` Kurt Borja
  2025-12-05 19:04 ` [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Ilpo Järvinen
  2025-12-15 17:23 ` Ilpo Järvinen
  4 siblings, 0 replies; 9+ messages in thread
From: Kurt Borja @ 2025-12-05 18:50 UTC (permalink / raw)
  To: Hans de Goede, Ilpo Järvinen
  Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, Kurt Borja,
	stable

Add AWCC support for Alienware 16X Aurora laptops.

Cc: <stable@vger.kernel.org>
Signed-off-by: Kurt Borja <kuurtb@gmail.com>
---
 drivers/platform/x86/dell/alienware-wmi-wmax.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/platform/x86/dell/alienware-wmi-wmax.c b/drivers/platform/x86/dell/alienware-wmi-wmax.c
index baea397e0530..01af6dde9057 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -97,6 +97,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
 		},
 		.driver_data = &g_series_quirks,
 	},
+	{
+		.ident = "Alienware 16X Aurora",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware 16X Aurora"),
+		},
+		.driver_data = &g_series_quirks,
+	},
 	{
 		.ident = "Alienware 18 Area-51",
 		.matches = {

-- 
2.52.0


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

* Re: [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
  2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
                   ` (2 preceding siblings ...)
  2025-12-05 18:50 ` [PATCH 3/3] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Kurt Borja
@ 2025-12-05 19:04 ` Ilpo Järvinen
  2025-12-05 19:08   ` Kurt Borja
  2025-12-15 17:23 ` Ilpo Järvinen
  4 siblings, 1 reply; 9+ messages in thread
From: Ilpo Järvinen @ 2025-12-05 19:04 UTC (permalink / raw)
  To: Kurt Borja
  Cc: Hans de Goede, platform-driver-x86, Dell.Client.Kernel, LKML,
	stable

[-- Attachment #1: Type: text/plain, Size: 1014 bytes --]

On Fri, 5 Dec 2025, Kurt Borja wrote:

> I managed to get my hands on acpidumps for these models so this is
> verified against those.
> 
> Thanks for all your latest reviews!
> 
> Signed-off-by: Kurt Borja <kuurtb@gmail.com>

You don't need to signoff the coverletter. :-) (Hopefully it won't 
confuse any tools but I guess they should handle duplicate tags sensibly 
so likely no problem in this case).

For the series,

Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

> ---
> Kurt Borja (3):
>       platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops
>       platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16
>       platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora
> 
>  drivers/platform/x86/dell/alienware-wmi-wmax.c | 32 ++++++++++++++++++++++++++
>  1 file changed, 32 insertions(+)
> ---
> base-commit: 9b9c0adbc3f8a524d291baccc9d0c04097fb4869
> change-id: 20251111-area-51-7e6c2501e4eb
> 
> 

-- 
 i.

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

* Re: [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
  2025-12-05 19:04 ` [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Ilpo Järvinen
@ 2025-12-05 19:08   ` Kurt Borja
  2025-12-05 20:57     ` Konstantin Ryabitsev
  0 siblings, 1 reply; 9+ messages in thread
From: Kurt Borja @ 2025-12-05 19:08 UTC (permalink / raw)
  To: Ilpo Järvinen, Kurt Borja
  Cc: Hans de Goede, platform-driver-x86, Dell.Client.Kernel, LKML,
	stable

On Fri Dec 5, 2025 at 2:04 PM -05, Ilpo Järvinen wrote:
> On Fri, 5 Dec 2025, Kurt Borja wrote:
>
>> I managed to get my hands on acpidumps for these models so this is
>> verified against those.
>> 
>> Thanks for all your latest reviews!
>> 
>> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
>
> You don't need to signoff the coverletter. :-) (Hopefully it won't 
> confuse any tools but I guess they should handle duplicate tags sensibly 
> so likely no problem in this case).

Actually, unless I messed up something, this is b4's default settings
:-). I'll take a look.

>
> For the series,
>
> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>

Thanks!


-- 
 ~ Kurt


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

* Re: [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
  2025-12-05 19:08   ` Kurt Borja
@ 2025-12-05 20:57     ` Konstantin Ryabitsev
  2025-12-06 15:55       ` Kurt Borja
  0 siblings, 1 reply; 9+ messages in thread
From: Konstantin Ryabitsev @ 2025-12-05 20:57 UTC (permalink / raw)
  To: Kurt Borja
  Cc: Ilpo Järvinen, Hans de Goede, platform-driver-x86,
	Dell.Client.Kernel, LKML, stable

On Fri, Dec 05, 2025 at 02:08:52PM -0500, Kurt Borja wrote:
> >> Thanks for all your latest reviews!
> >> 
> >> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
> >
> > You don't need to signoff the coverletter. :-) (Hopefully it won't 
> > confuse any tools but I guess they should handle duplicate tags sensibly 
> > so likely no problem in this case).
> 
> Actually, unless I messed up something, this is b4's default settings
> :-). I'll take a look.

This is intentional, because some subsystems use the cover letter as the
content of the merge commit.

-K

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

* Re: [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
  2025-12-05 20:57     ` Konstantin Ryabitsev
@ 2025-12-06 15:55       ` Kurt Borja
  0 siblings, 0 replies; 9+ messages in thread
From: Kurt Borja @ 2025-12-06 15:55 UTC (permalink / raw)
  To: Konstantin Ryabitsev, Kurt Borja
  Cc: Ilpo Järvinen, Hans de Goede, platform-driver-x86,
	Dell.Client.Kernel, LKML, stable

On Fri Dec 5, 2025 at 3:57 PM -05, Konstantin Ryabitsev wrote:
> On Fri, Dec 05, 2025 at 02:08:52PM -0500, Kurt Borja wrote:
>> >> Thanks for all your latest reviews!
>> >> 
>> >> Signed-off-by: Kurt Borja <kuurtb@gmail.com>
>> >
>> > You don't need to signoff the coverletter. :-) (Hopefully it won't 
>> > confuse any tools but I guess they should handle duplicate tags sensibly 
>> > so likely no problem in this case).
>> 
>> Actually, unless I messed up something, this is b4's default settings
>> :-). I'll take a look.
>
> This is intentional, because some subsystems use the cover letter as the
> content of the merge commit.
>
> -K

Makes sense. Thanks for clarifying!


-- 
 ~ Kurt


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

* Re: [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models
  2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
                   ` (3 preceding siblings ...)
  2025-12-05 19:04 ` [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Ilpo Järvinen
@ 2025-12-15 17:23 ` Ilpo Järvinen
  4 siblings, 0 replies; 9+ messages in thread
From: Ilpo Järvinen @ 2025-12-15 17:23 UTC (permalink / raw)
  To: Hans de Goede, Kurt Borja
  Cc: platform-driver-x86, Dell.Client.Kernel, linux-kernel, stable

On Fri, 05 Dec 2025 13:50:09 -0500, Kurt Borja wrote:

> I managed to get my hands on acpidumps for these models so this is
> verified against those.
> 
> Thanks for all your latest reviews!
> 
> 


Thank you for your contribution, it has been applied to my local
review-ilpo-fixes branch. Note it will show up in the public
platform-drivers-x86/review-ilpo-fixes branch only once I've pushed my
local branch there, which might take a while.

The list of commits applied:
[1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops
      commit: 433f7744cb302ac22800dc0cd50494319ce64ba0
[2/3] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16
      commit: a584644a490d276907e56817694859eaac2a4199
[3/3] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora
      commit: 7f3c2499da24551968640528fee9aed3bb4f0c3f

--
 i.


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

end of thread, other threads:[~2025-12-15 17:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-05 18:50 [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Kurt Borja
2025-12-05 18:50 ` [PATCH 1/3] platform/x86: alienware-wmi-wmax: Add support for new Area-51 laptops Kurt Borja
2025-12-05 18:50 ` [PATCH 2/3] platform/x86: alienware-wmi-wmax: Add AWCC support for Alienware x16 Kurt Borja
2025-12-05 18:50 ` [PATCH 3/3] platform/x86: alienware-wmi-wmax: Add support for Alienware 16X Aurora Kurt Borja
2025-12-05 19:04 ` [PATCH 0/3] platform/x86: alienware-wmi-wmax: Add support for some newly released models Ilpo Järvinen
2025-12-05 19:08   ` Kurt Borja
2025-12-05 20:57     ` Konstantin Ryabitsev
2025-12-06 15:55       ` Kurt Borja
2025-12-15 17:23 ` Ilpo Järvinen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox