Regulators defined at the top level in device tree are no longer part of a simple bus and therefore don't have a reg property. Nodes without a reg property shouldn't have a unit-address either, so drop the unit address from the node names. To ensure nodes aren't duplicated (in which case they would end up merged in the final DTB), append the name of the regulator to the node name. [treding@nvidia.com: factored out patch and wrote commit message] Signed-off-by: David Heidelberg <david@ixit.cz> Co-developed-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
93 lines
2.4 KiB
Text
93 lines
2.4 KiB
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/dts-v1/;
|
|
|
|
#include "tegra30-cardhu.dtsi"
|
|
|
|
/* This dts file support the cardhu A04 and later versions of board */
|
|
|
|
/ {
|
|
model = "NVIDIA Tegra30 Cardhu A04 (A05, A06, A07) evaluation board";
|
|
compatible = "nvidia,cardhu-a04", "nvidia,cardhu", "nvidia,tegra30";
|
|
|
|
mmc@78000400 {
|
|
status = "okay";
|
|
power-gpios = <&gpio TEGRA_GPIO(D, 3) GPIO_ACTIVE_HIGH>;
|
|
bus-width = <4>;
|
|
keep-power-in-suspend;
|
|
};
|
|
|
|
ddr_reg: regulator-ddr {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "ddr";
|
|
regulator-min-microvolt = <1500000>;
|
|
regulator-max-microvolt = <1500000>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
enable-active-high;
|
|
gpio = <&pmic 7 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
sys_3v3_reg: regulator-3v3 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "sys_3v3";
|
|
regulator-min-microvolt = <3300000>;
|
|
regulator-max-microvolt = <3300000>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
enable-active-high;
|
|
gpio = <&pmic 6 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
usb1_vbus_reg: regulator-usb1 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "usb1_vbus";
|
|
regulator-min-microvolt = <5000000>;
|
|
regulator-max-microvolt = <5000000>;
|
|
enable-active-high;
|
|
gpio = <&gpio TEGRA_GPIO(DD, 6) GPIO_ACTIVE_HIGH>;
|
|
gpio-open-drain;
|
|
vin-supply = <&vdd_5v0_reg>;
|
|
};
|
|
|
|
usb3_vbus_reg: regulator-usb3 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "usb3_vbus";
|
|
regulator-min-microvolt = <5000000>;
|
|
regulator-max-microvolt = <5000000>;
|
|
enable-active-high;
|
|
gpio = <&gpio TEGRA_GPIO(DD, 4) GPIO_ACTIVE_HIGH>;
|
|
gpio-open-drain;
|
|
vin-supply = <&vdd_5v0_reg>;
|
|
};
|
|
|
|
vdd_5v0_reg: regulator-5v0 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "5v0";
|
|
regulator-min-microvolt = <5000000>;
|
|
regulator-max-microvolt = <5000000>;
|
|
enable-active-high;
|
|
gpio = <&pmic 8 GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
vdd_bl_reg: regulator-bl {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "vdd_bl";
|
|
regulator-min-microvolt = <5000000>;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
enable-active-high;
|
|
gpio = <&gpio TEGRA_GPIO(DD, 2) GPIO_ACTIVE_HIGH>;
|
|
};
|
|
|
|
vdd_bl2_reg: regulator-bl2 {
|
|
compatible = "regulator-fixed";
|
|
regulator-name = "vdd_bl2";
|
|
regulator-min-microvolt = <5000000>;
|
|
regulator-max-microvolt = <5000000>;
|
|
regulator-always-on;
|
|
regulator-boot-on;
|
|
enable-active-high;
|
|
gpio = <&gpio TEGRA_GPIO(DD, 0) GPIO_ACTIVE_HIGH>;
|
|
};
|
|
};
|