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

TOMOYO Linux Cross Reference
Linux/Documentation/devicetree/bindings/regulator/pv88060.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 * Powerventure Semiconductor PV88060 Voltage Regulator
  2 
  3 Required properties:
  4 - compatible: "pvs,pv88060".
  5 - reg: I2C slave address, usually 0x49.
  6 - interrupts: the interrupt outputs of the controller
  7 - regulators: A node that houses a sub-node for each regulator within the
  8   device. Each sub-node is identified using the node's name, with valid
  9   values listed below. The content of each sub-node is defined by the
 10   standard binding for regulators; see regulator.txt.
 11   BUCK1, LDO1, LDO2, LDO3, LDO4, LDO5, LDO6, LDO7, SW1, SW2, SW3, SW4,
 12   SW5, and SW6.
 13 
 14 Optional properties:
 15 - Any optional property defined in regulator.txt
 16 
 17 Example
 18 
 19         pmic: pv88060@49 {
 20                 compatible = "pvs,pv88060";
 21                 reg = <0x49>;
 22                 interrupt-parent = <&gpio>;
 23                 interrupts = <24 24>;
 24 
 25                 regulators {
 26                         BUCK1 {
 27                                 regulator-name = "buck1";
 28                                 regulator-min-microvolt = <2800000>;
 29                                 regulator-max-microvolt = <4387500>;
 30                                 regulator-min-microamp  = <1496000>;
 31                                 regulator-max-microamp  = <4189000>;
 32                                 regulator-boot-on;
 33                         };
 34 
 35                         LDO1 {
 36                                 regulator-name = "ldo1";
 37                                 regulator-min-microvolt = <1200000>;
 38                                 regulator-max-microvolt = <3350000>;
 39                                 regulator-boot-on;
 40                         };
 41 
 42                         LDO2 {
 43                                 regulator-name = "ldo2";
 44                                 regulator-min-microvolt = <1200000>;
 45                                 regulator-max-microvolt = <3350000>;
 46                                 regulator-boot-on;
 47                         };
 48 
 49                         LDO3 {
 50                                 regulator-name = "ldo3";
 51                                 regulator-min-microvolt = <1200000>;
 52                                 regulator-max-microvolt = <3350000>;
 53                                 regulator-boot-on;
 54                         };
 55 
 56                         LDO4 {
 57                                 regulator-name = "ldo4";
 58                                 regulator-min-microvolt = <1200000>;
 59                                 regulator-max-microvolt = <3350000>;
 60                                 regulator-boot-on;
 61                         };
 62 
 63                         LDO5 {
 64                                 regulator-name = "ldo5";
 65                                 regulator-min-microvolt = <1200000>;
 66                                 regulator-max-microvolt = <3350000>;
 67                                 regulator-boot-on;
 68                         };
 69 
 70                         LDO6 {
 71                                 regulator-name = "ldo6";
 72                                 regulator-min-microvolt = <1200000>;
 73                                 regulator-max-microvolt = <3350000>;
 74                                 regulator-boot-on;
 75                         };
 76 
 77                         LDO7 {
 78                                 regulator-name = "ldo7";
 79                                 regulator-min-microvolt = <1200000>;
 80                                 regulator-max-microvolt = <3350000>;
 81                                 regulator-boot-on;
 82                         };
 83 
 84                         SW1 {
 85                                 regulator-name = "sw1";
 86                                 regulator-min-microvolt = <5000000>;
 87                                 regulator-max-microvolt = <5000000>;
 88                         };
 89 
 90                         SW2 {
 91                                 regulator-name = "sw2";
 92                                 regulator-min-microvolt = <5000000>;
 93                                 regulator-max-microvolt = <5000000>;
 94                                 regulator-boot-on;
 95                         };
 96 
 97                         SW3 {
 98                                 regulator-name = "sw3";
 99                                 regulator-min-microvolt = <5000000>;
100                                 regulator-max-microvolt = <5000000>;
101                                 regulator-boot-on;
102                         };
103 
104                         SW4 {
105                                 regulator-name = "sw4";
106                                 regulator-min-microvolt = <5000000>;
107                                 regulator-max-microvolt = <5000000>;
108                                 regulator-boot-on;
109                         };
110 
111                         SW5 {
112                                 regulator-name = "sw5";
113                                 regulator-min-microvolt = <5000000>;
114                                 regulator-max-microvolt = <5000000>;
115                                 regulator-boot-on;
116                         };
117 
118                         SW6 {
119                                 regulator-name = "sw6";
120                                 regulator-min-microvolt = <5000000>;
121                                 regulator-max-microvolt = <5000000>;
122                         };
123                 };
124         };

~ [ 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