tps6586x.txt 3.3 KB
Newer Older
1 2 3 4 5 6 7 8
TPS6586x family of regulators

Required properties:
- compatible: "ti,tps6586x"
- reg: I2C slave address
- interrupts: the interrupt outputs of the controller
- #gpio-cells: number of cells to describe a GPIO
- gpio-controller: mark the device as a GPIO controller
9 10 11 12 13
- regulators: A node that houses a sub-node for each regulator within the
  device. Each sub-node is identified using the node's name (or the deprecated
  regulator-compatible property if present), with valid values listed below.
  The content of each sub-node is defined by the standard binding for
  regulators; see regulator.txt.
14 15
  sys, sm[0-2], ldo[0-9] and ldo_rtc
- sys-supply: The input supply for SYS.
16 17 18
- vin-sm0-supply: The input supply for the SM0.
- vin-sm1-supply: The input supply for the SM1.
- vin-sm2-supply: The input supply for the SM2.
19 20 21 22 23
- vinldo01-supply: The input supply for the LDO1 and LDO2
- vinldo23-supply: The input supply for the LDO2 and LDO3
- vinldo4-supply: The input supply for the LDO4
- vinldo678-supply: The input supply for the LDO6, LDO7 and LDO8
- vinldo9-supply: The input supply for the LDO9
24 25 26

Each regulator is defined using the standard binding for regulators.

27 28 29
Note: LDO5 and LDO_RTC is supplied by SYS regulator internally and driver
      take care of making proper parent child relationship.

30 31 32 33 34 35 36 37 38 39
Example:

	pmu: tps6586x@34 {
		compatible = "ti,tps6586x";
		reg = <0x34>;
		interrupts = <0 88 0x4>;

		#gpio-cells = <2>;
		gpio-controller;

40
		sys-supply = <&some_reg>;
41 42 43
		vin-sm0-supply = <&some_reg>;
		vin-sm1-supply = <&some_reg>;
		vin-sm2-supply = <&some_reg>;
44 45 46 47 48 49
		vinldo01-supply = <...>;
		vinldo23-supply = <...>;
		vinldo4-supply = <...>;
		vinldo678-supply = <...>;
		vinldo9-supply = <...>;

50
		regulators {
51
			sys_reg: sys {
52 53 54 55 56
				regulator-name = "vdd_sys";
				regulator-boot-on;
				regulator-always-on;
			};

57
			sm0_reg: sm0 {
58 59 60 61 62 63
				regulator-min-microvolt = < 725000>;
				regulator-max-microvolt = <1500000>;
				regulator-boot-on;
				regulator-always-on;
			};

64
			sm1_reg: sm1 {
65 66 67 68 69 70
				regulator-min-microvolt = < 725000>;
				regulator-max-microvolt = <1500000>;
				regulator-boot-on;
				regulator-always-on;
			};

71
			sm2_reg: sm2 {
72 73 74 75 76 77
				regulator-min-microvolt = <3000000>;
				regulator-max-microvolt = <4550000>;
				regulator-boot-on;
				regulator-always-on;
			};

78
			ldo0_reg: ldo0 {
79 80 81 82 83
				regulator-name = "PCIE CLK";
				regulator-min-microvolt = <3300000>;
				regulator-max-microvolt = <3300000>;
			};

84
			ldo1_reg: ldo1 {
85 86 87 88
				regulator-min-microvolt = < 725000>;
				regulator-max-microvolt = <1500000>;
			};

89
			ldo2_reg: ldo2 {
90 91 92 93
				regulator-min-microvolt = < 725000>;
				regulator-max-microvolt = <1500000>;
			};

94
			ldo3_reg: ldo3 {
95 96 97 98
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};

99
			ldo4_reg: ldo4 {
100 101 102 103
				regulator-min-microvolt = <1700000>;
				regulator-max-microvolt = <2475000>;
			};

104
			ldo5_reg: ldo5 {
105 106 107 108
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};

109
			ldo6_reg: ldo6 {
110 111 112 113
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};

114
			ldo7_reg: ldo7 {
115 116 117 118
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};

119
			ldo8_reg: ldo8 {
120 121 122 123
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};

124
			ldo9_reg: ldo9 {
125 126 127 128 129
				regulator-min-microvolt = <1250000>;
				regulator-max-microvolt = <3300000>;
			};
		};
	};