ARM: dts: sun8i: Fix wrong Quad core / a33 compat for sun8i-a23-gt90h-v4
[cascardo/linux.git] / arch / arm / boot / dts / sun8i-a23-gt90h-v4.dts
1 /*
2  * Copyright 2015 Hans de Goede <hdegoede@redhat.com>
3  *
4  * This file is dual-licensed: you can use it either under the terms
5  * of the GPL or the X11 license, at your option. Note that this dual
6  * licensing only applies to this file, and not this project as a
7  * whole.
8  *
9  *  a) This file is free software; you can redistribute it and/or
10  *     modify it under the terms of the GNU General Public License as
11  *     published by the Free Software Foundation; either version 2 of the
12  *     License, or (at your option) any later version.
13  *
14  *     This file is distributed in the hope that it will be useful,
15  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *     GNU General Public License for more details.
18  *
19  * Or, alternatively,
20  *
21  *  b) Permission is hereby granted, free of charge, to any person
22  *     obtaining a copy of this software and associated documentation
23  *     files (the "Software"), to deal in the Software without
24  *     restriction, including without limitation the rights to use,
25  *     copy, modify, merge, publish, distribute, sublicense, and/or
26  *     sell copies of the Software, and to permit persons to whom the
27  *     Software is furnished to do so, subject to the following
28  *     conditions:
29  *
30  *     The above copyright notice and this permission notice shall be
31  *     included in all copies or substantial portions of the Software.
32  *
33  *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34  *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35  *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36  *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37  *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38  *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39  *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40  *     OTHER DEALINGS IN THE SOFTWARE.
41  */
42
43 /dts-v1/;
44 #include "sun8i-a23.dtsi"
45 #include "sunxi-common-regulators.dtsi"
46
47 #include <dt-bindings/gpio/gpio.h>
48 #include <dt-bindings/input/input.h>
49 #include <dt-bindings/pinctrl/sun4i-a10.h>
50 #include <dt-bindings/pwm/pwm.h>
51
52 / {
53         model = "Allwinner GT90H Dual Core Tablet (v4)";
54         compatible = "allwinner,gt90h-v4", "allwinner,sun8i-a23";
55
56         aliases {
57                 serial0 = &r_uart;
58         };
59
60         backlight: backlight {
61                 compatible = "pwm-backlight";
62                 pinctrl-names = "default";
63                 pinctrl-0 = <&bl_en_pin_gt90h>;
64                 pwms = <&pwm 0 50000 PWM_POLARITY_INVERTED>;
65                 brightness-levels = <0 10 20 30 40 50 60 70 80 90 100>;
66                 default-brightness-level = <8>;
67                 enable-gpios = <&pio 7 6 GPIO_ACTIVE_HIGH>; /* PH6 */
68         };
69
70         chosen {
71                 stdout-path = "serial0:115200n8";
72         };
73 };
74
75 &ehci0 {
76         status = "okay";
77 };
78
79 &i2c0 {
80         pinctrl-names = "default";
81         pinctrl-0 = <&i2c0_pins_a>;
82         status = "okay";
83 };
84
85 &i2c1 {
86         pinctrl-names = "default";
87         pinctrl-0 = <&i2c1_pins_a>;
88         status = "okay";
89 };
90
91 &lradc {
92         vref-supply = <&reg_vcc3v0>;
93         status = "okay";
94
95         button@200 {
96                 label = "Volume Up";
97                 linux,code = <KEY_VOLUMEUP>;
98                 channel = <0>;
99                 voltage = <200000>;
100         };
101
102         button@400 {
103                 label = "Volume Down";
104                 linux,code = <KEY_VOLUMEDOWN>;
105                 channel = <0>;
106                 voltage = <400000>;
107         };
108
109         button@600 {
110                 label = "Back";
111                 linux,code = <KEY_BACK>;
112                 channel = <0>;
113                 voltage = <600000>;
114         };
115 };
116
117 &mmc0 {
118         pinctrl-names = "default";
119         pinctrl-0 = <&mmc0_pins_a>, <&mmc0_cd_pin_gt90h>;
120         /* FIXME this really is aldo1, correct once we've pmic support */
121         vmmc-supply = <&reg_vcc3v0>;
122         bus-width = <4>;
123         cd-gpios = <&pio 1 4 GPIO_ACTIVE_HIGH>; /* PB4 */
124         cd-inverted;
125         status = "okay";
126 };
127
128 &pio {
129         bl_en_pin_gt90h: bl_en_pin@0 {
130                 allwinner,pins = "PH6";
131                 allwinner,function = "gpio_in";
132                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
133                 allwinner,pull = <SUN4I_PINCTRL_NO_PULL>;
134         };
135
136         mmc0_cd_pin_gt90h: mmc0_cd_pin@0 {
137                 allwinner,pins = "PB4";
138                 allwinner,function = "gpio_in";
139                 allwinner,drive = <SUN4I_PINCTRL_10_MA>;
140                 allwinner,pull = <SUN4I_PINCTRL_PULL_UP>;
141         };
142 };
143
144 &pwm {
145         pinctrl-names = "default";
146         pinctrl-0 = <&pwm0_pins>;
147         status = "okay";
148 };
149
150 &r_rsb {
151         status = "okay";
152
153         axp22x: pmic@3a3 {
154                 compatible = "x-powers,axp223";
155                 reg = <0x3a3>;
156                 interrupt-parent = <&nmi_intc>;
157                 interrupts = <0 IRQ_TYPE_LEVEL_LOW>;
158                 eldoin-supply = <&reg_dcdc1>;
159         };
160 };
161
162 &r_uart {
163         pinctrl-names = "default";
164         pinctrl-0 = <&r_uart_pins_a>;
165         status = "okay";
166 };
167
168 #include "axp22x.dtsi"
169
170 &reg_aldo1 {
171         regulator-always-on;
172         regulator-min-microvolt = <3000000>;
173         regulator-max-microvolt = <3000000>;
174         regulator-name = "vcc-io";
175 };
176
177 &reg_aldo2 {
178         regulator-always-on;
179         regulator-min-microvolt = <2350000>;
180         regulator-max-microvolt = <2650000>;
181         regulator-name = "vdd-dll";
182 };
183
184 &reg_aldo3 {
185         regulator-always-on;
186         regulator-min-microvolt = <2700000>;
187         regulator-max-microvolt = <3300000>;
188         regulator-name = "vcc-pll-avcc";
189 };
190
191 &reg_dc1sw {
192         regulator-name = "vcc-lcd";
193 };
194
195 &reg_dc5ldo {
196         regulator-always-on;
197         regulator-min-microvolt = <900000>;
198         regulator-max-microvolt = <1400000>;
199         regulator-name = "vdd-cpus";
200 };
201
202 &reg_dcdc1 {
203         regulator-always-on;
204         regulator-min-microvolt = <3000000>;
205         regulator-max-microvolt = <3000000>;
206         regulator-name = "vcc-3v0";
207 };
208
209 &reg_dcdc2 {
210         regulator-always-on;
211         regulator-min-microvolt = <900000>;
212         regulator-max-microvolt = <1400000>;
213         regulator-name = "vdd-sys";
214 };
215
216 &reg_dcdc3 {
217         regulator-always-on;
218         regulator-min-microvolt = <900000>;
219         regulator-max-microvolt = <1400000>;
220         regulator-name = "vdd-cpu";
221 };
222
223 &reg_dcdc5 {
224         regulator-always-on;
225         regulator-min-microvolt = <1500000>;
226         regulator-max-microvolt = <1500000>;
227         regulator-name = "vcc-dram";
228 };
229
230 &reg_dldo1 {
231         regulator-min-microvolt = <3300000>;
232         regulator-max-microvolt = <3300000>;
233         regulator-name = "vcc-wifi";
234 };
235
236 &reg_rtc_ldo {
237         regulator-name = "vcc-rtc";
238 };
239
240 &simplefb_lcd {
241         vcc-lcd-supply = <&reg_dc1sw>;
242 };
243
244 /*
245  * FIXME for now we only support host mode and rely on u-boot to have
246  * turned on Vbus which is controlled by the axp223 pmic on the board.
247  *
248  * Once we have axp223 support we should switch to fully supporting otg.
249  */
250 &usb_otg {
251         dr_mode = "host";
252         status = "okay";
253 };
254
255 &usbphy {
256         usb1_vbus-supply = <&reg_dldo1>;
257         status = "okay";
258 };