xref: /freebsd-src/sys/contrib/device-tree/src/arm/allwinner/sun8i-a33-olinuxino.dts (revision f126890ac5386406dadf7c4cfa9566cbb56537c5)
1*f126890aSEmmanuel Vadot/*
2*f126890aSEmmanuel Vadot * Copyright 2016 - Stefan Mavrodiev <stefan.mavrodiev@gmail.com>
3*f126890aSEmmanuel Vadot *                  Olimex LTD. <support@olimex.com>
4*f126890aSEmmanuel Vadot *
5*f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms
6*f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual
7*f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a
8*f126890aSEmmanuel Vadot * whole.
9*f126890aSEmmanuel Vadot *
10*f126890aSEmmanuel Vadot *  a) This file is free software; you can redistribute it and/or
11*f126890aSEmmanuel Vadot *     modify it under the terms of the GNU General Public License as
12*f126890aSEmmanuel Vadot *     published by the Free Software Foundation; either version 2 of the
13*f126890aSEmmanuel Vadot *     License, or (at your option) any later version.
14*f126890aSEmmanuel Vadot *
15*f126890aSEmmanuel Vadot *     This file is distributed in the hope that it will be useful,
16*f126890aSEmmanuel Vadot *     but WITHOUT ANY WARRANTY; without even the implied warranty of
17*f126890aSEmmanuel Vadot *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*f126890aSEmmanuel Vadot *     GNU General Public License for more details.
19*f126890aSEmmanuel Vadot *
20*f126890aSEmmanuel Vadot * Or, alternatively,
21*f126890aSEmmanuel Vadot *
22*f126890aSEmmanuel Vadot *  b) Permission is hereby granted, free of charge, to any person
23*f126890aSEmmanuel Vadot *     obtaining a copy of this software and associated documentation
24*f126890aSEmmanuel Vadot *     files (the "Software"), to deal in the Software without
25*f126890aSEmmanuel Vadot *     restriction, including without limitation the rights to use,
26*f126890aSEmmanuel Vadot *     copy, modify, merge, publish, distribute, sublicense, and/or
27*f126890aSEmmanuel Vadot *     sell copies of the Software, and to permit persons to whom the
28*f126890aSEmmanuel Vadot *     Software is furnished to do so, subject to the following
29*f126890aSEmmanuel Vadot *     conditions:
30*f126890aSEmmanuel Vadot *
31*f126890aSEmmanuel Vadot *     The above copyright notice and this permission notice shall be
32*f126890aSEmmanuel Vadot *     included in all copies or substantial portions of the Software.
33*f126890aSEmmanuel Vadot *
34*f126890aSEmmanuel Vadot *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
35*f126890aSEmmanuel Vadot *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
36*f126890aSEmmanuel Vadot *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
37*f126890aSEmmanuel Vadot *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
38*f126890aSEmmanuel Vadot *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
39*f126890aSEmmanuel Vadot *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
40*f126890aSEmmanuel Vadot *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
41*f126890aSEmmanuel Vadot *     OTHER DEALINGS IN THE SOFTWARE.
42*f126890aSEmmanuel Vadot */
43*f126890aSEmmanuel Vadot
44*f126890aSEmmanuel Vadot/dts-v1/;
45*f126890aSEmmanuel Vadot#include "sun8i-a33.dtsi"
46*f126890aSEmmanuel Vadot
47*f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h>
48*f126890aSEmmanuel Vadot#include <dt-bindings/input/input.h>
49*f126890aSEmmanuel Vadot
50*f126890aSEmmanuel Vadot/ {
51*f126890aSEmmanuel Vadot	model = "Olimex A33-OLinuXino";
52*f126890aSEmmanuel Vadot	compatible = "olimex,a33-olinuxino","allwinner,sun8i-a33";
53*f126890aSEmmanuel Vadot
54*f126890aSEmmanuel Vadot	aliases {
55*f126890aSEmmanuel Vadot		serial0 = &uart0;
56*f126890aSEmmanuel Vadot	};
57*f126890aSEmmanuel Vadot
58*f126890aSEmmanuel Vadot	chosen {
59*f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
60*f126890aSEmmanuel Vadot	};
61*f126890aSEmmanuel Vadot
62*f126890aSEmmanuel Vadot	leds {
63*f126890aSEmmanuel Vadot		compatible = "gpio-leds";
64*f126890aSEmmanuel Vadot
65*f126890aSEmmanuel Vadot		led {
66*f126890aSEmmanuel Vadot			label = "a33-olinuxino:green:usr";
67*f126890aSEmmanuel Vadot			gpios = <&pio 1 7 GPIO_ACTIVE_HIGH>;
68*f126890aSEmmanuel Vadot		};
69*f126890aSEmmanuel Vadot	};
70*f126890aSEmmanuel Vadot};
71*f126890aSEmmanuel Vadot
72*f126890aSEmmanuel Vadot&codec {
73*f126890aSEmmanuel Vadot	status = "okay";
74*f126890aSEmmanuel Vadot};
75*f126890aSEmmanuel Vadot
76*f126890aSEmmanuel Vadot&dai {
77*f126890aSEmmanuel Vadot	status = "okay";
78*f126890aSEmmanuel Vadot};
79*f126890aSEmmanuel Vadot
80*f126890aSEmmanuel Vadot&ehci0 {
81*f126890aSEmmanuel Vadot	status = "okay";
82*f126890aSEmmanuel Vadot};
83*f126890aSEmmanuel Vadot
84*f126890aSEmmanuel Vadot&mmc0 {
85*f126890aSEmmanuel Vadot	vmmc-supply = <&reg_dcdc1>;
86*f126890aSEmmanuel Vadot	bus-width = <4>;
87*f126890aSEmmanuel Vadot	cd-gpios = <&pio 1 4 GPIO_ACTIVE_LOW>; /* PB4 */
88*f126890aSEmmanuel Vadot	status = "okay";
89*f126890aSEmmanuel Vadot};
90*f126890aSEmmanuel Vadot
91*f126890aSEmmanuel Vadot&ohci0 {
92*f126890aSEmmanuel Vadot	status = "okay";
93*f126890aSEmmanuel Vadot};
94*f126890aSEmmanuel Vadot
95*f126890aSEmmanuel Vadot&r_rsb {
96*f126890aSEmmanuel Vadot	status = "okay";
97*f126890aSEmmanuel Vadot
98*f126890aSEmmanuel Vadot	axp22x: pmic@3a3 {
99*f126890aSEmmanuel Vadot		compatible = "x-powers,axp223";
100*f126890aSEmmanuel Vadot		reg = <0x3a3>;
101*f126890aSEmmanuel Vadot		interrupt-parent = <&r_intc>;
102*f126890aSEmmanuel Vadot		interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_LOW>;
103*f126890aSEmmanuel Vadot		eldoin-supply = <&reg_dcdc1>;
104*f126890aSEmmanuel Vadot		x-powers,drive-vbus-en;
105*f126890aSEmmanuel Vadot	};
106*f126890aSEmmanuel Vadot};
107*f126890aSEmmanuel Vadot
108*f126890aSEmmanuel Vadot#include "axp223.dtsi"
109*f126890aSEmmanuel Vadot
110*f126890aSEmmanuel Vadot&ac_power_supply {
111*f126890aSEmmanuel Vadot	status = "okay";
112*f126890aSEmmanuel Vadot};
113*f126890aSEmmanuel Vadot
114*f126890aSEmmanuel Vadot&battery_power_supply {
115*f126890aSEmmanuel Vadot	status = "okay";
116*f126890aSEmmanuel Vadot};
117*f126890aSEmmanuel Vadot
118*f126890aSEmmanuel Vadot&reg_aldo1 {
119*f126890aSEmmanuel Vadot	regulator-always-on;
120*f126890aSEmmanuel Vadot	regulator-min-microvolt = <3300000>;
121*f126890aSEmmanuel Vadot	regulator-max-microvolt = <3300000>;
122*f126890aSEmmanuel Vadot	regulator-name = "vcc-io";
123*f126890aSEmmanuel Vadot};
124*f126890aSEmmanuel Vadot
125*f126890aSEmmanuel Vadot&reg_aldo2 {
126*f126890aSEmmanuel Vadot	regulator-always-on;
127*f126890aSEmmanuel Vadot	regulator-min-microvolt = <2350000>;
128*f126890aSEmmanuel Vadot	regulator-max-microvolt = <2650000>;
129*f126890aSEmmanuel Vadot	regulator-name = "vdd-dll";
130*f126890aSEmmanuel Vadot};
131*f126890aSEmmanuel Vadot
132*f126890aSEmmanuel Vadot&reg_aldo3 {
133*f126890aSEmmanuel Vadot	regulator-always-on;
134*f126890aSEmmanuel Vadot	regulator-min-microvolt = <3300000>;
135*f126890aSEmmanuel Vadot	regulator-max-microvolt = <3300000>;
136*f126890aSEmmanuel Vadot	regulator-name = "vcc-avcc";
137*f126890aSEmmanuel Vadot};
138*f126890aSEmmanuel Vadot
139*f126890aSEmmanuel Vadot&reg_dc1sw {
140*f126890aSEmmanuel Vadot	regulator-name = "vcc-lcd";
141*f126890aSEmmanuel Vadot};
142*f126890aSEmmanuel Vadot
143*f126890aSEmmanuel Vadot&reg_dc5ldo {
144*f126890aSEmmanuel Vadot	regulator-always-on;
145*f126890aSEmmanuel Vadot	regulator-min-microvolt = <900000>;
146*f126890aSEmmanuel Vadot	regulator-max-microvolt = <1400000>;
147*f126890aSEmmanuel Vadot	regulator-name = "vdd-cpus";
148*f126890aSEmmanuel Vadot};
149*f126890aSEmmanuel Vadot
150*f126890aSEmmanuel Vadot&reg_dcdc1 {
151*f126890aSEmmanuel Vadot	regulator-always-on;
152*f126890aSEmmanuel Vadot	regulator-min-microvolt = <3300000>;
153*f126890aSEmmanuel Vadot	regulator-max-microvolt = <3300000>;
154*f126890aSEmmanuel Vadot	regulator-name = "vcc-3v3";
155*f126890aSEmmanuel Vadot};
156*f126890aSEmmanuel Vadot
157*f126890aSEmmanuel Vadot&reg_dcdc2 {
158*f126890aSEmmanuel Vadot	regulator-always-on;
159*f126890aSEmmanuel Vadot	regulator-min-microvolt = <900000>;
160*f126890aSEmmanuel Vadot	regulator-max-microvolt = <1400000>;
161*f126890aSEmmanuel Vadot	regulator-name = "vdd-sys";
162*f126890aSEmmanuel Vadot};
163*f126890aSEmmanuel Vadot
164*f126890aSEmmanuel Vadot&reg_dcdc3 {
165*f126890aSEmmanuel Vadot	regulator-always-on;
166*f126890aSEmmanuel Vadot	regulator-min-microvolt = <900000>;
167*f126890aSEmmanuel Vadot	regulator-max-microvolt = <1400000>;
168*f126890aSEmmanuel Vadot	regulator-name = "vdd-cpu";
169*f126890aSEmmanuel Vadot};
170*f126890aSEmmanuel Vadot
171*f126890aSEmmanuel Vadot&reg_dcdc5 {
172*f126890aSEmmanuel Vadot	regulator-always-on;
173*f126890aSEmmanuel Vadot	regulator-min-microvolt = <1500000>;
174*f126890aSEmmanuel Vadot	regulator-max-microvolt = <1500000>;
175*f126890aSEmmanuel Vadot	regulator-name = "vcc-dram";
176*f126890aSEmmanuel Vadot};
177*f126890aSEmmanuel Vadot
178*f126890aSEmmanuel Vadot&reg_drivevbus {
179*f126890aSEmmanuel Vadot	regulator-name = "usb0-vbus";
180*f126890aSEmmanuel Vadot	status = "okay";
181*f126890aSEmmanuel Vadot};
182*f126890aSEmmanuel Vadot
183*f126890aSEmmanuel Vadot&reg_rtc_ldo {
184*f126890aSEmmanuel Vadot	regulator-name = "vcc-rtc";
185*f126890aSEmmanuel Vadot};
186*f126890aSEmmanuel Vadot
187*f126890aSEmmanuel Vadot&simplefb_lcd {
188*f126890aSEmmanuel Vadot	vcc-lcd-supply = <&reg_dc1sw>;
189*f126890aSEmmanuel Vadot};
190*f126890aSEmmanuel Vadot
191*f126890aSEmmanuel Vadot&sound {
192*f126890aSEmmanuel Vadot	/* Board level jack widgets */
193*f126890aSEmmanuel Vadot	simple-audio-card,widgets = "Microphone", "Microphone Jack",
194*f126890aSEmmanuel Vadot				    "Headphone", "Headphone Jack";
195*f126890aSEmmanuel Vadot	/* Board level routing. First 2 routes copied from SoC level */
196*f126890aSEmmanuel Vadot	simple-audio-card,routing =
197*f126890aSEmmanuel Vadot		"Left DAC", "DACL",
198*f126890aSEmmanuel Vadot		"Right DAC", "DACR",
199*f126890aSEmmanuel Vadot		"HP", "HPCOM",
200*f126890aSEmmanuel Vadot		"Headphone Jack", "HP",
201*f126890aSEmmanuel Vadot		"MIC1", "Microphone Jack",
202*f126890aSEmmanuel Vadot		"Microphone Jack", "MBIAS";
203*f126890aSEmmanuel Vadot	status = "okay";
204*f126890aSEmmanuel Vadot};
205*f126890aSEmmanuel Vadot
206*f126890aSEmmanuel Vadot&uart0 {
207*f126890aSEmmanuel Vadot	pinctrl-names = "default";
208*f126890aSEmmanuel Vadot	pinctrl-0 = <&uart0_pb_pins>;
209*f126890aSEmmanuel Vadot	status = "okay";
210*f126890aSEmmanuel Vadot};
211*f126890aSEmmanuel Vadot
212*f126890aSEmmanuel Vadot&usb_otg {
213*f126890aSEmmanuel Vadot	dr_mode = "otg";
214*f126890aSEmmanuel Vadot	status = "okay";
215*f126890aSEmmanuel Vadot};
216*f126890aSEmmanuel Vadot
217*f126890aSEmmanuel Vadot&usb_power_supply {
218*f126890aSEmmanuel Vadot	status = "okay";
219*f126890aSEmmanuel Vadot};
220*f126890aSEmmanuel Vadot
221*f126890aSEmmanuel Vadot&usbphy {
222*f126890aSEmmanuel Vadot	usb0_id_det-gpios = <&pio 1 3 GPIO_ACTIVE_HIGH>; /* PB3 */
223*f126890aSEmmanuel Vadot	usb0_vbus_power-supply = <&usb_power_supply>;
224*f126890aSEmmanuel Vadot	usb0_vbus-supply = <&reg_drivevbus>;
225*f126890aSEmmanuel Vadot	status = "okay";
226*f126890aSEmmanuel Vadot};
227