[PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops

Kurt Borja posted 1 patch 5 months ago
drivers/platform/x86/dell/alienware-wmi-wmax.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
[PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
Posted by Kurt Borja 5 months ago
Add support to Alienware Area-51m and Alienware m15 R5.

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 20ec122a9fe0571a1ecd2ccf630615564ab30481..67e5dd0f140aa73ac73ea99fbe081a6b08e520ec 100644
--- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
+++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
@@ -89,6 +89,14 @@ static struct awcc_quirks generic_quirks = {
 static struct awcc_quirks empty_quirks;
 
 static const struct dmi_system_id awcc_dmi_table[] __initconst = {
+	{
+		.ident = "Alienware Area-51m",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware Area-51m"),
+		},
+		.driver_data = &generic_quirks,
+	},
 	{
 		.ident = "Alienware Area-51m R2",
 		.matches = {
@@ -97,6 +105,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
 		},
 		.driver_data = &generic_quirks,
 	},
+	{
+		.ident = "Alienware m15 R5",
+		.matches = {
+			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
+			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R5"),
+		},
+		.driver_data = &generic_quirks,
+	},
 	{
 		.ident = "Alienware m15 R7",
 		.matches = {

---
base-commit: 4f30f946f27b7f044cf8f3f1f353dee1dcd3517a
change-id: 20250509-m15_r5-7ade3650ca48
-- 
 ~ Kurt
Re: [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
Posted by Ilpo Järvinen 5 months ago
On Thu, 10 Jul 2025 00:11:12 -0300, Kurt Borja wrote:

> Add support to Alienware Area-51m and Alienware m15 R5.
> 
> 


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/1] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
      commit: dbfb567f4ae86f4acc4644984ec5b59086060b99

--
 i.
Re: [PATCH] platform/x86: alieneware-wmi-wmax: Add AWCC support to more laptops
Posted by Kurt Borja 5 months ago
On Thu Jul 10, 2025 at 12:11 AM -03, Kurt Borja wrote:
> Add support to Alienware Area-51m and Alienware m15 R5.
>
> Signed-off-by: Kurt Borja <kuurtb@gmail.com>

For the Alienware Area-51m model:

Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.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 20ec122a9fe0571a1ecd2ccf630615564ab30481..67e5dd0f140aa73ac73ea99fbe081a6b08e520ec 100644
> --- a/drivers/platform/x86/dell/alienware-wmi-wmax.c
> +++ b/drivers/platform/x86/dell/alienware-wmi-wmax.c
> @@ -89,6 +89,14 @@ static struct awcc_quirks generic_quirks = {
>  static struct awcc_quirks empty_quirks;
>  
>  static const struct dmi_system_id awcc_dmi_table[] __initconst = {
> +	{
> +		.ident = "Alienware Area-51m",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware Area-51m"),
> +		},
> +		.driver_data = &generic_quirks,
> +	},
>  	{
>  		.ident = "Alienware Area-51m R2",
>  		.matches = {
> @@ -97,6 +105,14 @@ static const struct dmi_system_id awcc_dmi_table[] __initconst = {
>  		},
>  		.driver_data = &generic_quirks,
>  	},
> +	{
> +		.ident = "Alienware m15 R5",
> +		.matches = {
> +			DMI_MATCH(DMI_SYS_VENDOR, "Alienware"),
> +			DMI_MATCH(DMI_PRODUCT_NAME, "Alienware m15 R5"),
> +		},
> +		.driver_data = &generic_quirks,
> +	},
>  	{
>  		.ident = "Alienware m15 R7",
>  		.matches = {
>
> ---
> base-commit: 4f30f946f27b7f044cf8f3f1f353dee1dcd3517a
> change-id: 20250509-m15_r5-7ade3650ca48


-- 
 ~ Kurt