• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1/*
2 * Copyright (C) 2016 ARM Ltd.
3 * based on the Allwinner H3 dtsi:
4 *    Copyright (C) 2015 Jens Kuske <jenskuske@gmail.com>
5 *
6 * This file is dual-licensed: you can use it either under the terms
7 * of the GPL or the X11 license, at your option. Note that this dual
8 * licensing only applies to this file, and not this project as a
9 * whole.
10 *
11 *  a) This file is free software; you can redistribute it and/or
12 *     modify it under the terms of the GNU General Public License as
13 *     published by the Free Software Foundation; either version 2 of the
14 *     License, or (at your option) any later version.
15 *
16 *     This file is distributed in the hope that it will be useful,
17 *     but WITHOUT ANY WARRANTY; without even the implied warranty of
18 *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 *     GNU General Public License for more details.
20 *
21 * Or, alternatively,
22 *
23 *  b) Permission is hereby granted, free of charge, to any person
24 *     obtaining a copy of this software and associated documentation
25 *     files (the "Software"), to deal in the Software without
26 *     restriction, including without limitation the rights to use,
27 *     copy, modify, merge, publish, distribute, sublicense, and/or
28 *     sell copies of the Software, and to permit persons to whom the
29 *     Software is furnished to do so, subject to the following
30 *     conditions:
31 *
32 *     The above copyright notice and this permission notice shall be
33 *     included in all copies or substantial portions of the Software.
34 *
35 *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
36 *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
37 *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
38 *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
39 *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
40 *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
41 *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
42 *     OTHER DEALINGS IN THE SOFTWARE.
43 */
44
45#include <dt-bindings/clock/sun50i-a64-ccu.h>
46#include <dt-bindings/clock/sun8i-r-ccu.h>
47#include <dt-bindings/interrupt-controller/arm-gic.h>
48#include <dt-bindings/reset/sun50i-a64-ccu.h>
49
50/ {
51	interrupt-parent = <&gic>;
52	#address-cells = <1>;
53	#size-cells = <1>;
54
55	cpus {
56		#address-cells = <1>;
57		#size-cells = <0>;
58
59		cpu0: cpu@0 {
60			compatible = "arm,cortex-a53", "arm,armv8";
61			device_type = "cpu";
62			reg = <0>;
63			enable-method = "psci";
64		};
65
66		cpu1: cpu@1 {
67			compatible = "arm,cortex-a53", "arm,armv8";
68			device_type = "cpu";
69			reg = <1>;
70			enable-method = "psci";
71		};
72
73		cpu2: cpu@2 {
74			compatible = "arm,cortex-a53", "arm,armv8";
75			device_type = "cpu";
76			reg = <2>;
77			enable-method = "psci";
78		};
79
80		cpu3: cpu@3 {
81			compatible = "arm,cortex-a53", "arm,armv8";
82			device_type = "cpu";
83			reg = <3>;
84			enable-method = "psci";
85		};
86	};
87
88	osc24M: osc24M_clk {
89		#clock-cells = <0>;
90		compatible = "fixed-clock";
91		clock-frequency = <24000000>;
92		clock-output-names = "osc24M";
93	};
94
95	osc32k: osc32k_clk {
96		#clock-cells = <0>;
97		compatible = "fixed-clock";
98		clock-frequency = <32768>;
99		clock-output-names = "osc32k";
100	};
101
102	iosc: internal-osc-clk {
103		#clock-cells = <0>;
104		compatible = "fixed-clock";
105		clock-frequency = <16000000>;
106		clock-accuracy = <300000000>;
107		clock-output-names = "iosc";
108	};
109
110	psci {
111		compatible = "arm,psci-0.2";
112		method = "smc";
113	};
114
115	timer {
116		compatible = "arm,armv8-timer";
117		interrupts = <GIC_PPI 13
118			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
119			     <GIC_PPI 14
120			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
121			     <GIC_PPI 11
122			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
123			     <GIC_PPI 10
124			(GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
125	};
126
127	soc {
128		compatible = "simple-bus";
129		#address-cells = <1>;
130		#size-cells = <1>;
131		ranges;
132
133		syscon: syscon@1c00000 {
134			compatible = "allwinner,sun50i-a64-system-controller",
135				"syscon";
136			reg = <0x01c00000 0x1000>;
137		};
138
139		mmc0: mmc@1c0f000 {
140			compatible = "allwinner,sun50i-a64-mmc";
141			reg = <0x01c0f000 0x1000>;
142			clocks = <&ccu CLK_BUS_MMC0>, <&ccu CLK_MMC0>;
143			clock-names = "ahb", "mmc";
144			resets = <&ccu RST_BUS_MMC0>;
145			reset-names = "ahb";
146			interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
147			max-frequency = <150000000>;
148			status = "disabled";
149			#address-cells = <1>;
150			#size-cells = <0>;
151		};
152
153		mmc1: mmc@1c10000 {
154			compatible = "allwinner,sun50i-a64-mmc";
155			reg = <0x01c10000 0x1000>;
156			clocks = <&ccu CLK_BUS_MMC1>, <&ccu CLK_MMC1>;
157			clock-names = "ahb", "mmc";
158			resets = <&ccu RST_BUS_MMC1>;
159			reset-names = "ahb";
160			interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
161			max-frequency = <150000000>;
162			status = "disabled";
163			#address-cells = <1>;
164			#size-cells = <0>;
165		};
166
167		mmc2: mmc@1c11000 {
168			compatible = "allwinner,sun50i-a64-emmc";
169			reg = <0x01c11000 0x1000>;
170			clocks = <&ccu CLK_BUS_MMC2>, <&ccu CLK_MMC2>;
171			clock-names = "ahb", "mmc";
172			resets = <&ccu RST_BUS_MMC2>;
173			reset-names = "ahb";
174			interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
175			max-frequency = <200000000>;
176			status = "disabled";
177			#address-cells = <1>;
178			#size-cells = <0>;
179		};
180
181		usb_otg: usb@01c19000 {
182			compatible = "allwinner,sun8i-a33-musb";
183			reg = <0x01c19000 0x0400>;
184			clocks = <&ccu CLK_BUS_OTG>;
185			resets = <&ccu RST_BUS_OTG>;
186			interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
187			interrupt-names = "mc";
188			phys = <&usbphy 0>;
189			phy-names = "usb";
190			extcon = <&usbphy 0>;
191			status = "disabled";
192		};
193
194		usbphy: phy@01c19400 {
195			compatible = "allwinner,sun50i-a64-usb-phy";
196			reg = <0x01c19400 0x14>,
197			      <0x01c1a800 0x4>,
198			      <0x01c1b800 0x4>;
199			reg-names = "phy_ctrl",
200				    "pmu0",
201				    "pmu1";
202			clocks = <&ccu CLK_USB_PHY0>,
203				 <&ccu CLK_USB_PHY1>;
204			clock-names = "usb0_phy",
205				      "usb1_phy";
206			resets = <&ccu RST_USB_PHY0>,
207				 <&ccu RST_USB_PHY1>;
208			reset-names = "usb0_reset",
209				      "usb1_reset";
210			status = "disabled";
211			#phy-cells = <1>;
212		};
213
214		ehci0: usb@01c1a000 {
215			compatible = "allwinner,sun50i-a64-ehci", "generic-ehci";
216			reg = <0x01c1a000 0x100>;
217			interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
218			clocks = <&ccu CLK_BUS_OHCI0>,
219				 <&ccu CLK_BUS_EHCI0>,
220				 <&ccu CLK_USB_OHCI0>;
221			resets = <&ccu RST_BUS_OHCI0>,
222				 <&ccu RST_BUS_EHCI0>;
223			status = "disabled";
224		};
225
226		ohci0: usb@01c1a400 {
227			compatible = "allwinner,sun50i-a64-ohci", "generic-ohci";
228			reg = <0x01c1a400 0x100>;
229			interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>;
230			clocks = <&ccu CLK_BUS_OHCI0>,
231				 <&ccu CLK_USB_OHCI0>;
232			resets = <&ccu RST_BUS_OHCI0>;
233			status = "disabled";
234		};
235
236		ehci1: usb@01c1b000 {
237			compatible = "allwinner,sun50i-a64-ehci", "generic-ehci";
238			reg = <0x01c1b000 0x100>;
239			interrupts = <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>;
240			clocks = <&ccu CLK_BUS_OHCI1>,
241				 <&ccu CLK_BUS_EHCI1>,
242				 <&ccu CLK_USB_OHCI1>;
243			resets = <&ccu RST_BUS_OHCI1>,
244				 <&ccu RST_BUS_EHCI1>;
245			phys = <&usbphy 1>;
246			phy-names = "usb";
247			status = "disabled";
248		};
249
250		ohci1: usb@01c1b400 {
251			compatible = "allwinner,sun50i-a64-ohci", "generic-ohci";
252			reg = <0x01c1b400 0x100>;
253			interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
254			clocks = <&ccu CLK_BUS_OHCI1>,
255				 <&ccu CLK_USB_OHCI1>;
256			resets = <&ccu RST_BUS_OHCI1>;
257			phys = <&usbphy 1>;
258			phy-names = "usb";
259			status = "disabled";
260		};
261
262		ccu: clock@01c20000 {
263			compatible = "allwinner,sun50i-a64-ccu";
264			reg = <0x01c20000 0x400>;
265			clocks = <&osc24M>, <&osc32k>;
266			clock-names = "hosc", "losc";
267			#clock-cells = <1>;
268			#reset-cells = <1>;
269		};
270
271		pio: pinctrl@1c20800 {
272			compatible = "allwinner,sun50i-a64-pinctrl";
273			reg = <0x01c20800 0x400>;
274			interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH>,
275				     <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>,
276				     <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
277			clocks = <&ccu 58>, <&osc24M>, <&rtc 0>;
278			clock-names = "apb", "hosc", "losc";
279			gpio-controller;
280			#gpio-cells = <3>;
281			interrupt-controller;
282			#interrupt-cells = <3>;
283
284			i2c1_pins: i2c1_pins {
285				pins = "PH2", "PH3";
286				function = "i2c1";
287			};
288
289			mmc0_pins: mmc0-pins {
290				pins = "PF0", "PF1", "PF2", "PF3",
291				       "PF4", "PF5";
292				function = "mmc0";
293				drive-strength = <30>;
294				bias-pull-up;
295			};
296
297			mmc1_pins: mmc1-pins {
298				pins = "PG0", "PG1", "PG2", "PG3",
299				       "PG4", "PG5";
300				function = "mmc1";
301				drive-strength = <30>;
302				bias-pull-up;
303			};
304
305			mmc2_pins: mmc2-pins {
306				pins = "PC1", "PC5", "PC6", "PC8", "PC9",
307				       "PC10","PC11", "PC12", "PC13",
308				       "PC14", "PC15", "PC16";
309				function = "mmc2";
310				drive-strength = <30>;
311				bias-pull-up;
312			};
313
314			rmii_pins: rmii_pins {
315				pins = "PD10", "PD11", "PD13", "PD14", "PD17",
316				       "PD18", "PD19", "PD20", "PD22", "PD23";
317				function = "emac";
318				drive-strength = <40>;
319			};
320
321			rgmii_pins: rgmii_pins {
322				pins = "PD8", "PD9", "PD10", "PD11", "PD12",
323				       "PD13", "PD15", "PD16", "PD17", "PD18",
324				       "PD19", "PD20", "PD21", "PD22", "PD23";
325				function = "emac";
326				drive-strength = <40>;
327			};
328
329			uart0_pins_a: uart0@0 {
330				pins = "PB8", "PB9";
331				function = "uart0";
332			};
333
334			uart1_pins: uart1_pins {
335				pins = "PG6", "PG7";
336				function = "uart1";
337			};
338
339			uart1_rts_cts_pins: uart1_rts_cts_pins {
340				pins = "PG8", "PG9";
341				function = "uart1";
342			};
343
344			uart2_pins: uart2-pins {
345				pins = "PB0", "PB1";
346				function = "uart2";
347			};
348
349			uart3_pins: uart3-pins {
350				pins = "PD0", "PD1";
351				function = "uart3";
352			};
353
354			uart4_pins: uart4-pins {
355				pins = "PD2", "PD3";
356				function = "uart4";
357			};
358
359			uart4_rts_cts_pins: uart4-rts-cts-pins {
360				pins = "PD4", "PD5";
361				function = "uart4";
362			};
363		};
364
365		uart0: serial@1c28000 {
366			compatible = "snps,dw-apb-uart";
367			reg = <0x01c28000 0x400>;
368			interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
369			reg-shift = <2>;
370			reg-io-width = <4>;
371			clocks = <&ccu CLK_BUS_UART0>;
372			resets = <&ccu RST_BUS_UART0>;
373			status = "disabled";
374		};
375
376		uart1: serial@1c28400 {
377			compatible = "snps,dw-apb-uart";
378			reg = <0x01c28400 0x400>;
379			interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
380			reg-shift = <2>;
381			reg-io-width = <4>;
382			clocks = <&ccu CLK_BUS_UART1>;
383			resets = <&ccu RST_BUS_UART1>;
384			status = "disabled";
385		};
386
387		uart2: serial@1c28800 {
388			compatible = "snps,dw-apb-uart";
389			reg = <0x01c28800 0x400>;
390			interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
391			reg-shift = <2>;
392			reg-io-width = <4>;
393			clocks = <&ccu CLK_BUS_UART2>;
394			resets = <&ccu RST_BUS_UART2>;
395			status = "disabled";
396		};
397
398		uart3: serial@1c28c00 {
399			compatible = "snps,dw-apb-uart";
400			reg = <0x01c28c00 0x400>;
401			interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
402			reg-shift = <2>;
403			reg-io-width = <4>;
404			clocks = <&ccu CLK_BUS_UART3>;
405			resets = <&ccu RST_BUS_UART3>;
406			status = "disabled";
407		};
408
409		uart4: serial@1c29000 {
410			compatible = "snps,dw-apb-uart";
411			reg = <0x01c29000 0x400>;
412			interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
413			reg-shift = <2>;
414			reg-io-width = <4>;
415			clocks = <&ccu CLK_BUS_UART4>;
416			resets = <&ccu RST_BUS_UART4>;
417			status = "disabled";
418		};
419
420		i2c0: i2c@1c2ac00 {
421			compatible = "allwinner,sun6i-a31-i2c";
422			reg = <0x01c2ac00 0x400>;
423			interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
424			clocks = <&ccu CLK_BUS_I2C0>;
425			resets = <&ccu RST_BUS_I2C0>;
426			status = "disabled";
427			#address-cells = <1>;
428			#size-cells = <0>;
429		};
430
431		i2c1: i2c@1c2b000 {
432			compatible = "allwinner,sun6i-a31-i2c";
433			reg = <0x01c2b000 0x400>;
434			interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>;
435			clocks = <&ccu CLK_BUS_I2C1>;
436			resets = <&ccu RST_BUS_I2C1>;
437			status = "disabled";
438			#address-cells = <1>;
439			#size-cells = <0>;
440		};
441
442		i2c2: i2c@1c2b400 {
443			compatible = "allwinner,sun6i-a31-i2c";
444			reg = <0x01c2b400 0x400>;
445			interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>;
446			clocks = <&ccu CLK_BUS_I2C2>;
447			resets = <&ccu RST_BUS_I2C2>;
448			status = "disabled";
449			#address-cells = <1>;
450			#size-cells = <0>;
451		};
452
453		gic: interrupt-controller@1c81000 {
454			compatible = "arm,gic-400";
455			reg = <0x01c81000 0x1000>,
456			      <0x01c82000 0x2000>,
457			      <0x01c84000 0x2000>,
458			      <0x01c86000 0x2000>;
459			interrupts = <GIC_PPI 9 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
460			interrupt-controller;
461			#interrupt-cells = <3>;
462		};
463
464		rtc: rtc@1f00000 {
465			compatible = "allwinner,sun6i-a31-rtc";
466			reg = <0x01f00000 0x54>;
467			interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>,
468				     <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
469		};
470
471		r_intc: interrupt-controller@1f00c00 {
472			compatible = "allwinner,sun50i-a64-r-intc",
473				     "allwinner,sun6i-a31-r-intc";
474			interrupt-controller;
475			#interrupt-cells = <2>;
476			reg = <0x01f00c00 0x400>;
477			interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
478		};
479
480		r_ccu: clock@1f01400 {
481			compatible = "allwinner,sun50i-a64-r-ccu";
482			reg = <0x01f01400 0x100>;
483			clocks = <&osc24M>, <&osc32k>, <&iosc>,
484				 <&ccu 11>;
485			clock-names = "hosc", "losc", "iosc", "pll-periph";
486			#clock-cells = <1>;
487			#reset-cells = <1>;
488		};
489
490		r_pio: pinctrl@01f02c00 {
491			compatible = "allwinner,sun50i-a64-r-pinctrl";
492			reg = <0x01f02c00 0x400>;
493			interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
494			clocks = <&r_ccu CLK_APB0_PIO>, <&osc24M>, <&osc32k>;
495			clock-names = "apb", "hosc", "losc";
496			gpio-controller;
497			#gpio-cells = <3>;
498			interrupt-controller;
499			#interrupt-cells = <3>;
500
501			r_rsb_pins: rsb@0 {
502				pins = "PL0", "PL1";
503				function = "s_rsb";
504			};
505		};
506
507		r_rsb: rsb@1f03400 {
508			compatible = "allwinner,sun8i-a23-rsb";
509			reg = <0x01f03400 0x400>;
510			interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
511			clocks = <&r_ccu 6>;
512			clock-frequency = <3000000>;
513			resets = <&r_ccu 2>;
514			pinctrl-names = "default";
515			pinctrl-0 = <&r_rsb_pins>;
516			status = "disabled";
517			#address-cells = <1>;
518			#size-cells = <0>;
519		};
520	};
521};
522