1/*
2 * Copyright (c) 2017 MediaTek Inc.
3 * Author: Mars.C <mars.cheng@mediatek.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 * GNU General Public License for more details.
12 */
13
14#include <dt-bindings/clock/mt6797-clk.h>
15#include <dt-bindings/power/mt6797-power.h>
16#include <dt-bindings/interrupt-controller/irq.h>
17#include <dt-bindings/interrupt-controller/arm-gic.h>
18
19/ {
20	compatible = "mediatek,mt6797";
21	interrupt-parent = <&sysirq>;
22	#address-cells = <2>;
23	#size-cells = <2>;
24
25	psci {
26		compatible = "arm,psci-0.2";
27		method = "smc";
28	};
29
30	cpus {
31		#address-cells = <1>;
32		#size-cells = <0>;
33
34		cpu0: cpu@0 {
35			device_type = "cpu";
36			compatible = "arm,cortex-a53";
37			enable-method = "psci";
38			reg = <0x000>;
39		};
40
41		cpu1: cpu@1 {
42			device_type = "cpu";
43			compatible = "arm,cortex-a53";
44			enable-method = "psci";
45			reg = <0x001>;
46		};
47
48		cpu2: cpu@2 {
49			device_type = "cpu";
50			compatible = "arm,cortex-a53";
51			enable-method = "psci";
52			reg = <0x002>;
53		};
54
55		cpu3: cpu@3 {
56			device_type = "cpu";
57			compatible = "arm,cortex-a53";
58			enable-method = "psci";
59			reg = <0x003>;
60		};
61
62		cpu4: cpu@100 {
63			device_type = "cpu";
64			compatible = "arm,cortex-a53";
65			enable-method = "psci";
66			reg = <0x100>;
67		};
68
69		cpu5: cpu@101 {
70			device_type = "cpu";
71			compatible = "arm,cortex-a53";
72			enable-method = "psci";
73			reg = <0x101>;
74		};
75
76		cpu6: cpu@102 {
77			device_type = "cpu";
78			compatible = "arm,cortex-a53";
79			enable-method = "psci";
80			reg = <0x102>;
81		};
82
83		cpu7: cpu@103 {
84			device_type = "cpu";
85			compatible = "arm,cortex-a53";
86			enable-method = "psci";
87			reg = <0x103>;
88		};
89
90		cpu8: cpu@200 {
91			device_type = "cpu";
92			compatible = "arm,cortex-a72";
93			enable-method = "psci";
94			reg = <0x200>;
95		};
96
97		cpu9: cpu@201 {
98			device_type = "cpu";
99			compatible = "arm,cortex-a72";
100			enable-method = "psci";
101			reg = <0x201>;
102		};
103	};
104
105	clk26m: oscillator@0 {
106		compatible = "fixed-clock";
107		#clock-cells = <0>;
108		clock-frequency = <26000000>;
109		clock-output-names = "clk26m";
110	};
111
112	clk32k: oscillator@1 {
113		compatible = "fixed-clock";
114		#clock-cells = <0>;
115		clock-frequency = <32000>;
116		clock-output-names = "clk32k";
117	};
118
119	timer {
120		compatible = "arm,armv8-timer";
121		interrupt-parent = <&gic>;
122		interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
123			     <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
124			     <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
125			     <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>;
126	};
127
128	topckgen: topckgen@10000000 {
129		compatible = "mediatek,mt6797-topckgen";
130		reg = <0 0x10000000 0 0x1000>;
131		#clock-cells = <1>;
132	};
133
134	infrasys: infracfg_ao@10001000 {
135		compatible = "mediatek,mt6797-infracfg", "syscon";
136		reg = <0 0x10001000 0 0x1000>;
137		#clock-cells = <1>;
138	};
139
140	scpsys: scpsys@10006000 {
141		compatible = "mediatek,mt6797-scpsys";
142		#power-domain-cells = <1>;
143		reg = <0 0x10006000 0 0x1000>;
144		clocks = <&topckgen CLK_TOP_MUX_MFG>,
145			 <&topckgen CLK_TOP_MUX_MM>,
146			 <&topckgen CLK_TOP_MUX_VDEC>;
147		clock-names = "mfg", "mm", "vdec";
148		infracfg = <&infrasys>;
149	};
150
151	apmixedsys: apmixed@1000c000 {
152		compatible = "mediatek,mt6797-apmixedsys";
153		reg = <0 0x1000c000 0 0x1000>;
154		#clock-cells = <1>;
155	};
156
157	sysirq: intpol-controller@10200620 {
158		compatible = "mediatek,mt6797-sysirq",
159			     "mediatek,mt6577-sysirq";
160		interrupt-controller;
161		#interrupt-cells = <3>;
162		interrupt-parent = <&gic>;
163		reg = <0 0x10220620 0 0x20>,
164		      <0 0x10220690 0 0x10>;
165	};
166
167	uart0: serial@11002000 {
168		compatible = "mediatek,mt6797-uart",
169			     "mediatek,mt6577-uart";
170		reg = <0 0x11002000 0 0x400>;
171		interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_LOW>;
172		clocks = <&infrasys CLK_INFRA_UART0>,
173			 <&infrasys CLK_INFRA_AP_DMA>;
174		clock-names = "baud", "bus";
175		status = "disabled";
176	};
177
178	uart1: serial@11003000 {
179		compatible = "mediatek,mt6797-uart",
180			     "mediatek,mt6577-uart";
181		reg = <0 0x11003000 0 0x400>;
182		interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_LOW>;
183		clocks = <&infrasys CLK_INFRA_UART1>,
184			 <&infrasys CLK_INFRA_AP_DMA>;
185		clock-names = "baud", "bus";
186		status = "disabled";
187	};
188
189	uart2: serial@11004000 {
190		compatible = "mediatek,mt6797-uart",
191			     "mediatek,mt6577-uart";
192		reg = <0 0x11004000 0 0x400>;
193		interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_LOW>;
194		clocks = <&infrasys CLK_INFRA_UART2>,
195			 <&infrasys CLK_INFRA_AP_DMA>;
196		clock-names = "baud", "bus";
197		status = "disabled";
198	};
199
200	uart3: serial@11005000 {
201		compatible = "mediatek,mt6797-uart",
202			     "mediatek,mt6577-uart";
203		reg = <0 0x11005000 0 0x400>;
204		interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_LOW>;
205		clocks = <&infrasys CLK_INFRA_UART3>,
206			 <&infrasys CLK_INFRA_AP_DMA>;
207		clock-names = "baud", "bus";
208		status = "disabled";
209	};
210
211	mmsys: mmsys_config@14000000 {
212		compatible = "mediatek,mt6797-mmsys", "syscon";
213		reg = <0 0x14000000 0 0x1000>;
214		#clock-cells = <1>;
215	};
216
217	imgsys: imgsys_config@15000000  {
218		compatible = "mediatek,mt6797-imgsys", "syscon";
219		reg = <0 0x15000000 0 0x1000>;
220		#clock-cells = <1>;
221	};
222
223	vdecsys: vdec_gcon@16000000 {
224		compatible = "mediatek,mt6797-vdecsys", "syscon";
225		reg = <0 0x16000000 0 0x10000>;
226		#clock-cells = <1>;
227	};
228
229	vencsys: venc_gcon@17000000 {
230		compatible = "mediatek,mt6797-vencsys", "syscon";
231		reg = <0 0x17000000 0 0x1000>;
232		#clock-cells = <1>;
233	};
234
235	gic: interrupt-controller@19000000 {
236		compatible = "arm,gic-v3";
237		#interrupt-cells = <3>;
238		interrupt-parent = <&gic>;
239		interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
240		interrupt-controller;
241		reg = <0 0x19000000 0 0x10000>,    /* GICD */
242		      <0 0x19200000 0 0x200000>,   /* GICR */
243		      <0 0x10240000 0 0x2000>;     /* GICC */
244	};
245};
246