* [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible
@ 2023-08-08 10:22 Dhruva Gole
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Dhruva Gole @ 2023-08-08 10:22 UTC (permalink / raw)
To: Tony Lindgren, Linus Walleij, Conor Dooley
Cc: linux-gpio, devicetree, linux-kernel, linux-arm-kernel,
linux-omap, Dhruva Gole, Nishanth Menon, Vignesh Raghavendra,
Conor Dooley, Krzysztof Kozlowski, Rob Herring, Haojian Zhuang
The K3 family of SOCs use certain bits of the padconfig registers like
WKUP_EVT and WKUP_EN to enable daisychain wakeups.
For example, these bits are described in the AM654 TRM [0] under
"Table 5-517. Description Of The Pad Configuration Register Bits"
This series adds the DT binding changes for adding the compatible and
also the driver changes which make use of this compatible.
NOTE: Some K3 SoCs may have these bits marked as reserved which means
that they don't support IO daisychain. Such SOCs are not expected to use
this compatible.
The general expected usage is when the device is in a suspended state like Deep
Sleep or Suspend to RAM, and any IO activity on configured pads can
trigger a wakeup.
Link to complete series:
https://lore.kernel.org/all/20230808102207.130177-1-d-gole@ti.com
Base commit:
71cd4fc492ec (tag: next-20230808, linux-next/master) Add linux-next specific files for 20230808
depends on:
https://lore.kernel.org/r/20230721082654.27036-1-tony@atomide.com
which has been picked up by Linus Walleij in his tree here:
https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git/commit/?h=devel&id=677a62482bd6e584f83d0342e78735e3cd449ba4
However, it hasn't reflected in -next yet so specifying the depends on
above.
[0] https://www.ti.com/lit/pdf/spruid7
Cc: Nishanth Menon <nm@ti.com>
Cc: Vignesh Raghavendra <vigneshr@ti.com>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Conor Dooley <conor.dooley@microchip.com>
Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
Dhruva Gole (1):
dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible
Tony Lindgren (1):
pinctrl: single: Add compatible for ti,am654-padconf
.../devicetree/bindings/pinctrl/pinctrl-single.yaml | 1 +
drivers/pinctrl/pinctrl-single.c | 7 +++++++
2 files changed, 8 insertions(+)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible
2023-08-08 10:22 [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Dhruva Gole
@ 2023-08-08 10:22 ` Dhruva Gole
2023-08-08 10:26 ` Tony Lindgren
2023-08-10 8:34 ` Linus Walleij
2023-08-08 10:22 ` [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf Dhruva Gole
2023-08-09 11:49 ` [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Nishanth Menon
2 siblings, 2 replies; 8+ messages in thread
From: Dhruva Gole @ 2023-08-08 10:22 UTC (permalink / raw)
To: Tony Lindgren, Linus Walleij, Conor Dooley
Cc: linux-gpio, devicetree, linux-kernel, linux-arm-kernel,
linux-omap, Dhruva Gole
Add the "ti,am654-padconf" compatible to support the new wakeup enable and
status bits positions on K3 family SOCs that support the IO daisychain
feature.
Signed-off-by: Dhruva Gole <d-gole@ti.com>
---
Previously, this was posted here:
https://lore.kernel.org/all/20230804050737.635186-1-d-gole@ti.com/
However since then I have tweaked the commit message and also the name
of compatible. Hence didn't pickup the Acked-by: Conor and Tony's R-by:
https://lore.kernel.org/all/20230807144323.GP14799@atomide.com/
Documentation/devicetree/bindings/pinctrl/pinctrl-single.yaml | 1 +
1 file changed, 1 insertion(+)
diff --git a/Documentation/devicetree/bindings/pinctrl/pinctrl-single.yaml b/Documentation/devicetree/bindings/pinctrl/pinctrl-single.yaml
index b6b6bcd7074b..45a307d3ce16 100644
--- a/Documentation/devicetree/bindings/pinctrl/pinctrl-single.yaml
+++ b/Documentation/devicetree/bindings/pinctrl/pinctrl-single.yaml
@@ -24,6 +24,7 @@ properties:
- items:
- enum:
- ti,am437-padconf
+ - ti,am654-padconf
- ti,dra7-padconf
- ti,omap2420-padconf
- ti,omap2430-padconf
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf
2023-08-08 10:22 [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Dhruva Gole
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
@ 2023-08-08 10:22 ` Dhruva Gole
2023-08-08 10:22 ` Dhruva Gole
2023-08-10 8:40 ` Linus Walleij
2023-08-09 11:49 ` [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Nishanth Menon
2 siblings, 2 replies; 8+ messages in thread
From: Dhruva Gole @ 2023-08-08 10:22 UTC (permalink / raw)
To: Tony Lindgren, Linus Walleij, Conor Dooley
Cc: linux-gpio, devicetree, linux-kernel, linux-arm-kernel,
linux-omap, Dhruva Gole
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf
2023-08-08 10:22 ` [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf Dhruva Gole
@ 2023-08-08 10:22 ` Dhruva Gole
2023-08-10 8:40 ` Linus Walleij
1 sibling, 0 replies; 8+ messages in thread
From: Dhruva Gole @ 2023-08-08 10:22 UTC (permalink / raw)
To: Tony Lindgren, Linus Walleij, Conor Dooley
Cc: linux-gpio, devicetree, linux-kernel, linux-arm-kernel,
linux-omap, Dhruva Gole
From: Tony Lindgren <tony@atomide.com>
Use the "ti,am654-padconf" compatible to enable the use of wake-up enable
and event bits on K3 SOCs that support the daisychain feature
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Dhruva Gole <d-gole@ti.com>
---
The previous version of this patch was posted stand alone here:
https://lore.kernel.org/all/20230805045554.786092-1-d-gole@ti.com/
changelog: the compatible name has been changed in this series.
drivers/pinctrl/pinctrl-single.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/pinctrl/pinctrl-single.c b/drivers/pinctrl/pinctrl-single.c
index f056923ecc98..92e495d13b9b 100644
--- a/drivers/pinctrl/pinctrl-single.c
+++ b/drivers/pinctrl/pinctrl-single.c
@@ -1954,6 +1954,12 @@ static const struct pcs_soc_data pinctrl_single_am437x = {
.irq_status_mask = (1 << 30), /* OMAP_WAKEUP_EVENT */
};
+static const struct pcs_soc_data pinctrl_single_am654 = {
+ .flags = PCS_QUIRK_SHARED_IRQ | PCS_CONTEXT_LOSS_OFF,
+ .irq_enable_mask = (1 << 29), /* WKUP_EN */
+ .irq_status_mask = (1 << 30), /* WKUP_EVT */
+};
+
static const struct pcs_soc_data pinctrl_single = {
};
@@ -1962,6 +1968,7 @@ static const struct pcs_soc_data pinconf_single = {
};
static const struct of_device_id pcs_of_match[] = {
+ { .compatible = "ti,am654-padconf", .data = &pinctrl_single_am654 },
{ .compatible = "ti,omap3-padconf", .data = &pinctrl_single_omap_wkup },
{ .compatible = "ti,omap4-padconf", .data = &pinctrl_single_omap_wkup },
{ .compatible = "ti,omap5-padconf", .data = &pinctrl_single_omap_wkup },
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
@ 2023-08-08 10:26 ` Tony Lindgren
2023-08-10 8:34 ` Linus Walleij
1 sibling, 0 replies; 8+ messages in thread
From: Tony Lindgren @ 2023-08-08 10:26 UTC (permalink / raw)
To: Dhruva Gole
Cc: Linus Walleij, Conor Dooley, linux-gpio, devicetree, linux-kernel,
linux-arm-kernel, linux-omap
* Dhruva Gole <d-gole@ti.com> [230808 10:24]:
> Add the "ti,am654-padconf" compatible to support the new wakeup enable and
> status bits positions on K3 family SOCs that support the IO daisychain
> feature.
This one too:
Reviewed-by: Tony Lindgren <tony@atomide.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible
2023-08-08 10:22 [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Dhruva Gole
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
2023-08-08 10:22 ` [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf Dhruva Gole
@ 2023-08-09 11:49 ` Nishanth Menon
2 siblings, 0 replies; 8+ messages in thread
From: Nishanth Menon @ 2023-08-09 11:49 UTC (permalink / raw)
To: Dhruva Gole
Cc: Tony Lindgren, Linus Walleij, Conor Dooley, linux-gpio,
devicetree, linux-kernel, linux-arm-kernel, linux-omap,
Vignesh Raghavendra, Conor Dooley, Krzysztof Kozlowski,
Rob Herring, Haojian Zhuang
On 15:52-20230808, Dhruva Gole wrote:
> The K3 family of SOCs use certain bits of the padconfig registers like
> WKUP_EVT and WKUP_EN to enable daisychain wakeups.
>
> For example, these bits are described in the AM654 TRM [0] under
> "Table 5-517. Description Of The Pad Configuration Register Bits"
>
> This series adds the DT binding changes for adding the compatible and
> also the driver changes which make use of this compatible.
>
> NOTE: Some K3 SoCs may have these bits marked as reserved which means
> that they don't support IO daisychain. Such SOCs are not expected to use
> this compatible.
>
> The general expected usage is when the device is in a suspended state like Deep
> Sleep or Suspend to RAM, and any IO activity on configured pads can
> trigger a wakeup.
>
> Link to complete series:
> https://lore.kernel.org/all/20230808102207.130177-1-d-gole@ti.com
>
> Base commit:
> 71cd4fc492ec (tag: next-20230808, linux-next/master) Add linux-next specific files for 20230808
>
> depends on:
> https://lore.kernel.org/r/20230721082654.27036-1-tony@atomide.com
>
> which has been picked up by Linus Walleij in his tree here:
> https://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git/commit/?h=devel&id=677a62482bd6e584f83d0342e78735e3cd449ba4
>
> However, it hasn't reflected in -next yet so specifying the depends on
> above.
next-20230809 has it today - so just a day or two of sync.. no biggie.
>
> [0] https://www.ti.com/lit/pdf/spruid7
>
> Cc: Nishanth Menon <nm@ti.com>
> Cc: Vignesh Raghavendra <vigneshr@ti.com>
> Cc: Tony Lindgren <tony@atomide.com>
> Cc: Conor Dooley <conor.dooley@microchip.com>
> Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Haojian Zhuang <haojian.zhuang@linaro.org>
For the series:
Reviewed-by: Nishanth Menon <nm@ti.com>
Regards,
Nishanth Menon
Key (0xDDB5849D1736249D) / Fingerprint: F8A2 8693 54EB 8232 17A3 1A34 DDB5 849D 1736 249D
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
2023-08-08 10:26 ` Tony Lindgren
@ 2023-08-10 8:34 ` Linus Walleij
1 sibling, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2023-08-10 8:34 UTC (permalink / raw)
To: Dhruva Gole
Cc: Tony Lindgren, Conor Dooley, linux-gpio, devicetree, linux-kernel,
linux-arm-kernel, linux-omap
On Tue, Aug 8, 2023 at 12:24 PM Dhruva Gole <d-gole@ti.com> wrote:
> Add the "ti,am654-padconf" compatible to support the new wakeup enable and
> status bits positions on K3 family SOCs that support the IO daisychain
> feature.
>
> Signed-off-by: Dhruva Gole <d-gole@ti.com>
Patch applied.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf
2023-08-08 10:22 ` [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf Dhruva Gole
2023-08-08 10:22 ` Dhruva Gole
@ 2023-08-10 8:40 ` Linus Walleij
1 sibling, 0 replies; 8+ messages in thread
From: Linus Walleij @ 2023-08-10 8:40 UTC (permalink / raw)
To: Dhruva Gole
Cc: Tony Lindgren, Conor Dooley, linux-gpio, devicetree, linux-kernel,
linux-arm-kernel, linux-omap
On Tue, Aug 8, 2023 at 12:25 PM Dhruva Gole <d-gole@ti.com> wrote:
> From: Tony Lindgren <tony@atomide.com>
>
> Use the "ti,am654-padconf" compatible to enable the use of wake-up enable
> and event bits on K3 SOCs that support the daisychain feature
>
> Signed-off-by: Tony Lindgren <tony@atomide.com>
> Signed-off-by: Dhruva Gole <d-gole@ti.com>
Patch applied and I also alphabetized the compatibles when applying.
Yours,
Linus Walleij
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-08-10 8:40 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-08 10:22 [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Dhruva Gole
2023-08-08 10:22 ` [PATCH 1/2] dt-bindings: pinctrl: pinctrl-single: add ti,am654-padconf compatible Dhruva Gole
2023-08-08 10:26 ` Tony Lindgren
2023-08-10 8:34 ` Linus Walleij
2023-08-08 10:22 ` [PATCH 2/2] pinctrl: single: Add compatible for ti,am654-padconf Dhruva Gole
2023-08-08 10:22 ` Dhruva Gole
2023-08-10 8:40 ` Linus Walleij
2023-08-09 11:49 ` [PATCH 0/2] pinctrl-single: introduce am654-padconf compatible Nishanth Menon
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).