Loading...
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
4 */
5
6/*
7 * Integrated Power Management Chip
8 */
9&twl {
10 compatible = "ti,twl4030";
11 interrupt-controller;
12 #interrupt-cells = <1>;
13
14 rtc {
15 compatible = "ti,twl4030-rtc";
16 interrupts = <11>;
17 };
18
19 charger: bci {
20 compatible = "ti,twl4030-bci";
21 interrupts = <9>, <2>;
22 bci3v1-supply = <&vusb3v1>;
23 io-channels = <&twl_madc 11>;
24 io-channel-names = "vac";
25 };
26
27 watchdog {
28 compatible = "ti,twl4030-wdt";
29 };
30
31 vaux1: regulator-vaux1 {
32 compatible = "ti,twl4030-vaux1";
33 };
34
35 vaux2: regulator-vaux2 {
36 compatible = "ti,twl4030-vaux2";
37 };
38
39 vaux3: regulator-vaux3 {
40 compatible = "ti,twl4030-vaux3";
41 };
42
43 vaux4: regulator-vaux4 {
44 compatible = "ti,twl4030-vaux4";
45 };
46
47 vcc: regulator-vdd1 {
48 compatible = "ti,twl4030-vdd1";
49 regulator-min-microvolt = <600000>;
50 regulator-max-microvolt = <1450000>;
51 };
52
53 vdac: regulator-vdac {
54 compatible = "ti,twl4030-vdac";
55 regulator-min-microvolt = <1800000>;
56 regulator-max-microvolt = <1800000>;
57 };
58
59 vio: regulator-vio {
60 compatible = "ti,twl4030-vio";
61 };
62
63 vintana1: regulator-vintana1 {
64 compatible = "ti,twl4030-vintana1";
65 };
66
67 vintana2: regulator-vintana2 {
68 compatible = "ti,twl4030-vintana2";
69 };
70
71 vintdig: regulator-vintdig {
72 compatible = "ti,twl4030-vintdig";
73 };
74
75 vmmc1: regulator-vmmc1 {
76 compatible = "ti,twl4030-vmmc1";
77 regulator-min-microvolt = <1850000>;
78 regulator-max-microvolt = <3150000>;
79 };
80
81 vmmc2: regulator-vmmc2 {
82 compatible = "ti,twl4030-vmmc2";
83 regulator-min-microvolt = <1850000>;
84 regulator-max-microvolt = <3150000>;
85 };
86
87 vusb1v5: regulator-vusb1v5 {
88 compatible = "ti,twl4030-vusb1v5";
89 };
90
91 vusb1v8: regulator-vusb1v8 {
92 compatible = "ti,twl4030-vusb1v8";
93 };
94
95 vusb3v1: regulator-vusb3v1 {
96 compatible = "ti,twl4030-vusb3v1";
97 };
98
99 vpll1: regulator-vpll1 {
100 compatible = "ti,twl4030-vpll1";
101 };
102
103 vpll2: regulator-vpll2 {
104 compatible = "ti,twl4030-vpll2";
105 regulator-min-microvolt = <1800000>;
106 regulator-max-microvolt = <1800000>;
107 };
108
109 vsim: regulator-vsim {
110 compatible = "ti,twl4030-vsim";
111 regulator-min-microvolt = <1800000>;
112 regulator-max-microvolt = <3000000>;
113 };
114
115 twl_gpio: gpio {
116 compatible = "ti,twl4030-gpio";
117 gpio-controller;
118 #gpio-cells = <2>;
119 interrupt-controller;
120 #interrupt-cells = <1>;
121 };
122
123 usb2_phy: twl4030-usb {
124 compatible = "ti,twl4030-usb";
125 interrupts = <10>, <4>;
126 usb1v5-supply = <&vusb1v5>;
127 usb1v8-supply = <&vusb1v8>;
128 usb3v1-supply = <&vusb3v1>;
129 usb_mode = <1>;
130 #phy-cells = <0>;
131 };
132
133 twl_pwm: pwm {
134 compatible = "ti,twl4030-pwm";
135 #pwm-cells = <2>;
136 };
137
138 twl_pwmled: pwmled {
139 compatible = "ti,twl4030-pwmled";
140 #pwm-cells = <2>;
141 };
142
143 twl_pwrbutton: pwrbutton {
144 compatible = "ti,twl4030-pwrbutton";
145 interrupts = <8>;
146 };
147
148 twl_keypad: keypad {
149 compatible = "ti,twl4030-keypad";
150 interrupts = <1>;
151 keypad,num-rows = <8>;
152 keypad,num-columns = <8>;
153 };
154
155 twl_madc: madc {
156 compatible = "ti,twl4030-madc";
157 interrupts = <3>;
158 #io-channel-cells = <1>;
159 };
160};
1/*
2 * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 */
8
9/*
10 * Integrated Power Management Chip
11 */
12&twl {
13 compatible = "ti,twl4030";
14 interrupt-controller;
15 #interrupt-cells = <1>;
16
17 rtc {
18 compatible = "ti,twl4030-rtc";
19 interrupts = <11>;
20 };
21
22 charger: bci {
23 compatible = "ti,twl4030-bci";
24 interrupts = <9>, <2>;
25 bci3v1-supply = <&vusb3v1>;
26 };
27
28 watchdog {
29 compatible = "ti,twl4030-wdt";
30 };
31
32 vaux1: regulator-vaux1 {
33 compatible = "ti,twl4030-vaux1";
34 };
35
36 vaux2: regulator-vaux2 {
37 compatible = "ti,twl4030-vaux2";
38 };
39
40 vaux3: regulator-vaux3 {
41 compatible = "ti,twl4030-vaux3";
42 };
43
44 vaux4: regulator-vaux4 {
45 compatible = "ti,twl4030-vaux4";
46 };
47
48 vcc: regulator-vdd1 {
49 compatible = "ti,twl4030-vdd1";
50 regulator-min-microvolt = <600000>;
51 regulator-max-microvolt = <1450000>;
52 };
53
54 vdac: regulator-vdac {
55 compatible = "ti,twl4030-vdac";
56 regulator-min-microvolt = <1800000>;
57 regulator-max-microvolt = <1800000>;
58 };
59
60 vio: regulator-vio {
61 compatible = "ti,twl4030-vio";
62 };
63
64 vintana1: regulator-vintana1 {
65 compatible = "ti,twl4030-vintana1";
66 };
67
68 vintana2: regulator-vintana2 {
69 compatible = "ti,twl4030-vintana2";
70 };
71
72 vintdig: regulator-vintdig {
73 compatible = "ti,twl4030-vintdig";
74 };
75
76 vmmc1: regulator-vmmc1 {
77 compatible = "ti,twl4030-vmmc1";
78 regulator-min-microvolt = <1850000>;
79 regulator-max-microvolt = <3150000>;
80 };
81
82 vmmc2: regulator-vmmc2 {
83 compatible = "ti,twl4030-vmmc2";
84 regulator-min-microvolt = <1850000>;
85 regulator-max-microvolt = <3150000>;
86 };
87
88 vusb1v5: regulator-vusb1v5 {
89 compatible = "ti,twl4030-vusb1v5";
90 };
91
92 vusb1v8: regulator-vusb1v8 {
93 compatible = "ti,twl4030-vusb1v8";
94 };
95
96 vusb3v1: regulator-vusb3v1 {
97 compatible = "ti,twl4030-vusb3v1";
98 };
99
100 vpll1: regulator-vpll1 {
101 compatible = "ti,twl4030-vpll1";
102 };
103
104 vpll2: regulator-vpll2 {
105 compatible = "ti,twl4030-vpll2";
106 regulator-min-microvolt = <1800000>;
107 regulator-max-microvolt = <1800000>;
108 };
109
110 vsim: regulator-vsim {
111 compatible = "ti,twl4030-vsim";
112 regulator-min-microvolt = <1800000>;
113 regulator-max-microvolt = <3000000>;
114 };
115
116 twl_gpio: gpio {
117 compatible = "ti,twl4030-gpio";
118 gpio-controller;
119 #gpio-cells = <2>;
120 interrupt-controller;
121 #interrupt-cells = <1>;
122 };
123
124 usb2_phy: twl4030-usb {
125 compatible = "ti,twl4030-usb";
126 interrupts = <10>, <4>;
127 usb1v5-supply = <&vusb1v5>;
128 usb1v8-supply = <&vusb1v8>;
129 usb3v1-supply = <&vusb3v1>;
130 usb_mode = <1>;
131 #phy-cells = <0>;
132 };
133
134 twl_pwm: pwm {
135 compatible = "ti,twl4030-pwm";
136 #pwm-cells = <2>;
137 };
138
139 twl_pwmled: pwmled {
140 compatible = "ti,twl4030-pwmled";
141 #pwm-cells = <2>;
142 };
143
144 twl_pwrbutton: pwrbutton {
145 compatible = "ti,twl4030-pwrbutton";
146 interrupts = <8>;
147 };
148
149 twl_keypad: keypad {
150 compatible = "ti,twl4030-keypad";
151 interrupts = <1>;
152 keypad,num-rows = <8>;
153 keypad,num-columns = <8>;
154 };
155
156 twl_madc: madc {
157 compatible = "ti,twl4030-madc";
158 interrupts = <3>;
159 #io-channel-cells = <1>;
160 };
161};