summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-08-01 14:27:28 +0200
committerThierry Reding <treding@nvidia.com>2014-08-07 17:00:16 +0200
commit6d2515ae638bd5197b4dea72e77927ee4c8bc3dd (patch)
tree100e9b417344360557296d3b520e848db167ae2b
parentca80f38f611ddf4f8474f5092ab8fb8cc59773f8 (diff)
PCI: tegra: Tegra124 support fixup
-rw-r--r--Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt6
-rw-r--r--drivers/pci/host/pci-tegra.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt b/Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
index bc0b09b0dfb5..d763e047c6ae 100644
--- a/Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
+++ b/Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
@@ -95,16 +95,16 @@ Power supplies for Tegra30:
Power supplies for Tegra124:
- Required:
- avddio-pex-supply: Power supply for analog PCIe logic. Must supply 1.05 V.
- - vddio-pex-supply: Power supply for digital PCIe I/O. Must supply 1.05 V.
+ - dvddio-pex-supply: Power supply for digital PCIe I/O. Must supply 1.05 V.
- avdd-pex-pll-supply: Power supply for dedicated (internal) PCIe PLL. Must
supply 1.05 V.
- hvdd-pex-supply: High-voltage supply for PCIe I/O and PCIe output clocks.
Must supply 3.3 V.
- - hvdd-pex-plle-supply: High-voltage supply for PLLE (shared with USB3).
+ - hvdd-pex-pll-e-supply: High-voltage supply for PLLE (shared with USB3).
Must supply 3.3 V.
- vddio-pex-ctl-supply: Power supply for PCIe control I/O partition. Must
supply 2.8-3.3 V.
- - avdd-plle-supply: Power supply for PLLE (shared with USB3). Must
+ - avdd-pll-erefe-supply: Power supply for PLLE (shared with USB3). Must
supply 1.05 V.
Root ports are defined as subnodes of the PCIe controller node.
diff --git a/drivers/pci/host/pci-tegra.c b/drivers/pci/host/pci-tegra.c
index e4fa82fdd7bb..0e5f342b1e9e 100644
--- a/drivers/pci/host/pci-tegra.c
+++ b/drivers/pci/host/pci-tegra.c
@@ -1570,12 +1570,12 @@ static int tegra_pcie_get_regulators(struct tegra_pcie *pcie, u32 lane_mask)
return -ENOMEM;
pcie->supplies[i++].supply = "avddio-pex";
- pcie->supplies[i++].supply = "vddio-pex";
+ pcie->supplies[i++].supply = "dvddio-pex";
pcie->supplies[i++].supply = "avdd-pex-pll";
pcie->supplies[i++].supply = "hvdd-pex";
- pcie->supplies[i++].supply = "hvdd-pex-plle";
+ pcie->supplies[i++].supply = "hvdd-pex-pll-e";
pcie->supplies[i++].supply = "vddio-pex-ctl";
- pcie->supplies[i++].supply = "avdd-plle";
+ pcie->supplies[i++].supply = "avdd-pll-erefe";
} else if (of_device_is_compatible(np, "nvidia,tegra30-pcie")) {
bool need_pexa = false, need_pexb = false;