[PATCH 7/9] pinctrl: samsung: Add property to mark pad state as suitable for power down
From: Tomasz Figa <hidden>
Date: 2016-12-26 06:02:11
Also in:
linux-gpio, linux-pm, linux-samsung-soc
Possibly related (same subject, not in this thread)
- 2016-12-30 · Re: [PATCH 7/9] pinctrl: samsung: Add property to mark pad state as suitable for power down · Krzysztof Kozlowski <hidden>
2016-12-26 4:19 GMT+09:00 Krzysztof Kozlowski [off-list ref]:
On Fri, Dec 23, 2016 at 01:24:47PM +0100, Marek Szyprowski wrote:quoted
Add support for special property "samsung,off-state", which indicates a special state suitable for device's "sleep" state. Its pin values/properties should match the configuration in power down mode. It indicates that pin controller can notify runtime power management subsystem, that it is ready for runtime suspend if its all pins are configured for such state. This in turn might allow to turn respective power domain off to reduce power consumption. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> --- Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt | 8 ++++++++ drivers/pinctrl/samsung/pinctrl-samsung.c | 4 ++++ drivers/pinctrl/samsung/pinctrl-samsung.h | 1 + 3 files changed, 13 insertions(+)diff --git a/Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt b/Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt index b7bd2e12a269..354eea0e7798 100644 --- a/Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt +++ b/Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt@@ -105,6 +105,7 @@ Required Properties: - samsung,pin-drv: Drive strength configuration. - samsung,pin-pud-pdn: Pull up/down configuration in power down mode. - samsung,pin-drv-pdn: Drive strength configuration in power down mode. + - samsung,off-state: Mark this configuration as suitable for bank power off. The values specified by these config properties should be derived from the hardware manual and these values are programmed as-is into the pin@@ -113,6 +114,13 @@ Required Properties: Note: A child should include atleast a pin function selection property or pin configuration property (one or more) or both. + Note: Special property "samsung,off-state" indicates that this state can + be used for device's "sleep" pins state. Its pin values/properties should + match the configuration in power down mode.Why power down values cannot be used for sleep state? Why you need separate pin control state? If pins values should match power down configuration, then they could just be added to default state, couldn't they? In the patch 2/9, existing configuration: 716 i2s0_bus: i2s0-bus { (...) 719 samsung,pin-function = <EXYNOS_PIN_FUNC_2>; 720 samsung,pin-pud = <EXYNOS_PIN_PULL_NONE>; 721 samsung,pin-drv = <EXYNOS5420_PIN_DRV_LV1>; 722 }; additional configuration: + i2s0_bus_slp: i2s0-bus-slp { + samsung,pin-function = <EXYNOS_PIN_FUNC_INPUT>; + samsung,pin-pud = <EXYNOS_PIN_PULL_NONE>; + samsung,pin-drv = <EXYNOS5420_PIN_DRV_LV1>; + samsung,pin-con-pdn = <EXYNOS_PIN_PDN_INPUT>; + samsung,pin-pud-pdn = <EXYNOS_PIN_PULL_NONE>; + samsung,off-state; + };
+1 If I'm not missing something, it should be reasonably easy to determine if a state is suitable for power off by its configuration, by comparing pin-function and pin-pud with pin-con-pdn and pin-pud-pdn. Best regards, Tomasz