platform-driver-x86.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] add platform support for Ideapad 5 Pro 16ACH6-82L5
@ 2021-09-18 22:59 Kelly Anderson
  2021-09-19  0:35 ` Barnabás Pőcze
  0 siblings, 1 reply; 2+ messages in thread
From: Kelly Anderson @ 2021-09-18 22:59 UTC (permalink / raw)
  To: ike.pan, hdegoede, mgross; +Cc: platform-driver-x86, linux-kernel, kelly

Adding support specifically for Ideapad 5 Pro 16ACH6-82L5 by adding a
whitelist function that can validate notebooks for which dytc_version
is less than 5, and seem to work fine at dytc_version 4. This code has
been tested to work properly on the specified system.

Signed-off-by: Kelly Anderson <kelly@xilka.com>

 drivers/platform/x86/ideapad-laptop.c | 37 ++++++++++++++++++++++++---
 1 file changed, 34 insertions(+), 3 deletions(-)

diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
index e7a1299e3776..92b8f7dc79f5 100644
--- a/drivers/platform/x86/ideapad-laptop.c
+++ b/drivers/platform/x86/ideapad-laptop.c
@@ -868,7 +868,28 @@ static void dytc_profile_refresh(struct ideapad_private *priv)
 	}
 }
 
-static int ideapad_dytc_profile_init(struct ideapad_private *priv)
+static int ideapad_dytc_v4_whitelist(struct platform_device *pdev)
+{
+	const char *vendor = dmi_get_system_info(DMI_SYS_VENDOR);
+	const char *product = dmi_get_system_info(DMI_PRODUCT_NAME);
+
+	if ( product ) {
+		if ( vendor ) {
+			dev_info(&pdev->dev, "DYTC Vendor: %s\n", vendor);
+		}
+
+		dev_info(&pdev->dev, "DYTC Product: %s\n", product);
+
+		if ( ! strncmp(product, "82L5", 4) ) /* IdeaPad 5 Pro 16ACH6 */ {
+			return 1;
+		}
+	}
+
+	return 0;
+}
+
+static int ideapad_dytc_profile_init(struct platform_device *pdev,
+				struct ideapad_private *priv)
 {
 	int err, dytc_version;
 	unsigned long output;
@@ -883,11 +904,21 @@ static int ideapad_dytc_profile_init(struct ideapad_private *priv)
 
 	/* Check DYTC is enabled and supports mode setting */
 	if (!test_bit(DYTC_QUERY_ENABLE_BIT, &output))
+	{
+		dev_info(&pdev->dev, "DYTC_QUERY_ENABLE_BIT returned false\n");
 		return -ENODEV;
+	}
 
 	dytc_version = (output >> DYTC_QUERY_REV_BIT) & 0xF;
+
 	if (dytc_version < 5)
-		return -ENODEV;
+	{
+		if ( dytc_version < 4 || ! ideapad_dytc_v4_whitelist(pdev) )
+		{
+			dev_info(&pdev->dev, "DYTC_VERSION is less than 4 or is not whitelisted: %d\n", dytc_version);
+			return -ENODEV;
+		}
+	}
 
 	priv->dytc = kzalloc(sizeof(*priv->dytc), GFP_KERNEL);
 	if (!priv->dytc)
@@ -1595,7 +1626,7 @@ static int ideapad_acpi_add(struct platform_device *pdev)
 	ideapad_sync_rfk_state(priv);
 	ideapad_sync_touchpad_state(priv);
 
-	err = ideapad_dytc_profile_init(priv);
+	err = ideapad_dytc_profile_init(pdev, priv);
 	if (err) {
 		if (err != -ENODEV)
 			dev_warn(&pdev->dev, "Could not set up DYTC interface: %d\n", err);
-- 
2.33.0





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

* Re: [PATCH] add platform support for Ideapad 5 Pro 16ACH6-82L5
  2021-09-18 22:59 [PATCH] add platform support for Ideapad 5 Pro 16ACH6-82L5 Kelly Anderson
@ 2021-09-19  0:35 ` Barnabás Pőcze
  0 siblings, 0 replies; 2+ messages in thread
From: Barnabás Pőcze @ 2021-09-19  0:35 UTC (permalink / raw)
  To: Kelly Anderson
  Cc: ike.pan, hdegoede, mgross, platform-driver-x86, linux-kernel,
	Mark Pearson

