File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed
Documentation/devicetree/bindings/mfd Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ maintainers:
12
12
description : |
13
13
For device-tree bindings of other sub-modules refer to the binding documents
14
14
under the respective sub-system directories.
15
+ Using regulator-{uv,ov}-{warn,error,protection}-microvolt requires special
16
+ handling: First, when GP_FB2 is used, it must be ensured that there is no
17
+ moment where all voltage monitors are disabled. Next, as da9063 only supports
18
+ UV *and* OV monitoring, both must be set to the same severity and value
19
+ (0: disable, 1: enable).
15
20
16
21
properties :
17
22
compatible :
@@ -121,11 +126,19 @@ examples:
121
126
regulator-max-microamp = <2000000>;
122
127
regulator-boot-on;
123
128
};
129
+ ldo6 {
130
+ /* UNUSED */
131
+ regulator-name = "LDO_6";
132
+ regulator-uv-protection-microvolt = <0>;
133
+ regulator-ov-protection-microvolt = <0>;
134
+ };
124
135
ldo11 {
125
136
regulator-name = "LDO_11";
126
137
regulator-min-microvolt = <900000>;
127
- regulator-max-microvolt = <3600000>;
128
- regulator-boot-on;
138
+ regulator-max-microvolt = <900000>;
139
+ regulator-uv-protection-microvolt = <1>;
140
+ regulator-ov-protection-microvolt = <1>;
141
+ regulator-always-on;
129
142
};
130
143
};
131
144
};
You can’t perform that action at this time.
0 commit comments