hc
2023-10-25 6c2073b7aa40e29d0eca7d571dd7bc590c7ecaa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Marvell 88PM860x regulator
 
Required properties:
- compatible: "marvell,88pm860x"
- reg: I2C slave address
- regulators: A node that houses a sub-node for each regulator within the
  device. Each sub-node is identified using the regulator-compatible
  property, with valid values listed below.
 
Example:
 
   pmic: 88pm860x@34 {
       compatible = "marvell,88pm860x";
       reg = <0x34>;
 
       regulators {
           BUCK1 {
                   regulator-min-microvolt = <1000000>;
                   regulator-max-microvolt = <1500000>;
                   regulator-boot-on;
                   regulator-always-on;
           };
           BUCK3 {
                   regulator-min-microvolt = <1000000>;
                   regulator-max-microvolt = <3000000>;
                   regulator-boot-on;
                   regulator-always-on;
           };
       };
   };