diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2024-01-15 12:10:38 -0600 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2024-01-15 12:10:38 -0600 |
commit | 67b9ef22c68c4f7761309864d18da85da560f882 (patch) | |
tree | a161ffe97702cb7735800dcd8d4b5e1c031ba353 /Documentation | |
parent | 1b6069f51ef02618f89fc20a630762ac38420a8d (diff) | |
parent | 6797e4da2dd1e2c8dc8cec73447c77abe2a7655b (diff) | |
download | linux-67b9ef22c68c4f7761309864d18da85da560f882.tar.gz linux-67b9ef22c68c4f7761309864d18da85da560f882.tar.bz2 linux-67b9ef22c68c4f7761309864d18da85da560f882.zip |
Merge branch 'pci/controller/rcar'
- Replace of_device.h with explicit of.h include to untangle header usage
(Rob Herring)
- Add DT and driver support for optional miniPCIe 1.5v and 3.3v regulators
on KingFisher (Wolfram Sang)
* pci/controller/rcar:
PCI: rcar-host: Add support for optional regulators
dt-bindings: PCI: rcar-pci-host: Add optional regulators
PCI: rcar-gen4: Replace of_device.h with explicit of.h include
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/pci/rcar-pci-host.yaml | 11 |
1 files changed, 11 insertions, 0 deletions
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>; }; }; |