2023-10-03 11:41:29

by Raag Jadav

[permalink] [raw]
Subject: [PATCH v2 0/2] Drop runtime PM support for Baytrail and Lynxpoint pinctrl

This series removes runtime PM support for the devices that are not
explicitly attached to acpi_lpss_pm_domain as it is dead code anyway.

This has no functional impact and helps reduce their code and memory
footprint.

bloat-o-meter:
==============

Baytrail:
add/remove: 2/4 grow/shrink: 0/3 up/down: 49/-103 (-54)
Total: Before=16104, After=16050, chg -0.34%

Lynxpoint:
add/remove: 7/10 grow/shrink: 1/3 up/down: 152/-223 (-71)
Total: Before=7506, After=7435, chg -0.95%

Changes since v1:
- Add missing pm.h

Raag Jadav (2):
pinctrl: baytrail: drop runtime PM support
pinctrl: lynxpoint: drop runtime PM support

drivers/pinctrl/intel/pinctrl-baytrail.c | 19 ++------------
drivers/pinctrl/intel/pinctrl-lynxpoint.c | 32 +++--------------------
2 files changed, 5 insertions(+), 46 deletions(-)

--
2.17.1


2023-10-03 11:41:35

by Raag Jadav

[permalink] [raw]
Subject: [PATCH v2 2/2] pinctrl: lynxpoint: drop runtime PM support

Since Lynxpoint pinctrl device is not attached to acpi_lpss_pm_domain,
runtime PM serves no purpose here. Drop it and switch to pm_sleep_ptr()
as now we only have resume handle in place.

Signed-off-by: Raag Jadav <[email protected]>
Acked-by: Mika Westerberg <[email protected]>
---
drivers/pinctrl/intel/pinctrl-lynxpoint.c | 32 +++--------------------
1 file changed, 3 insertions(+), 29 deletions(-)

