File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Documentation/devicetree/bindings/firmware Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,15 @@ properties:
27
27
mboxes :
28
28
maxItems : 1
29
29
30
+ pmic :
31
+ description : Child node describing the main PMIC.
32
+ type : object
33
+ additionalProperties : true
34
+
35
+ properties :
36
+ compatible :
37
+ const : samsung,s2mpg10-pmic
38
+
30
39
shmem :
31
40
description :
32
41
List of phandle pointing to the shared memory (SHM) area. The memory
@@ -43,8 +52,34 @@ additionalProperties: false
43
52
44
53
examples :
45
54
- |
55
+ #include <dt-bindings/interrupt-controller/irq.h>
56
+
46
57
power-management {
47
58
compatible = "google,gs101-acpm-ipc";
48
59
mboxes = <&ap2apm_mailbox>;
49
60
shmem = <&apm_sram>;
61
+
62
+ pmic {
63
+ compatible = "samsung,s2mpg10-pmic";
64
+ interrupts-extended = <&gpa0 6 IRQ_TYPE_LEVEL_LOW>;
65
+
66
+ regulators {
67
+ LDO1 {
68
+ regulator-name = "vdd_ldo1";
69
+ regulator-min-microvolt = <700000>;
70
+ regulator-max-microvolt = <1300000>;
71
+ regulator-always-on;
72
+ };
73
+
74
+ // ...
75
+
76
+ BUCK1 {
77
+ regulator-name = "vdd_mif";
78
+ regulator-min-microvolt = <450000>;
79
+ regulator-max-microvolt = <1300000>;
80
+ regulator-always-on;
81
+ regulator-boot-on;
82
+ };
83
+ };
84
+ };
50
85
};
You can’t perform that action at this time.
0 commit comments