Hi

+CC Mark Pearson - because he added to code originally to the thinkpad_acpi
driver with the DYTC version limitation.

Please also check the coding style guide [1].


2021. szeptember 19., vasárnap 0:59 keltezéssel, Kelly Anderson írta:
> Adding support specifically for Ideapad 5 Pro 16ACH6-82L5 by adding a
> whitelist function that can validate notebooks for which dytc_version
> is less than 5, and seem to work fine at dytc_version 4. This code has
> been tested to work properly on the specified system.
>
> Signed-off-by: Kelly Anderson <kelly@xilka.com>
>
>  drivers/platform/x86/ideapad-laptop.c | 37 ++++++++++++++++++++++++---
>  1 file changed, 34 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/platform/x86/ideapad-laptop.c b/drivers/platform/x86/ideapad-laptop.c
> index e7a1299e3776..92b8f7dc79f5 100644
> --- a/drivers/platform/x86/ideapad-laptop.c
> +++ b/drivers/platform/x86/ideapad-laptop.c
> @@ -868,7 +868,28 @@ static void dytc_profile_refresh(struct ideapad_private *priv)
>  	}
>  }
>
> -static int ideapad_dytc_profile_init(struct ideapad_private *priv)
> +static int ideapad_dytc_v4_whitelist(struct platform_device *pdev)

Please use `bool`.


> +{
> +	const char *vendor = dmi_get_system_info(DMI_SYS_VENDOR);
> +	const char *product = dmi_get_system_info(DMI_PRODUCT_NAME);
> +
> +	if ( product ) {
> +		if ( vendor ) {
> +			dev_info(&pdev->dev, "DYTC Vendor: %s\n", vendor);
> +		}
> +
> +		dev_info(&pdev->dev, "DYTC Product: %s\n", product);
> +
> +		if ( ! strncmp(product, "82L5", 4) ) /* IdeaPad 5 Pro 16ACH6 */ {
> +			return 1;
> +		}

Have you checked if you can use `dmi_check_system()`?


> +	}
> +
> +	return 0;
> +}
> +
> +static int ideapad_dytc_profile_init(struct platform_device *pdev,
> +				struct ideapad_private *priv)
>  {
>  	int err, dytc_version;
>  	unsigned long output;
> @@ -883,11 +904,21 @@ static int ideapad_dytc_profile_init(struct ideapad_private *priv)
>
>  	/* Check DYTC is enabled and supports mode setting */
>  	if (!test_bit(DYTC_QUERY_ENABLE_BIT, &output))
> +	{
> +		dev_info(&pdev->dev, "DYTC_QUERY_ENABLE_BIT returned false\n");
>  		return -ENODEV;
> +	}
>
>  	dytc_version = (output >> DYTC_QUERY_REV_BIT) & 0xF;
> +
>  	if (dytc_version < 5)
> -		return -ENODEV;
> +	{
> +		if ( dytc_version < 4 || ! ideapad_dytc_v4_whitelist(pdev) )
> +		{
> +			dev_info(&pdev->dev, "DYTC_VERSION is less than 4 or is not whitelisted: %d\n", dytc_version);
> +			return -ENODEV;
> +		}
> +	}
>
>  	priv->dytc = kzalloc(sizeof(*priv->dytc), GFP_KERNEL);
>  	if (!priv->dytc)
> @@ -1595,7 +1626,7 @@ static int ideapad_acpi_add(struct platform_device *pdev)
>  	ideapad_sync_rfk_state(priv);
>  	ideapad_sync_touchpad_state(priv);
>
> -	err = ideapad_dytc_profile_init(priv);
> +	err = ideapad_dytc_profile_init(pdev, priv);

The platform device is already available via `priv->platform_device`.


>  	if (err) {
>  		if (err != -ENODEV)
>  			dev_warn(&pdev->dev, "Could not set up DYTC interface: %d\n", err);
> --
> 2.33.0

[1]: https://www.kernel.org/doc/html/latest/process/coding-style.html


Regards,
Barnabás Pőcze

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

end of thread, other threads:[~2021-09-19  0:38 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-18 22:59 [PATCH] add platform support for Ideapad 5 Pro 16ACH6-82L5 Kelly Anderson
2021-09-19  0:35 ` Barnabás Pőcze

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