blob: 1b20c3dbcdb89485afc1ff9f1c116d7c72127b7e [file] [log] [blame]
Laxman Dewangan684ae392012-05-11 12:08:43 +05301TPS62360 Voltage regulators
2
3Required properties:
4- compatible: Must be one of the following.
5 "ti,tps62360"
6 "ti,tps62361",
7 "ti,tps62362",
8 "ti,tps62363",
9- reg: I2C slave address
10
11Optional properties:
Laxman Dewangan684ae392012-05-11 12:08:43 +053012- ti,enable-vout-discharge: Enable output discharge. This is boolean value.
13- ti,enable-pull-down: Enable pull down. This is boolean value.
14- ti,vsel0-gpio: GPIO for controlling VSEL0 line.
15 If this property is missing, then assume that there is no GPIO
16 for vsel0 control.
17- ti,vsel1-gpio: Gpio for controlling VSEL1 line.
18 If this property is missing, then assume that there is no GPIO
19 for vsel1 control.
Masanari Iidaf21ccfa2013-01-14 15:14:56 +090020- ti,vsel0-state-high: Initial state of vsel0 input is high.
Laxman Dewangan684ae392012-05-11 12:08:43 +053021 If this property is missing, then assume the state as low (0).
Masanari Iidaf21ccfa2013-01-14 15:14:56 +090022- ti,vsel1-state-high: Initial state of vsel1 input is high.
Laxman Dewangan684ae392012-05-11 12:08:43 +053023 If this property is missing, then assume the state as low (0).
24
25Any property defined as part of the core regulator binding, defined in
26regulator.txt, can also be used.
27
28Example:
29
30 abc: tps62360 {
31 compatible = "ti,tps62361";
32 reg = <0x60>;
33 regulator-name = "tps62361-vout";
34 regulator-min-microvolt = <500000>;
35 regulator-max-microvolt = <1500000>;
36 regulator-boot-on
37 ti,vsel0-gpio = <&gpio1 16 0>;
38 ti,vsel1-gpio = <&gpio1 17 0>;
39 ti,vsel0-state-high;
40 ti,vsel1-state-high;
41 ti,enable-pull-down;
42 ti,enable-force-pwm;
43 ti,enable-vout-discharge;
44 };