xref: /freebsd-src/sys/contrib/device-tree/src/arm/allwinner/sun7i-a20-olinuxino-lime2.dts (revision 7d0873ebb83b19ba1e8a89e679470d885efe12e3)
1f126890aSEmmanuel Vadot/*
2f126890aSEmmanuel Vadot * Copyright 2014 - Iain Paton <ipaton0@gmail.com>
3f126890aSEmmanuel Vadot *
4f126890aSEmmanuel Vadot * This file is dual-licensed: you can use it either under the terms
5f126890aSEmmanuel Vadot * of the GPL or the X11 license, at your option. Note that this dual
6f126890aSEmmanuel Vadot * licensing only applies to this file, and not this project as a
7f126890aSEmmanuel Vadot * whole.
8f126890aSEmmanuel Vadot *
9f126890aSEmmanuel Vadot *  a) This file is free software; you can redistribute it and/or
10f126890aSEmmanuel Vadot *     modify it under the terms of the GNU General Public License as
11f126890aSEmmanuel Vadot *     published by the Free Software Foundation; either version 2 of the
12f126890aSEmmanuel Vadot *     License, or (at your option) any later version.
13f126890aSEmmanuel Vadot *
14f126890aSEmmanuel Vadot *     This file is distributed in the hope that it will be useful,
15f126890aSEmmanuel Vadot *     but WITHOUT ANY WARRANTY; without even the implied warranty of
16f126890aSEmmanuel Vadot *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17f126890aSEmmanuel Vadot *     GNU General Public License for more details.
18f126890aSEmmanuel Vadot *
19f126890aSEmmanuel Vadot * Or, alternatively,
20f126890aSEmmanuel Vadot *
21f126890aSEmmanuel Vadot *  b) Permission is hereby granted, free of charge, to any person
22f126890aSEmmanuel Vadot *     obtaining a copy of this software and associated documentation
23f126890aSEmmanuel Vadot *     files (the "Software"), to deal in the Software without
24f126890aSEmmanuel Vadot *     restriction, including without limitation the rights to use,
25f126890aSEmmanuel Vadot *     copy, modify, merge, publish, distribute, sublicense, and/or
26f126890aSEmmanuel Vadot *     sell copies of the Software, and to permit persons to whom the
27f126890aSEmmanuel Vadot *     Software is furnished to do so, subject to the following
28f126890aSEmmanuel Vadot *     conditions:
29f126890aSEmmanuel Vadot *
30f126890aSEmmanuel Vadot *     The above copyright notice and this permission notice shall be
31f126890aSEmmanuel Vadot *     included in all copies or substantial portions of the Software.
32f126890aSEmmanuel Vadot *
33f126890aSEmmanuel Vadot *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34f126890aSEmmanuel Vadot *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35f126890aSEmmanuel Vadot *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36f126890aSEmmanuel Vadot *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37f126890aSEmmanuel Vadot *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38f126890aSEmmanuel Vadot *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39f126890aSEmmanuel Vadot *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40f126890aSEmmanuel Vadot *     OTHER DEALINGS IN THE SOFTWARE.
41f126890aSEmmanuel Vadot */
42f126890aSEmmanuel Vadot
43f126890aSEmmanuel Vadot/dts-v1/;
44f126890aSEmmanuel Vadot#include "sun7i-a20.dtsi"
45f126890aSEmmanuel Vadot#include "sunxi-common-regulators.dtsi"
46f126890aSEmmanuel Vadot
47f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h>
48f126890aSEmmanuel Vadot#include <dt-bindings/interrupt-controller/irq.h>
49f126890aSEmmanuel Vadot
50f126890aSEmmanuel Vadot/ {
51f126890aSEmmanuel Vadot	model = "Olimex A20-OLinuXino-LIME2";
52f126890aSEmmanuel Vadot	compatible = "olimex,a20-olinuxino-lime2", "allwinner,sun7i-a20";
53f126890aSEmmanuel Vadot
54f126890aSEmmanuel Vadot	aliases {
55f126890aSEmmanuel Vadot		serial0 = &uart0;
56f126890aSEmmanuel Vadot	};
57f126890aSEmmanuel Vadot
58f126890aSEmmanuel Vadot	chosen {
59f126890aSEmmanuel Vadot		stdout-path = "serial0:115200n8";
60f126890aSEmmanuel Vadot	};
61f126890aSEmmanuel Vadot
62f126890aSEmmanuel Vadot	hdmi-connector {
63f126890aSEmmanuel Vadot		compatible = "hdmi-connector";
64f126890aSEmmanuel Vadot		type = "a";
65f126890aSEmmanuel Vadot
66f126890aSEmmanuel Vadot		port {
67f126890aSEmmanuel Vadot			hdmi_con_in: endpoint {
68f126890aSEmmanuel Vadot				remote-endpoint = <&hdmi_out_con>;
69f126890aSEmmanuel Vadot			};
70f126890aSEmmanuel Vadot		};
71f126890aSEmmanuel Vadot	};
72f126890aSEmmanuel Vadot
73f126890aSEmmanuel Vadot	leds {
74f126890aSEmmanuel Vadot		compatible = "gpio-leds";
75f126890aSEmmanuel Vadot		pinctrl-names = "default";
76f126890aSEmmanuel Vadot		pinctrl-0 = <&led_pins_olinuxinolime>;
77f126890aSEmmanuel Vadot
78f126890aSEmmanuel Vadot		led {
79f126890aSEmmanuel Vadot			label = "a20-olinuxino-lime2:green:usr";
80f126890aSEmmanuel Vadot			gpios = <&pio 7 2 GPIO_ACTIVE_HIGH>;
81f126890aSEmmanuel Vadot			default-state = "on";
82f126890aSEmmanuel Vadot		};
83f126890aSEmmanuel Vadot	};
84f126890aSEmmanuel Vadot
85*7d0873ebSEmmanuel Vadot	reg_axp_ipsout: regulator-axp-ipsout {
86f126890aSEmmanuel Vadot		compatible = "regulator-fixed";
87f126890aSEmmanuel Vadot		regulator-name = "axp-ipsout";
88f126890aSEmmanuel Vadot		regulator-min-microvolt = <5000000>;
89f126890aSEmmanuel Vadot		regulator-max-microvolt = <5000000>;
90f126890aSEmmanuel Vadot		regulator-always-on;
91f126890aSEmmanuel Vadot	};
92f126890aSEmmanuel Vadot};
93f126890aSEmmanuel Vadot
94f126890aSEmmanuel Vadot&ahci {
95f126890aSEmmanuel Vadot	target-supply = <&reg_ahci_5v>;
96f126890aSEmmanuel Vadot	status = "okay";
97f126890aSEmmanuel Vadot};
98f126890aSEmmanuel Vadot
99f126890aSEmmanuel Vadot&de {
100f126890aSEmmanuel Vadot	status = "okay";
101f126890aSEmmanuel Vadot};
102f126890aSEmmanuel Vadot
103f126890aSEmmanuel Vadot&ehci0 {
104f126890aSEmmanuel Vadot	status = "okay";
105f126890aSEmmanuel Vadot};
106f126890aSEmmanuel Vadot
107f126890aSEmmanuel Vadot&ehci1 {
108f126890aSEmmanuel Vadot	status = "okay";
109f126890aSEmmanuel Vadot};
110f126890aSEmmanuel Vadot
111f126890aSEmmanuel Vadot&gmac {
112f126890aSEmmanuel Vadot	pinctrl-names = "default";
113f126890aSEmmanuel Vadot	pinctrl-0 = <&gmac_rgmii_pins>;
114f126890aSEmmanuel Vadot	phy-handle = <&phy1>;
115f126890aSEmmanuel Vadot	phy-mode = "rgmii-id";
116f126890aSEmmanuel Vadot	status = "okay";
117f126890aSEmmanuel Vadot};
118f126890aSEmmanuel Vadot
119f126890aSEmmanuel Vadot&hdmi {
120f126890aSEmmanuel Vadot	status = "okay";
121f126890aSEmmanuel Vadot};
122f126890aSEmmanuel Vadot
123f126890aSEmmanuel Vadot&hdmi_out {
124f126890aSEmmanuel Vadot	hdmi_out_con: endpoint {
125f126890aSEmmanuel Vadot		remote-endpoint = <&hdmi_con_in>;
126f126890aSEmmanuel Vadot	};
127f126890aSEmmanuel Vadot};
128f126890aSEmmanuel Vadot
129f126890aSEmmanuel Vadot&i2c0 {
130f126890aSEmmanuel Vadot	status = "okay";
131f126890aSEmmanuel Vadot
132f126890aSEmmanuel Vadot	axp209: pmic@34 {
133f126890aSEmmanuel Vadot		reg = <0x34>;
134f126890aSEmmanuel Vadot		interrupt-parent = <&nmi_intc>;
135f126890aSEmmanuel Vadot		interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
136f126890aSEmmanuel Vadot	};
137f126890aSEmmanuel Vadot};
138f126890aSEmmanuel Vadot
139f126890aSEmmanuel Vadot&i2c1 {
140f126890aSEmmanuel Vadot	status = "okay";
141f126890aSEmmanuel Vadot
142f126890aSEmmanuel Vadot	eeprom: eeprom@50 {
143f126890aSEmmanuel Vadot		compatible = "atmel,24c16";
144f126890aSEmmanuel Vadot		reg = <0x50>;
145f126890aSEmmanuel Vadot		pagesize = <16>;
146f126890aSEmmanuel Vadot	};
147f126890aSEmmanuel Vadot};
148f126890aSEmmanuel Vadot
149f126890aSEmmanuel Vadot&lradc {
150f126890aSEmmanuel Vadot	vref-supply = <&reg_vcc3v0>;
151f126890aSEmmanuel Vadot};
152f126890aSEmmanuel Vadot
153f126890aSEmmanuel Vadot&gmac_mdio {
154f126890aSEmmanuel Vadot	phy1: ethernet-phy@1 {
155f126890aSEmmanuel Vadot		reg = <1>;
156f126890aSEmmanuel Vadot	};
157f126890aSEmmanuel Vadot};
158f126890aSEmmanuel Vadot
159f126890aSEmmanuel Vadot&mmc0 {
160f126890aSEmmanuel Vadot	vmmc-supply = <&reg_vcc3v3>;
161f126890aSEmmanuel Vadot	bus-width = <4>;
162f126890aSEmmanuel Vadot	cd-gpios = <&pio 7 1 GPIO_ACTIVE_LOW>; /* PH1 */
163f126890aSEmmanuel Vadot	status = "okay";
164f126890aSEmmanuel Vadot};
165f126890aSEmmanuel Vadot
166f126890aSEmmanuel Vadot&ohci0 {
167f126890aSEmmanuel Vadot	status = "okay";
168f126890aSEmmanuel Vadot};
169f126890aSEmmanuel Vadot
170f126890aSEmmanuel Vadot&ohci1 {
171f126890aSEmmanuel Vadot	status = "okay";
172f126890aSEmmanuel Vadot};
173f126890aSEmmanuel Vadot
174f126890aSEmmanuel Vadot&otg_sram {
175f126890aSEmmanuel Vadot	status = "okay";
176f126890aSEmmanuel Vadot};
177f126890aSEmmanuel Vadot
178f126890aSEmmanuel Vadot&pio {
179f126890aSEmmanuel Vadot	vcc-pa-supply = <&reg_vcc3v3>;
180f126890aSEmmanuel Vadot	vcc-pc-supply = <&reg_vcc3v3>;
181f126890aSEmmanuel Vadot	vcc-pe-supply = <&reg_ldo3>;
182f126890aSEmmanuel Vadot	vcc-pf-supply = <&reg_vcc3v3>;
183f126890aSEmmanuel Vadot	vcc-pg-supply = <&reg_ldo4>;
184f126890aSEmmanuel Vadot
185f126890aSEmmanuel Vadot	led_pins_olinuxinolime: led-pins {
186f126890aSEmmanuel Vadot		pins = "PH2";
187f126890aSEmmanuel Vadot		function = "gpio_out";
188f126890aSEmmanuel Vadot		drive-strength = <20>;
189f126890aSEmmanuel Vadot	};
190f126890aSEmmanuel Vadot};
191f126890aSEmmanuel Vadot
192f126890aSEmmanuel Vadot&reg_ahci_5v {
193f126890aSEmmanuel Vadot	gpio = <&pio 2 3 GPIO_ACTIVE_HIGH>;
194f126890aSEmmanuel Vadot	status = "okay";
195f126890aSEmmanuel Vadot};
196f126890aSEmmanuel Vadot
197f126890aSEmmanuel Vadot#include "axp209.dtsi"
198f126890aSEmmanuel Vadot
199f126890aSEmmanuel Vadot&ac_power_supply {
200f126890aSEmmanuel Vadot	status = "okay";
201f126890aSEmmanuel Vadot};
202f126890aSEmmanuel Vadot
203f126890aSEmmanuel Vadot&battery_power_supply {
204f126890aSEmmanuel Vadot	status = "okay";
205f126890aSEmmanuel Vadot};
206f126890aSEmmanuel Vadot
207f126890aSEmmanuel Vadot&reg_dcdc2 {
208f126890aSEmmanuel Vadot	regulator-always-on;
209f126890aSEmmanuel Vadot	regulator-min-microvolt = <1000000>;
210f126890aSEmmanuel Vadot	regulator-max-microvolt = <1400000>;
211f126890aSEmmanuel Vadot	regulator-name = "vdd-cpu";
212f126890aSEmmanuel Vadot};
213f126890aSEmmanuel Vadot
214f126890aSEmmanuel Vadot&reg_dcdc3 {
215f126890aSEmmanuel Vadot	regulator-always-on;
216f126890aSEmmanuel Vadot	regulator-min-microvolt = <1000000>;
217f126890aSEmmanuel Vadot	regulator-max-microvolt = <1400000>;
218f126890aSEmmanuel Vadot	regulator-name = "vdd-int-dll";
219f126890aSEmmanuel Vadot};
220f126890aSEmmanuel Vadot
221f126890aSEmmanuel Vadot&reg_ldo1 {
222f126890aSEmmanuel Vadot	regulator-always-on;
223f126890aSEmmanuel Vadot	regulator-min-microvolt = <1300000>;
224f126890aSEmmanuel Vadot	regulator-max-microvolt = <1300000>;
225f126890aSEmmanuel Vadot	regulator-name = "vdd-rtc";
226f126890aSEmmanuel Vadot};
227f126890aSEmmanuel Vadot
228f126890aSEmmanuel Vadot&reg_ldo2 {
229f126890aSEmmanuel Vadot	regulator-always-on;
230f126890aSEmmanuel Vadot	regulator-min-microvolt = <3000000>;
231f126890aSEmmanuel Vadot	regulator-max-microvolt = <3000000>;
232f126890aSEmmanuel Vadot	regulator-name = "avcc";
233f126890aSEmmanuel Vadot};
234f126890aSEmmanuel Vadot
235f126890aSEmmanuel Vadot&reg_ldo3 {
236f126890aSEmmanuel Vadot	regulator-min-microvolt = <2800000>;
237f126890aSEmmanuel Vadot	regulator-max-microvolt = <2800000>;
238f126890aSEmmanuel Vadot	regulator-name = "vddio-csi0";
239f126890aSEmmanuel Vadot	regulator-soft-start;
240f126890aSEmmanuel Vadot	regulator-ramp-delay = <1600>;
241f126890aSEmmanuel Vadot};
242f126890aSEmmanuel Vadot
243f126890aSEmmanuel Vadot&reg_ldo4 {
244f126890aSEmmanuel Vadot	regulator-min-microvolt = <2800000>;
245f126890aSEmmanuel Vadot	regulator-max-microvolt = <2800000>;
246f126890aSEmmanuel Vadot	regulator-name = "vddio-csi1";
247f126890aSEmmanuel Vadot};
248f126890aSEmmanuel Vadot
249f126890aSEmmanuel Vadot&reg_usb0_vbus {
250f126890aSEmmanuel Vadot	gpio = <&pio 2 17 GPIO_ACTIVE_HIGH>;
251f126890aSEmmanuel Vadot	status = "okay";
252f126890aSEmmanuel Vadot};
253f126890aSEmmanuel Vadot
254f126890aSEmmanuel Vadot&reg_usb1_vbus {
255f126890aSEmmanuel Vadot	status = "okay";
256f126890aSEmmanuel Vadot};
257f126890aSEmmanuel Vadot
258f126890aSEmmanuel Vadot&reg_usb2_vbus {
259f126890aSEmmanuel Vadot	status = "okay";
260f126890aSEmmanuel Vadot};
261f126890aSEmmanuel Vadot
262f126890aSEmmanuel Vadot&uart0 {
263f126890aSEmmanuel Vadot	pinctrl-names = "default";
264f126890aSEmmanuel Vadot	pinctrl-0 = <&uart0_pb_pins>;
265f126890aSEmmanuel Vadot	status = "okay";
266f126890aSEmmanuel Vadot};
267f126890aSEmmanuel Vadot
268f126890aSEmmanuel Vadot&usb_otg {
269f126890aSEmmanuel Vadot	dr_mode = "otg";
270f126890aSEmmanuel Vadot	status = "okay";
271f126890aSEmmanuel Vadot};
272f126890aSEmmanuel Vadot
273f126890aSEmmanuel Vadot&usbphy {
274f126890aSEmmanuel Vadot	usb0_id_det-gpios = <&pio 7 4 (GPIO_ACTIVE_HIGH | GPIO_PULL_UP)>; /* PH4 */
275f126890aSEmmanuel Vadot	usb0_vbus_det-gpios = <&pio 7 5 (GPIO_ACTIVE_HIGH | GPIO_PULL_DOWN)>; /* PH5 */
276f126890aSEmmanuel Vadot	usb0_vbus-supply = <&reg_usb0_vbus>;
277f126890aSEmmanuel Vadot	usb1_vbus-supply = <&reg_usb1_vbus>;
278f126890aSEmmanuel Vadot	usb2_vbus-supply = <&reg_usb2_vbus>;
279f126890aSEmmanuel Vadot	status = "okay";
280f126890aSEmmanuel Vadot};
281