diff options
author | Jagan Teki <jagan@amarulasolutions.com> | 2018-07-28 14:26:15 -0400 |
---|---|---|
committer | Chen-Yu Tsai <wens@csie.org> | 2018-09-04 11:06:07 -0400 |
commit | 0b1ea6f3573a5f68c9a79729c0e4d78c1d1bef36 (patch) | |
tree | 4232aad5f496699abd15fdcfa29fe55f08d538a1 | |
parent | 1b6ff1cb7e67ca262b7e6448aea9b7b14e3def94 (diff) |
arm64: dts: allwinner: h6: Add OrangePi One Plus initial support
OrangePi One Plus is Allwinner H6 based open-source SBC,
which support:
- Allwinner H6 Quad-core 64-bit ARM Cortex-A53
- GPU Mali-T720
- 1GB LPDDR3 RAM
- AXP805 PMIC
- 1Gbps GMAC via RTL8211
- USB 2.0 Host, OTG
- HDMI port
- 5V/2A DC power supply
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Acked-by: Maxime Ripard <maxime.ripard@bootlin.com>
Signed-off-by: Chen-Yu Tsai <wens@csie.org>
-rw-r--r-- | arch/arm64/boot/dts/allwinner/Makefile | 1 | ||||
-rw-r--r-- | arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dts | 150 |
2 files changed, 151 insertions, 0 deletions
diff --git a/arch/arm64/boot/dts/allwinner/Makefile b/arch/arm64/boot/dts/allwinner/Makefile index b7034327b28b..e12b3f53ffd7 100644 --- a/arch/arm64/boot/dts/allwinner/Makefile +++ b/arch/arm64/boot/dts/allwinner/Makefile | |||
@@ -16,4 +16,5 @@ dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-pc2.dtb | |||
16 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-prime.dtb | 16 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-prime.dtb |
17 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-zero-plus.dtb | 17 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-zero-plus.dtb |
18 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-zero-plus2.dtb | 18 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h5-orangepi-zero-plus2.dtb |
19 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-orangepi-one-plus.dtb | ||
19 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-pine-h64.dtb | 20 | dtb-$(CONFIG_ARCH_SUNXI) += sun50i-h6-pine-h64.dtb |
diff --git a/arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dts b/arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dts new file mode 100644 index 000000000000..0612c19cd994 --- /dev/null +++ b/arch/arm64/boot/dts/allwinner/sun50i-h6-orangepi-one-plus.dts | |||
@@ -0,0 +1,150 @@ | |||
1 | // SPDX-License-Identifier: (GPL-2.0+ or MIT) | ||
2 | /* | ||
3 | * Copyright (C) 2018 Amarula Solutions | ||
4 | * Author: Jagan Teki <jagan@amarulasolutions.com> | ||
5 | */ | ||
6 | |||
7 | /dts-v1/; | ||
8 | |||
9 | #include "sun50i-h6.dtsi" | ||
10 | |||
11 | #include <dt-bindings/gpio/gpio.h> | ||
12 | |||
13 | / { | ||
14 | model = "OrangePi One Plus"; | ||
15 | compatible = "xunlong,orangepi-one-plus", "allwinner,sun50i-h6"; | ||
16 | |||
17 | aliases { | ||
18 | serial0 = &uart0; | ||
19 | }; | ||
20 | |||
21 | chosen { | ||
22 | stdout-path = "serial0:115200n8"; | ||
23 | }; | ||
24 | }; | ||
25 | |||
26 | &mmc0 { | ||
27 | pinctrl-names = "default"; | ||
28 | pinctrl-0 = <&mmc0_pins>; | ||
29 | vmmc-supply = <®_cldo1>; | ||
30 | cd-gpios = <&pio 5 6 GPIO_ACTIVE_LOW>; | ||
31 | bus-width = <4>; | ||
32 | status = "okay"; | ||
33 | }; | ||
34 | |||
35 | &r_i2c { | ||
36 | status = "okay"; | ||
37 | |||
38 | axp805: pmic@36 { | ||
39 | compatible = "x-powers,axp805", "x-powers,axp806"; | ||
40 | reg = <0x36>; | ||
41 | interrupt-parent = <&r_intc>; | ||
42 | interrupts = <0 IRQ_TYPE_LEVEL_LOW>; | ||
43 | interrupt-controller; | ||
44 | #interrupt-cells = <1>; | ||
45 | x-powers,self-working-mode; | ||
46 | |||
47 | regulators { | ||
48 | reg_aldo1: aldo1 { | ||
49 | regulator-always-on; | ||
50 | regulator-min-microvolt = <3300000>; | ||
51 | regulator-max-microvolt = <3300000>; | ||
52 | regulator-name = "vcc-pl"; | ||
53 | }; | ||
54 | |||
55 | reg_aldo2: aldo2 { | ||
56 | regulator-min-microvolt = <3300000>; | ||
57 | regulator-max-microvolt = <3300000>; | ||
58 | regulator-name = "vcc-ac200"; | ||
59 | }; | ||
60 | |||
61 | reg_aldo3: aldo3 { | ||
62 | regulator-always-on; | ||
63 | regulator-min-microvolt = <3300000>; | ||
64 | regulator-max-microvolt = <3300000>; | ||
65 | regulator-name = "vcc25-dram"; | ||
66 | }; | ||
67 | |||
68 | reg_bldo1: bldo1 { | ||
69 | regulator-always-on; | ||
70 | regulator-min-microvolt = <1800000>; | ||
71 | regulator-max-microvolt = <1800000>; | ||
72 | regulator-name = "vcc-bias-pll"; | ||
73 | }; | ||
74 | |||
75 | reg_bldo2: bldo2 { | ||
76 | regulator-always-on; | ||
77 | regulator-min-microvolt = <1800000>; | ||
78 | regulator-max-microvolt = <1800000>; | ||
79 | regulator-name = "vcc-efuse-pcie-hdmi-io"; | ||
80 | }; | ||
81 | |||
82 | reg_bldo3: bldo3 { | ||
83 | regulator-always-on; | ||
84 | regulator-min-microvolt = <1800000>; | ||
85 | regulator-max-microvolt = <1800000>; | ||
86 | regulator-name = "vcc-dcxoio"; | ||
87 | }; | ||
88 | |||
89 | bldo4 { | ||
90 | /* unused */ | ||
91 | }; | ||
92 | |||
93 | reg_cldo1: cldo1 { | ||
94 | regulator-always-on; | ||
95 | regulator-min-microvolt = <3300000>; | ||
96 | regulator-max-microvolt = <3300000>; | ||
97 | regulator-name = "vcc-3v3"; | ||
98 | }; | ||
99 | |||
100 | reg_cldo2: cldo2 { | ||
101 | regulator-min-microvolt = <3300000>; | ||
102 | regulator-max-microvolt = <3300000>; | ||
103 | regulator-name = "vcc-wifi-1"; | ||
104 | }; | ||
105 | |||
106 | reg_cldo3: cldo3 { | ||
107 | regulator-min-microvolt = <3300000>; | ||
108 | regulator-max-microvolt = <3300000>; | ||
109 | regulator-name = "vcc-wifi-2"; | ||
110 | }; | ||
111 | |||
112 | reg_dcdca: dcdca { | ||
113 | regulator-always-on; | ||
114 | regulator-min-microvolt = <810000>; | ||
115 | regulator-max-microvolt = <1080000>; | ||
116 | regulator-name = "vdd-cpu"; | ||
117 | }; | ||
118 | |||
119 | reg_dcdcc: dcdcc { | ||
120 | regulator-min-microvolt = <810000>; | ||
121 | regulator-max-microvolt = <1080000>; | ||
122 | regulator-name = "vdd-gpu"; | ||
123 | }; | ||
124 | |||
125 | reg_dcdcd: dcdcd { | ||
126 | regulator-always-on; | ||
127 | regulator-min-microvolt = <960000>; | ||
128 | regulator-max-microvolt = <960000>; | ||
129 | regulator-name = "vdd-sys"; | ||
130 | }; | ||
131 | |||
132 | reg_dcdce: dcdce { | ||
133 | regulator-always-on; | ||
134 | regulator-min-microvolt = <1200000>; | ||
135 | regulator-max-microvolt = <1200000>; | ||
136 | regulator-name = "vcc-dram"; | ||
137 | }; | ||
138 | |||
139 | sw { | ||
140 | /* unused */ | ||
141 | }; | ||
142 | }; | ||
143 | }; | ||
144 | }; | ||
145 | |||
146 | &uart0 { | ||
147 | pinctrl-names = "default"; | ||
148 | pinctrl-0 = <&uart0_ph_pins>; | ||
149 | status = "okay"; | ||
150 | }; | ||