devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe
@ 2023-11-05  9:29 Wolfram Sang
  2023-11-05  9:29 ` [PATCH v5 RESEND 1/2] dt-bindings: PCI: rcar-pci-host: add optional regulators Wolfram Sang
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Wolfram Sang @ 2023-11-05  9:29 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: Wolfram Sang, devicetree, linux-kernel, linux-pci, Marek Vasut,
	Yoshihiro Shimoda

Here are the patches to make PCIe cards work in slot CN15 on a Renesas
KingFisher board. Please apply.

Changes since v4:
* rebased to 6.6
* added ack from Mani (Thanks!)

Wolfram Sang (2):
  dt-bindings: PCI: rcar-pci-host: add optional regulators
  PCI: rcar-host: add support for optional regulators

 .../devicetree/bindings/pci/rcar-pci-host.yaml   | 11 +++++++++++
 drivers/pci/controller/pcie-rcar-host.c          | 16 +++++++++++++++-
 2 files changed, 26 insertions(+), 1 deletion(-)

-- 
2.35.1


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

* [PATCH v5 RESEND 1/2] dt-bindings: PCI: rcar-pci-host: add optional regulators
  2023-11-05  9:29 [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
@ 2023-11-05  9:29 ` Wolfram Sang
  2023-12-14 15:51 ` [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
  2023-12-14 19:16 ` Krzysztof Wilczyński
  2 siblings, 0 replies; 6+ messages in thread
From: Wolfram Sang @ 2023-11-05  9:29 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: Wolfram Sang, Geert Uytterhoeven, Krzysztof Kozlowski,
	Marek Vasut, Yoshihiro Shimoda, Bjorn Helgaas, Lorenzo Pieralisi,
	Krzysztof Wilczyński, Rob Herring, Krzysztof Kozlowski,
	Conor Dooley, linux-pci, devicetree, linux-kernel

Support regulators found on the KingFisher board for miniPCIe (1.5 and
3.3v). For completeness, describe a 12v regulator while we are here.

Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
---
 .../devicetree/bindings/pci/rcar-pci-host.yaml        | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/Documentation/devicetree/bindings/pci/rcar-pci-host.yaml b/Documentation/devicetree/bindings/pci/rcar-pci-host.yaml
index 8fdfbc763d70..b6a7cb32f61e 100644
--- a/Documentation/devicetree/bindings/pci/rcar-pci-host.yaml
+++ b/Documentation/devicetree/bindings/pci/rcar-pci-host.yaml
@@ -68,6 +68,15 @@ properties:
   phy-names:
     const: pcie
 
+  vpcie1v5-supply:
+    description: The 1.5v regulator to use for PCIe.
+
+  vpcie3v3-supply:
+    description: The 3.3v regulator to use for PCIe.
+
+  vpcie12v-supply:
+    description: The 12v regulator to use for PCIe.
+
 required:
   - compatible
   - reg
@@ -121,5 +130,7 @@ examples:
              clock-names = "pcie", "pcie_bus";
              power-domains = <&sysc R8A7791_PD_ALWAYS_ON>;
              resets = <&cpg 319>;
+             vpcie3v3-supply = <&pcie_3v3>;
+             vpcie12v-supply = <&pcie_12v>;
          };
     };
-- 
2.35.1


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

