~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/regulator/nvidia,tegra-regulators-coupling.txt

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 NVIDIA Tegra Regulators Coupling
  2 ================================
  3 
  4 NVIDIA Tegra SoC's have a mandatory voltage-coupling between regulators.
  5 Thus on Tegra20 there are 3 coupled regulators and on NVIDIA Tegra30
  6 there are 2.
  7 
  8 Tegra20 voltage coupling
  9 ------------------------
 10 
 11 On Tegra20 SoC's there are 3 coupled regulators: CORE, RTC and CPU.
 12 The CORE and RTC voltages shall be in a range of 170mV from each other
 13 and they both shall be higher than the CPU voltage by at least 120mV.
 14 
 15 Tegra30 voltage coupling
 16 ------------------------
 17 
 18 On Tegra30 SoC's there are 2 coupled regulators: CORE and CPU. The CORE
 19 and CPU voltages shall be in a range of 300mV from each other and CORE
 20 voltage shall be higher than the CPU by N mV, where N depends on the CPU
 21 voltage.
 22 
 23 Required properties:
 24 - nvidia,tegra-core-regulator: Boolean property that designates regulator
 25   as the "Core domain" voltage regulator.
 26 - nvidia,tegra-rtc-regulator: Boolean property that designates regulator
 27   as the "RTC domain" voltage regulator.
 28 - nvidia,tegra-cpu-regulator: Boolean property that designates regulator
 29   as the "CPU domain" voltage regulator.
 30 
 31 Example:
 32 
 33         pmic {
 34                 regulators {
 35                         core_vdd_reg: core {
 36                                 regulator-name = "vdd_core";
 37                                 regulator-min-microvolt = <950000>;
 38                                 regulator-max-microvolt = <1300000>;
 39                                 regulator-coupled-with = <&rtc_vdd_reg &cpu_vdd_reg>;
 40                                 regulator-coupled-max-spread = <170000 550000>;
 41 
 42                                 nvidia,tegra-core-regulator;
 43                         };
 44 
 45                         rtc_vdd_reg: rtc {
 46                                 regulator-name = "vdd_rtc";
 47                                 regulator-min-microvolt = <950000>;
 48                                 regulator-max-microvolt = <1300000>;
 49                                 regulator-coupled-with = <&core_vdd_reg &cpu_vdd_reg>;
 50                                 regulator-coupled-max-spread = <170000 550000>;
 51 
 52                                 nvidia,tegra-rtc-regulator;
 53                         };
 54 
 55                         cpu_vdd_reg: cpu {
 56                                 regulator-name = "vdd_cpu";
 57                                 regulator-min-microvolt = <750000>;
 58                                 regulator-max-microvolt = <1125000>;
 59                                 regulator-coupled-with = <&core_vdd_reg &rtc_vdd_reg>;
 60                                 regulator-coupled-max-spread = <550000 550000>;
 61 
 62                                 nvidia,tegra-cpu-regulator;
 63                         };
 64                 };
 65         };

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php