File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
Documentation/devicetree/bindings/hwmon/pmbus Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,23 @@ properties:
30
30
unconnected(has internal pull-down).
31
31
type : boolean
32
32
33
+ interrupts :
34
+ maxItems : 1
35
+
36
+ regulators :
37
+ type : object
38
+ description :
39
+ list of regulators provided by this controller.
40
+
41
+ properties :
42
+ vout :
43
+ $ref : /schemas/regulator/regulator.yaml#
44
+ type : object
45
+
46
+ unevaluatedProperties : false
47
+
48
+ additionalProperties : false
49
+
33
50
required :
34
51
- compatible
35
52
- reg
@@ -38,12 +55,23 @@ additionalProperties: false
38
55
39
56
examples :
40
57
- |
58
+ #include <dt-bindings/interrupt-controller/irq.h>
41
59
i2c {
42
60
#address-cells = <1>;
43
61
#size-cells = <0>;
44
62
45
63
tda38640@40 {
46
64
compatible = "infineon,tda38640";
47
65
reg = <0x40>;
66
+
67
+ interrupt-parent = <&smb_pex_cpu0_event>;
68
+ interrupts = <10 IRQ_TYPE_LEVEL_LOW>;
69
+
70
+ regulators {
71
+ pvnn_main_cpu0: vout {
72
+ regulator-name = "pvnn_main_cpu0";
73
+ regulator-enable-ramp-delay = <200>;
74
+ };
75
+ };
48
76
};
49
77
};
You can’t perform that action at this time.
0 commit comments