xref: /freebsd-src/sys/contrib/device-tree/src/arm/allwinner/axp22x.dtsi (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot/*
2*f126890aSEmmanuel Vadot * Copyright 2015 Chen-Yu Tsai
3*f126890aSEmmanuel Vadot *
4*f126890aSEmmanuel Vadot * Chen-Yu Tsai <wens@csie.org>
5*f126890aSEmmanuel Vadot *
6*f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms
7*f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual
8*f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a
9*f126890aSEmmanuel Vadot * whole.
10*f126890aSEmmanuel Vadot *
11*f126890aSEmmanuel Vadot *  a) This file is free software; you can redistribute it and/or
12*f126890aSEmmanuel Vadot *     modify it under the terms of the GNU General Public License as
13*f126890aSEmmanuel Vadot *     published by the Free Software Foundation; either version 2 of the
14*f126890aSEmmanuel Vadot *     License, or (at your option) any later version.
15*f126890aSEmmanuel Vadot *
16*f126890aSEmmanuel Vadot *     This file is distributed in the hope that it will be useful,
17*f126890aSEmmanuel Vadot *     but WITHOUT ANY WARRANTY; without even the implied warranty of
18*f126890aSEmmanuel Vadot *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19*f126890aSEmmanuel Vadot *     GNU General Public License for more details.
20*f126890aSEmmanuel Vadot *
21*f126890aSEmmanuel Vadot * Or, alternatively,
22*f126890aSEmmanuel Vadot *
23*f126890aSEmmanuel Vadot *  b) Permission is hereby granted, free of charge, to any person
24*f126890aSEmmanuel Vadot *     obtaining a copy of this software and associated documentation
25*f126890aSEmmanuel Vadot *     files (the "Software"), to deal in the Software without
26*f126890aSEmmanuel Vadot *     restriction, including without limitation the rights to use,
27*f126890aSEmmanuel Vadot *     copy, modify, merge, publish, distribute, sublicense, and/or
28*f126890aSEmmanuel Vadot *     sell copies of the Software, and to permit persons to whom the
29*f126890aSEmmanuel Vadot *     Software is furnished to do so, subject to the following
30*f126890aSEmmanuel Vadot *     conditions:
31*f126890aSEmmanuel Vadot *
32*f126890aSEmmanuel Vadot *     The above copyright notice and this permission notice shall be
33*f126890aSEmmanuel Vadot *     included in all copies or substantial portions of the Software.
34*f126890aSEmmanuel Vadot *
35*f126890aSEmmanuel Vadot *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
36*f126890aSEmmanuel Vadot *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
37*f126890aSEmmanuel Vadot *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
38*f126890aSEmmanuel Vadot *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
39*f126890aSEmmanuel Vadot *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
40*f126890aSEmmanuel Vadot *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
41*f126890aSEmmanuel Vadot *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
42*f126890aSEmmanuel Vadot *     OTHER DEALINGS IN THE SOFTWARE.
43*f126890aSEmmanuel Vadot */
44*f126890aSEmmanuel Vadot
45*f126890aSEmmanuel Vadot/*
46*f126890aSEmmanuel Vadot * AXP221/221s/223 Integrated Power Management Chip
47*f126890aSEmmanuel Vadot * http://www.x-powers.com/product/AXP22X.php
48*f126890aSEmmanuel Vadot * http://dl.linux-sunxi.org/AXP/AXP221%20Datasheet%20V1.2%2020130326%20.pdf
49*f126890aSEmmanuel Vadot */
50*f126890aSEmmanuel Vadot
51*f126890aSEmmanuel Vadot&axp22x {
52*f126890aSEmmanuel Vadot	interrupt-controller;
53*f126890aSEmmanuel Vadot	#interrupt-cells = <1>;
54*f126890aSEmmanuel Vadot
55*f126890aSEmmanuel Vadot	ac_power_supply: ac-power {
56*f126890aSEmmanuel Vadot		compatible = "x-powers,axp221-ac-power-supply";
57*f126890aSEmmanuel Vadot		status = "disabled";
58*f126890aSEmmanuel Vadot	};
59*f126890aSEmmanuel Vadot
60*f126890aSEmmanuel Vadot	axp_adc: adc {
61*f126890aSEmmanuel Vadot		compatible = "x-powers,axp221-adc";
62*f126890aSEmmanuel Vadot		#io-channel-cells = <1>;
63*f126890aSEmmanuel Vadot	};
64*f126890aSEmmanuel Vadot
65*f126890aSEmmanuel Vadot	battery_power_supply: battery-power {
66*f126890aSEmmanuel Vadot		compatible = "x-powers,axp221-battery-power-supply";
67*f126890aSEmmanuel Vadot		status = "disabled";
68*f126890aSEmmanuel Vadot	};
69*f126890aSEmmanuel Vadot
70*f126890aSEmmanuel Vadot	axp_gpio: gpio {
71*f126890aSEmmanuel Vadot		compatible = "x-powers,axp221-gpio";
72*f126890aSEmmanuel Vadot		gpio-controller;
73*f126890aSEmmanuel Vadot		#gpio-cells = <2>;
74*f126890aSEmmanuel Vadot	};
75*f126890aSEmmanuel Vadot
76*f126890aSEmmanuel Vadot	regulators {
77*f126890aSEmmanuel Vadot		/* Default work frequency for buck regulators */
78*f126890aSEmmanuel Vadot		x-powers,dcdc-freq = <3000>;
79*f126890aSEmmanuel Vadot
80*f126890aSEmmanuel Vadot		reg_dcdc1: dcdc1 {
81*f126890aSEmmanuel Vadot			regulator-name = "dcdc1";
82*f126890aSEmmanuel Vadot		};
83*f126890aSEmmanuel Vadot
84*f126890aSEmmanuel Vadot		reg_dcdc2: dcdc2 {
85*f126890aSEmmanuel Vadot			regulator-name = "dcdc2";
86*f126890aSEmmanuel Vadot		};
87*f126890aSEmmanuel Vadot
88*f126890aSEmmanuel Vadot		reg_dcdc3: dcdc3 {
89*f126890aSEmmanuel Vadot			regulator-name = "dcdc3";
90*f126890aSEmmanuel Vadot		};
91*f126890aSEmmanuel Vadot
92*f126890aSEmmanuel Vadot		reg_dcdc4: dcdc4 {
93*f126890aSEmmanuel Vadot			regulator-name = "dcdc4";
94*f126890aSEmmanuel Vadot		};
95*f126890aSEmmanuel Vadot
96*f126890aSEmmanuel Vadot		reg_dcdc5: dcdc5 {
97*f126890aSEmmanuel Vadot			regulator-name = "dcdc5";
98*f126890aSEmmanuel Vadot		};
99*f126890aSEmmanuel Vadot
100*f126890aSEmmanuel Vadot		reg_dc1sw: dc1sw {
101*f126890aSEmmanuel Vadot			regulator-name = "dc1sw";
102*f126890aSEmmanuel Vadot		};
103*f126890aSEmmanuel Vadot
104*f126890aSEmmanuel Vadot		reg_dc5ldo: dc5ldo {
105*f126890aSEmmanuel Vadot			regulator-name = "dc5ldo";
106*f126890aSEmmanuel Vadot		};
107*f126890aSEmmanuel Vadot
108*f126890aSEmmanuel Vadot		reg_aldo1: aldo1 {
109*f126890aSEmmanuel Vadot			regulator-name = "aldo1";
110*f126890aSEmmanuel Vadot		};
111*f126890aSEmmanuel Vadot
112*f126890aSEmmanuel Vadot		reg_aldo2: aldo2 {
113*f126890aSEmmanuel Vadot			regulator-name = "aldo2";
114*f126890aSEmmanuel Vadot		};
115*f126890aSEmmanuel Vadot
116*f126890aSEmmanuel Vadot		reg_aldo3: aldo3 {
117*f126890aSEmmanuel Vadot			regulator-name = "aldo3";
118*f126890aSEmmanuel Vadot		};
119*f126890aSEmmanuel Vadot
120*f126890aSEmmanuel Vadot		reg_dldo1: dldo1 {
121*f126890aSEmmanuel Vadot			regulator-name = "dldo1";
122*f126890aSEmmanuel Vadot		};
123*f126890aSEmmanuel Vadot
124*f126890aSEmmanuel Vadot		reg_dldo2: dldo2 {
125*f126890aSEmmanuel Vadot			regulator-name = "dldo2";
126*f126890aSEmmanuel Vadot		};
127*f126890aSEmmanuel Vadot
128*f126890aSEmmanuel Vadot		reg_dldo3: dldo3 {
129*f126890aSEmmanuel Vadot			regulator-name = "dldo3";
130*f126890aSEmmanuel Vadot		};
131*f126890aSEmmanuel Vadot
132*f126890aSEmmanuel Vadot		reg_dldo4: dldo4 {
133*f126890aSEmmanuel Vadot			regulator-name = "dldo4";
134*f126890aSEmmanuel Vadot		};
135*f126890aSEmmanuel Vadot
136*f126890aSEmmanuel Vadot		reg_eldo1: eldo1 {
137*f126890aSEmmanuel Vadot			regulator-name = "eldo1";
138*f126890aSEmmanuel Vadot		};
139*f126890aSEmmanuel Vadot
140*f126890aSEmmanuel Vadot		reg_eldo2: eldo2 {
141*f126890aSEmmanuel Vadot			regulator-name = "eldo2";
142*f126890aSEmmanuel Vadot		};
143*f126890aSEmmanuel Vadot
144*f126890aSEmmanuel Vadot		reg_eldo3: eldo3 {
145*f126890aSEmmanuel Vadot			regulator-name = "eldo3";
146*f126890aSEmmanuel Vadot		};
147*f126890aSEmmanuel Vadot
148*f126890aSEmmanuel Vadot		reg_ldo_io0: ldo_io0 {
149*f126890aSEmmanuel Vadot			regulator-name = "ldo_io0";
150*f126890aSEmmanuel Vadot			status = "disabled";
151*f126890aSEmmanuel Vadot		};
152*f126890aSEmmanuel Vadot
153*f126890aSEmmanuel Vadot		reg_ldo_io1: ldo_io1 {
154*f126890aSEmmanuel Vadot			regulator-name = "ldo_io1";
155*f126890aSEmmanuel Vadot			status = "disabled";
156*f126890aSEmmanuel Vadot		};
157*f126890aSEmmanuel Vadot
158*f126890aSEmmanuel Vadot		reg_rtc_ldo: rtc_ldo {
159*f126890aSEmmanuel Vadot			/* RTC_LDO is a fixed, always-on regulator */
160*f126890aSEmmanuel Vadot			regulator-always-on;
161*f126890aSEmmanuel Vadot			regulator-min-microvolt = <3000000>;
162*f126890aSEmmanuel Vadot			regulator-max-microvolt = <3000000>;
163*f126890aSEmmanuel Vadot			regulator-name = "rtc_ldo";
164*f126890aSEmmanuel Vadot		};
165*f126890aSEmmanuel Vadot
166*f126890aSEmmanuel Vadot		reg_drivevbus: drivevbus {
167*f126890aSEmmanuel Vadot			regulator-name = "drivevbus";
168*f126890aSEmmanuel Vadot			status = "disabled";
169*f126890aSEmmanuel Vadot		};
170*f126890aSEmmanuel Vadot	};
171*f126890aSEmmanuel Vadot
172*f126890aSEmmanuel Vadot	usb_power_supply: usb-power {
173*f126890aSEmmanuel Vadot		compatible = "x-powers,axp221-usb-power-supply";
174*f126890aSEmmanuel Vadot		status = "disabled";
175*f126890aSEmmanuel Vadot	};
176*f126890aSEmmanuel Vadot};
177