diff --git a/drivers/pinctrl/intel/pinctrl-lynxpoint.c b/drivers/pinctrl/intel/pinctrl-lynxpoint.c
index c3732a9f0658..068cfd27f97f 100644
--- a/drivers/pinctrl/intel/pinctrl-lynxpoint.c
+++ b/drivers/pinctrl/intel/pinctrl-lynxpoint.c
@@ -15,7 +15,7 @@
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
-#include <linux/pm_runtime.h>
+#include <linux/pm.h>
#include <linux/seq_file.h>
#include <linux/slab.h>
#include <linux/types.h>
@@ -337,8 +337,6 @@ static int lp_gpio_request_enable(struct pinctrl_dev *pctldev,
unsigned long flags;
u32 value;

- pm_runtime_get(lg->dev);
-
raw_spin_lock_irqsave(&lg->lock, flags);

/*
@@ -373,8 +371,6 @@ static void lp_gpio_disable_free(struct pinctrl_dev *pctldev,
lp_gpio_disable_input(conf2);

raw_spin_unlock_irqrestore(&lg->lock, flags);
-
- pm_runtime_put(lg->dev);
}

static int lp_gpio_set_direction(struct pinctrl_dev *pctldev,
@@ -841,24 +837,6 @@ static int lp_gpio_probe(struct platform_device *pdev)
return ret;
}

- pm_runtime_enable(dev);
-
- return 0;
-}
-
-static int lp_gpio_remove(struct platform_device *pdev)
-{
- pm_runtime_disable(&pdev->dev);
- return 0;
-}
-
-static int lp_gpio_runtime_suspend(struct device *dev)
-{
- return 0;
-}
-
-static int lp_gpio_runtime_resume(struct device *dev)
-{
return 0;
}

@@ -876,10 +854,7 @@ static int lp_gpio_resume(struct device *dev)
return 0;
}

-static const struct dev_pm_ops lp_gpio_pm_ops = {
- SYSTEM_SLEEP_PM_OPS(NULL, lp_gpio_resume)
- RUNTIME_PM_OPS(lp_gpio_runtime_suspend, lp_gpio_runtime_resume, NULL)
-};
+static DEFINE_SIMPLE_DEV_PM_OPS(lp_gpio_pm_ops, NULL, lp_gpio_resume);

static const struct acpi_device_id lynxpoint_gpio_acpi_match[] = {
{ "INT33C7", (kernel_ulong_t)&lptlp_soc_data },
@@ -890,10 +865,9 @@ MODULE_DEVICE_TABLE(acpi, lynxpoint_gpio_acpi_match);

static struct platform_driver lp_gpio_driver = {
.probe = lp_gpio_probe,
- .remove = lp_gpio_remove,
.driver = {
.name = "lp_gpio",
- .pm = pm_ptr(&lp_gpio_pm_ops),
+ .pm = pm_sleep_ptr(&lp_gpio_pm_ops),
.acpi_match_table = lynxpoint_gpio_acpi_match,
},
};
--
2.17.1

2023-10-03 12:17:46

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] Drop runtime PM support for Baytrail and Lynxpoint pinctrl

On Tue, Oct 03, 2023 at 05:10:34PM +0530, Raag Jadav wrote:
> This series removes runtime PM support for the devices that are not
> explicitly attached to acpi_lpss_pm_domain as it is dead code anyway.
>
> This has no functional impact and helps reduce their code and memory
> footprint.
>
> bloat-o-meter:
> ==============
>
> Baytrail:
> add/remove: 2/4 grow/shrink: 0/3 up/down: 49/-103 (-54)
> Total: Before=16104, After=16050, chg -0.34%
>
> Lynxpoint:
> add/remove: 7/10 grow/shrink: 1/3 up/down: 152/-223 (-71)
> Total: Before=7506, After=7435, chg -0.95%
>
> Changes since v1:
> - Add missing pm.h
>
> Raag Jadav (2):
> pinctrl: baytrail: drop runtime PM support
> pinctrl: lynxpoint: drop runtime PM support
>
> drivers/pinctrl/intel/pinctrl-baytrail.c | 19 ++------------
> drivers/pinctrl/intel/pinctrl-lynxpoint.c | 32 +++--------------------
> 2 files changed, 5 insertions(+), 46 deletions(-)

You forgot --base... :-(

--
With Best Regards,
Andy Shevchenko


2023-10-03 12:32:19

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] Drop runtime PM support for Baytrail and Lynxpoint pinctrl

On Tue, Oct 03, 2023 at 05:10:34PM +0530, Raag Jadav wrote:
> This series removes runtime PM support for the devices that are not
> explicitly attached to acpi_lpss_pm_domain as it is dead code anyway.
>
> This has no functional impact and helps reduce their code and memory
> footprint.
>
> bloat-o-meter:
> ==============
>
> Baytrail:
> add/remove: 2/4 grow/shrink: 0/3 up/down: 49/-103 (-54)
> Total: Before=16104, After=16050, chg -0.34%
>
> Lynxpoint:
> add/remove: 7/10 grow/shrink: 1/3 up/down: 152/-223 (-71)
> Total: Before=7506, After=7435, chg -0.95%

Pushed to my review and testing queue, thanks!

--
With Best Regards,
Andy Shevchenko


2023-10-03 13:31:31

by Raag Jadav

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] Drop runtime PM support for Baytrail and Lynxpoint pinctrl

On Tue, Oct 03, 2023 at 03:16:25PM +0300, Andy Shevchenko wrote:
> On Tue, Oct 03, 2023 at 05:10:34PM +0530, Raag Jadav wrote:
> > This series removes runtime PM support for the devices that are not
> > explicitly attached to acpi_lpss_pm_domain as it is dead code anyway.
> >
> > This has no functional impact and helps reduce their code and memory
> > footprint.
> >
> > bloat-o-meter:
> > ==============
> >
> > Baytrail:
> > add/remove: 2/4 grow/shrink: 0/3 up/down: 49/-103 (-54)
> > Total: Before=16104, After=16050, chg -0.34%
> >
> > Lynxpoint:
> > add/remove: 7/10 grow/shrink: 1/3 up/down: 152/-223 (-71)
> > Total: Before=7506, After=7435, chg -0.95%
> >
> > Changes since v1:
> > - Add missing pm.h
> >
> > Raag Jadav (2):
> > pinctrl: baytrail: drop runtime PM support
> > pinctrl: lynxpoint: drop runtime PM support
> >
> > drivers/pinctrl/intel/pinctrl-baytrail.c | 19 ++------------
> > drivers/pinctrl/intel/pinctrl-lynxpoint.c | 32 +++--------------------
> > 2 files changed, 5 insertions(+), 46 deletions(-)
>
> You forgot --base... :-(

Sorry, I need to go figure out some send-email automation.

Raag

2023-10-03 13:43:33

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH v2 0/2] Drop runtime PM support for Baytrail and Lynxpoint pinctrl

On Tue, Oct 03, 2023 at 04:31:12PM +0300, Raag Jadav wrote:
> On Tue, Oct 03, 2023 at 03:16:25PM +0300, Andy Shevchenko wrote:
> > On Tue, Oct 03, 2023 at 05:10:34PM +0530, Raag Jadav wrote:

...

> > You forgot --base... :-(
>
> Sorry, I need to go figure out some send-email automation.

You can start with my "smart" script [1] (patches are welcome!).

[1]: https://github.com/andy-shev/home-bin-tools/blob/master/ge2maintainer.sh

--
With Best Regards,
Andy Shevchenko