hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
Maxim MAX1586 voltage regulator
 
Required properties:
- compatible: must be "maxim,max1586"
- reg: I2C slave address, usually 0x14
- v3-gain: integer specifying the V3 gain as per datasheet
           (1 + R24/R25 + R24/185.5kOhm)
- any required generic properties defined in regulator.txt
 
Example:
 
   i2c_master {
       max1586@14 {
           compatible = "maxim,max1586";
           reg = <0x14>;
           v3-gain = <1000000>;
 
           regulators {
               vcc_core: v3 {
                   regulator-name = "vcc_core";
                   regulator-compatible = "Output_V3";
                   regulator-min-microvolt = <1000000>;
                   regulator-max-microvolt = <1705000>;
                   regulator-always-on;
               };
           };
       };
   };