* Re: [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe
  2023-11-05  9:29 [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
  2023-11-05  9:29 ` [PATCH v5 RESEND 1/2] dt-bindings: PCI: rcar-pci-host: add optional regulators Wolfram Sang
@ 2023-12-14 15:51 ` Wolfram Sang
  2023-12-14 19:19   ` Krzysztof Wilczyński
  2023-12-14 19:16 ` Krzysztof Wilczyński
  2 siblings, 1 reply; 6+ messages in thread
From: Wolfram Sang @ 2023-12-14 15:51 UTC (permalink / raw)
  To: linux-renesas-soc
  Cc: devicetree, linux-kernel, linux-pci, Marek Vasut,
	Yoshihiro Shimoda

[-- Attachment #1: Type: text/plain, Size: 650 bytes --]

On Sun, Nov 05, 2023 at 10:29:06AM +0100, Wolfram Sang wrote:
> Here are the patches to make PCIe cards work in slot CN15 on a Renesas
> KingFisher board. Please apply.
> 
> Changes since v4:
> * rebased to 6.6
> * added ack from Mani (Thanks!)
> 
> Wolfram Sang (2):
>   dt-bindings: PCI: rcar-pci-host: add optional regulators
>   PCI: rcar-host: add support for optional regulators
> 
>  .../devicetree/bindings/pci/rcar-pci-host.yaml   | 11 +++++++++++
>  drivers/pci/controller/pcie-rcar-host.c          | 16 +++++++++++++++-
>  2 files changed, 26 insertions(+), 1 deletion(-)

Can we have this series in 6.8, pretty please?


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe
  2023-11-05  9:29 [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
  2023-11-05  9:29 ` [PATCH v5 RESEND 1/2] dt-bindings: PCI: rcar-pci-host: add optional regulators Wolfram Sang
  2023-12-14 15:51 ` [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
@ 2023-12-14 19:16 ` Krzysztof Wilczyński
  2 siblings, 0 replies; 6+ messages in thread
From: Krzysztof Wilczyński @ 2023-12-14 19:16 UTC (permalink / raw)
  To: Wolfram Sang
  Cc: linux-renesas-soc, devicetree, linux-kernel, linux-pci,
	Marek Vasut, Yoshihiro Shimoda

Hello,

> Here are the patches to make PCIe cards work in slot CN15 on a Renesas
> KingFisher board. Please apply.

Applied to controller/rcar, thank you!

[01/02] dt-bindings: PCI: rcar-pci-host: Add optional regulators
        https://git.kernel.org/pci/pci/c/b952f96a57e6
[02/02] PCI: rcar-host: Add support for optional regulators
        https://git.kernel.org/pci/pci/c/6797e4da2dd1

	Krzysztof

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

* Re: [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe
  2023-12-14 15:51 ` [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
@ 2023-12-14 19:19   ` Krzysztof Wilczyński
  2023-12-14 19:27     ` Wolfram Sang
  0 siblings, 1 reply; 6+ messages in thread
From: Krzysztof Wilczyński @ 2023-12-14 19:19 UTC (permalink / raw)
  To: Wolfram Sang, linux-renesas-soc, devicetree, linux-kernel,
	linux-pci, Marek Vasut, Yoshihiro Shimoda

Hello,

> > Here are the patches to make PCIe cards work in slot CN15 on a Renesas
> > KingFisher board. Please apply.
[...]
> Can we have this series in 6.8, pretty please?

Applied, so it should make it to 6.8.  Apologies for the delay.

	Krzysztof

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

* Re: [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe
  2023-12-14 19:19   ` Krzysztof Wilczyński
@ 2023-12-14 19:27     ` Wolfram Sang
  0 siblings, 0 replies; 6+ messages in thread
From: Wolfram Sang @ 2023-12-14 19:27 UTC (permalink / raw)
  To: Krzysztof Wilczyński
  Cc: linux-renesas-soc, devicetree, linux-kernel, linux-pci,
	Marek Vasut, Yoshihiro Shimoda

[-- Attachment #1: Type: text/plain, Size: 89 bytes --]


> Applied, so it should make it to 6.8.  Apologies for the delay.

Awesome, thank you!


[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

end of thread, other threads:[~2023-12-14 19:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-05  9:29 [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
2023-11-05  9:29 ` [PATCH v5 RESEND 1/2] dt-bindings: PCI: rcar-pci-host: add optional regulators Wolfram Sang
2023-12-14 15:51 ` [PATCH v5 RESEND 0/2] PCI: rcar: support regulators for PCIe Wolfram Sang
2023-12-14 19:19   ` Krzysztof Wilczyński
2023-12-14 19:27     ` Wolfram Sang
2023-12-14 19:16 ` Krzysztof Wilczyński

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