blob: 81851a0468b678ecad2b5c2ea93f967002b46e20 [file] [log] [blame]
developerfd40db22021-04-29 10:08:25 +08001/*
2 * Copyright (c) 2020 MediaTek Inc.
3 * Author: Sam.Shih <sam.shih@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 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
15#include <dt-bindings/interrupt-controller/irq.h>
16#include <dt-bindings/interrupt-controller/arm-gic.h>
17#include <dt-bindings/phy/phy.h>
18#include <dt-bindings/reset/ti-syscon.h>
developer15adbbf2021-05-24 22:20:07 +080019#include <dt-bindings/clock/mt7986-clk.h>
developer3e9ad9d2021-07-01 16:42:25 +080020#include <dt-bindings/thermal/thermal.h>
developer7f4cdcd2021-08-03 19:29:43 +080021#include <dt-bindings/pinctrl/mt65xx.h>
developere138bcd2021-12-06 09:20:47 +080022#include <dt-bindings/reset/mt7986-resets.h>
developer15adbbf2021-05-24 22:20:07 +080023
developerfd40db22021-04-29 10:08:25 +080024/ {
25 compatible = "mediatek,mt7986a-rfb";
26 interrupt-parent = <&gic>;
27 #address-cells = <2>;
28 #size-cells = <2>;
29 cpus {
30 #address-cells = <1>;
31 #size-cells = <0>;
developer3e9ad9d2021-07-01 16:42:25 +080032 cpu0: cpu@0 {
developerfd40db22021-04-29 10:08:25 +080033 device_type = "cpu";
34 compatible = "arm,cortex-a53";
35 enable-method = "psci";
36 reg = <0x0>;
37 };
38
developer3e9ad9d2021-07-01 16:42:25 +080039 cpu1: cpu@1 {
developerfd40db22021-04-29 10:08:25 +080040 device_type = "cpu";
41 compatible = "arm,cortex-a53";
42 enable-method = "psci";
43 reg = <0x1>;
44 };
45
developer3e9ad9d2021-07-01 16:42:25 +080046 cpu2: cpu@2 {
developerfd40db22021-04-29 10:08:25 +080047 device_type = "cpu";
48 compatible = "arm,cortex-a53";
49 enable-method = "psci";
50 reg = <0x2>;
51 };
52
developer3e9ad9d2021-07-01 16:42:25 +080053 cpu3: cpu@3 {
developerfd40db22021-04-29 10:08:25 +080054 device_type = "cpu";
55 enable-method = "psci";
56 compatible = "arm,cortex-a53";
57 reg = <0x3>;
58 };
59 };
60
61 wed: wed@15010000 {
62 compatible = "mediatek,wed";
63 wed_num = <2>;
64 /* add this property for wed get the pci slot number. */
65 pci_slot_map = <0>, <1>;
66 reg = <0 0x15010000 0 0x1000>,
67 <0 0x15011000 0 0x1000>;
68 interrupt-parent = <&gic>;
69 interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
70 <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>;
71 };
72
73 wed2: wed2@15011000 {
74 compatible = "mediatek,wed2";
75 wed_num = <2>;
76 reg = <0 0x15010000 0 0x1000>,
77 <0 0x15011000 0 0x1000>;
78 interrupt-parent = <&gic>;
79 interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
80 <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>;
81 };
82
83 wdma: wdma@15104800 {
84 compatible = "mediatek,wed-wdma";
85 reg = <0 0x15104800 0 0x400>,
86 <0 0x15104c00 0 0x400>;
87 };
88
89 ap2woccif: ap2woccif@151A5000 {
90 compatible = "mediatek,ap2woccif";
91 reg = <0 0x151A5000 0 0x1000>,
92 <0 0x151AD000 0 0x1000>;
93 interrupt-parent = <&gic>;
94 interrupts = <GIC_SPI 211 IRQ_TYPE_LEVEL_HIGH>,
95 <GIC_SPI 212 IRQ_TYPE_LEVEL_HIGH>;
96 };
97
98 wocpu0_ilm: wocpu0_ilm@151E0000 {
99 compatible = "mediatek,wocpu0_ilm";
100 reg = <0 0x151E0000 0 0x8000>;
101 };
102
103 wocpu1_ilm: wocpu1_ilm@151F0000 {
104 compatible = "mediatek,wocpu1_ilm";
105 reg = <0 0x151F0000 0 0x8000>;
106 };
107
108 wocpu_dlm: wocpu_dlm@151E8000 {
109 compatible = "mediatek,wocpu_dlm";
110 reg = <0 0x151E8000 0 0x2000>,
111 <0 0x151F8000 0 0x2000>;
112
113 resets = <&ethsysrst 0>;
114 reset-names = "wocpu_rst";
115 };
116
117 cpu_boot: wocpu_boot@15194000 {
118 compatible = "mediatek,wocpu_boot";
119 reg = <0 0x15194000 0 0x1000>;
120 };
121
122 reserved-memory {
123 #address-cells = <2>;
124 #size-cells = <2>;
125 ranges;
126
developer4018d422023-05-18 14:27:17 +0800127 /* 256 KiB reserved for ARM Trusted Firmware (BL31) */
developerfd40db22021-04-29 10:08:25 +0800128 secmon_reserved: secmon@43000000 {
developer4018d422023-05-18 14:27:17 +0800129 reg = <0 0x43000000 0 0x40000>;
developerfd40db22021-04-29 10:08:25 +0800130 no-map;
131 };
132
133 wmcpu_emi: wmcpu-reserved@4FC00000 {
134 compatible = "mediatek,wmcpu-reserved";
135 no-map;
136 reg = <0 0x4FC00000 0 0x00100000>;
137 };
138
139 wocpu0_emi: wocpu0_emi@4FD00000 {
140 compatible = "mediatek,wocpu0_emi";
141 no-map;
142 reg = <0 0x4FD00000 0 0x40000>;
143 shared = <0>;
144 };
145
developer86423f02021-10-12 15:20:50 +0800146 wocpu1_emi: wocpu1_emi@4FD40000 {
developerfd40db22021-04-29 10:08:25 +0800147 compatible = "mediatek,wocpu1_emi";
148 no-map;
149 reg = <0 0x4FD40000 0 0x40000>;
150 shared = <0>;
151 };
152
developer86423f02021-10-12 15:20:50 +0800153 wocpu_data: wocpu_data@4FD80000 {
developerfd40db22021-04-29 10:08:25 +0800154 compatible = "mediatek,wocpu_data";
155 no-map;
developerd6d159a2022-12-09 16:53:47 +0800156 reg = <0 0x4FD80000 0 0x240000>;
developerfd40db22021-04-29 10:08:25 +0800157 shared = <1>;
158 };
159 };
160
161 psci {
162 compatible = "arm,psci-0.2";
163 method = "smc";
164 };
165
developer15adbbf2021-05-24 22:20:07 +0800166 clk40m: oscillator@0 {
167 compatible = "fixed-clock";
168 #clock-cells = <0>;
169 clock-frequency = <40000000>;
170 clock-output-names = "clkxtal";
171 };
172
developerfd40db22021-04-29 10:08:25 +0800173 system_clk: dummy_system_clk {
174 compatible = "fixed-clock";
175 clock-frequency = <40000000>;
176 #clock-cells = <0>;
177 };
178
developerfd40db22021-04-29 10:08:25 +0800179 timer {
180 compatible = "arm,armv8-timer";
181 interrupt-parent = <&gic>;
developerfe063092023-02-14 17:36:36 +0800182 clock-frequency = <12986200>;
developerfd40db22021-04-29 10:08:25 +0800183 interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
184 <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
185 <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
186 <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>;
developerfd40db22021-04-29 10:08:25 +0800187 };
188
developer15adbbf2021-05-24 22:20:07 +0800189 infracfg_ao: infracfg_ao@10001000 {
190 compatible = "mediatek,mt7986-infracfg_ao", "syscon";
developer8b9f2852021-06-03 21:53:08 +0800191 reg = <0 0x10001000 0 0x68>;
developer15adbbf2021-05-24 22:20:07 +0800192 #clock-cells = <1>;
193 };
194
195 infracfg: infracfg@10001040 {
196 compatible = "mediatek,mt7986-infracfg", "syscon";
developer8b9f2852021-06-03 21:53:08 +0800197 reg = <0 0x1000106c 0 0x1000>;
developer15adbbf2021-05-24 22:20:07 +0800198 #clock-cells = <1>;
199 };
200
201 topckgen: topckgen@1001B000 {
202 compatible = "mediatek,mt7986-topckgen", "syscon";
203 reg = <0 0x1001B000 0 0x1000>;
204 #clock-cells = <1>;
205 };
206
207 apmixedsys: apmixedsys@1001E000 {
208 compatible = "mediatek,mt7986-apmixedsys", "syscon";
209 reg = <0 0x1001E000 0 0x1000>;
210 #clock-cells = <1>;
211 };
212
developerfd40db22021-04-29 10:08:25 +0800213 watchdog: watchdog@1001c000 {
developere138bcd2021-12-06 09:20:47 +0800214 compatible = "mediatek,mt7986-wdt";
developerfd40db22021-04-29 10:08:25 +0800215 reg = <0 0x1001c000 0 0x1000>;
216 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
217 #reset-cells = <1>;
218 };
219
220 gic: interrupt-controller@c000000 {
221 compatible = "arm,gic-v3";
222 #interrupt-cells = <3>;
223 interrupt-parent = <&gic>;
224 interrupt-controller;
225 reg = <0 0x0c000000 0 0x40000>, /* GICD */
226 <0 0x0c080000 0 0x200000>; /* GICR */
227
228 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
229 };
230
developer8b9f2852021-06-03 21:53:08 +0800231 pwm: pwm@10048000 {
232 compatible = "mediatek,mt7986-pwm";
233 reg = <0 0x10048000 0 0x1000>;
234 #clock-cells = <1>;
235 #pwm-cells = <2>;
236 interrupts = <GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>;
237 clocks = <&infracfg CK_INFRA_PWM>,
238 <&infracfg_ao CK_INFRA_PWM_BSEL>,
239 <&infracfg_ao CK_INFRA_PWM1_CK>,
240 <&infracfg_ao CK_INFRA_PWM2_CK>;
241 assigned-clocks = <&topckgen CK_TOP_PWM_SEL>,
242 <&infracfg_ao CK_INFRA_PWM_BSEL>,
243 <&infracfg_ao CK_INFRA_PWM1_SEL>,
244 <&infracfg_ao CK_INFRA_PWM2_SEL>;
245 assigned-clock-parents = <&topckgen CK_TOP_CB_M_D4>,
246 <&infracfg CK_INFRA_PWM>,
247 <&infracfg CK_INFRA_PWM>,
248 <&infracfg CK_INFRA_PWM>;
249 clock-names = "top", "main", "pwm1", "pwm2";
250 status = "disabled";
251 };
252
developer017b92f2022-05-25 11:37:11 +0800253 fan: pwm-fan {
254 compatible = "pwm-fan";
255 /* cooling level (0, 1, 2) : (0% duty, 50% duty, 100% duty) */
256 cooling-levels = <0 128 255>;
257 #cooling-cells = <2>;
258 status = "disabled";
259 };
260
developerfd40db22021-04-29 10:08:25 +0800261 uart0: serial@11002000 {
262 compatible = "mediatek,mt7986-uart",
263 "mediatek,mt6577-uart";
264 reg = <0 0x11002000 0 0x400>;
265 interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800266 clocks = <&infracfg_ao CK_INFRA_UART0_CK>;
267 assigned-clocks = <&topckgen CK_TOP_UART_SEL>,
268 <&infracfg_ao CK_INFRA_UART0_SEL>;
269 assigned-clock-parents = <&topckgen CK_TOP_CB_CKSQ_40M>,
270 <&infracfg CK_INFRA_UART>;
developerfd40db22021-04-29 10:08:25 +0800271 status = "disabled";
272 };
273
274 uart1: serial@11003000 {
275 compatible = "mediatek,mt7986-uart",
276 "mediatek,mt6577-uart";
277 reg = <0 0x11003000 0 0x400>;
278 interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800279 clocks = <&infracfg_ao CK_INFRA_UART1_CK>;
280 assigned-clocks = <&infracfg_ao CK_INFRA_UART1_SEL>;
281 assigned-clock-parents = <&infracfg CK_INFRA_CK_F26M>;
developerfd40db22021-04-29 10:08:25 +0800282 status = "disabled";
283 };
284
285 uart2: serial@11004000 {
286 compatible = "mediatek,mt7986-uart",
287 "mediatek,mt6577-uart";
288 reg = <0 0x11004000 0 0x400>;
289 interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800290 clocks = <&infracfg_ao CK_INFRA_UART2_CK>;
291 assigned-clocks = <&infracfg_ao CK_INFRA_UART2_SEL>;
292 assigned-clock-parents = <&infracfg CK_INFRA_CK_F26M>;
developerfd40db22021-04-29 10:08:25 +0800293 status = "disabled";
294 };
295
developer8b9f2852021-06-03 21:53:08 +0800296 i2c0: i2c@11008000 {
297 compatible = "mediatek,mt7986-i2c";
298 reg = <0 0x11008000 0 0x90>,
299 <0 0x10217080 0 0x80>;
300 interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
developerccffa942021-09-22 15:57:01 +0800301 clock-div = <5>;
developer8b9f2852021-06-03 21:53:08 +0800302 clocks = <&infracfg_ao CK_INFRA_I2CO_CK>,
303 <&infracfg_ao CK_INFRA_AP_DMA_CK>;
304 clock-names = "main", "dma";
305 #address-cells = <1>;
306 #size-cells = <0>;
307 status = "disabled";
308 };
309
developer3e9ad9d2021-07-01 16:42:25 +0800310 thermal-zones {
311 cpu_thermal: cpu-thermal {
312 polling-delay-passive = <1000>;
313 polling-delay = <1000>;
314 thermal-sensors = <&thermal 0>;
developer017b92f2022-05-25 11:37:11 +0800315 trips {
developer209e52d2022-06-30 11:32:57 +0800316 cpu_trip_crit: crit {
317 temperature = <125000>;
318 hysteresis = <2000>;
319 type = "critical";
320 };
321
developer017b92f2022-05-25 11:37:11 +0800322 cpu_trip_hot: hot {
developer209e52d2022-06-30 11:32:57 +0800323 temperature = <120000>;
developer017b92f2022-05-25 11:37:11 +0800324 hysteresis = <2000>;
325 type = "hot";
326 };
327
developer209e52d2022-06-30 11:32:57 +0800328 cpu_trip_active_high: active-high {
329 temperature = <115000>;
330 hysteresis = <2000>;
331 type = "active";
332 };
333
334 cpu_trip_active_low: active-low {
335 temperature = <85000>;
developer017b92f2022-05-25 11:37:11 +0800336 hysteresis = <2000>;
337 type = "active";
338 };
339
340 cpu_trip_passive: passive {
developer209e52d2022-06-30 11:32:57 +0800341 temperature = <40000>;
developer017b92f2022-05-25 11:37:11 +0800342 hysteresis = <2000>;
343 type = "passive";
344 };
345 };
developer209e52d2022-06-30 11:32:57 +0800346
developer017b92f2022-05-25 11:37:11 +0800347 cooling-maps {
developer209e52d2022-06-30 11:32:57 +0800348 cpu-active-high {
349 /* active: set fan to cooling level 2 */
developer017b92f2022-05-25 11:37:11 +0800350 cooling-device = <&fan 2 2>;
developer209e52d2022-06-30 11:32:57 +0800351 trip = <&cpu_trip_active_high>;
developer017b92f2022-05-25 11:37:11 +0800352 };
353
developer209e52d2022-06-30 11:32:57 +0800354 cpu-active-low {
developer017b92f2022-05-25 11:37:11 +0800355 /* active: set fan to cooling level 1 */
356 cooling-device = <&fan 1 1>;
developer209e52d2022-06-30 11:32:57 +0800357 trip = <&cpu_trip_active_low>;
developer017b92f2022-05-25 11:37:11 +0800358 };
359
360 cpu-passive {
361 /* passive: set fan to cooling level 0 */
362 cooling-device = <&fan 0 0>;
363 trip = <&cpu_trip_passive>;
364 };
365 };
366
developer3e9ad9d2021-07-01 16:42:25 +0800367 };
368 };
369
370 thermal: thermal@1100c800 {
371 #thermal-sensor-cells = <1>;
372 compatible = "mediatek,mt7986-thermal";
developer4173d3c2021-08-12 11:21:49 +0800373 reg = <0 0x1100c800 0 0x800>;
developer3e9ad9d2021-07-01 16:42:25 +0800374 interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
375 clocks = <&infracfg_ao CK_INFRA_THERM_CK>,
developerdf32d112021-08-29 11:58:01 +0800376 <&infracfg_ao CK_INFRA_ADC_26M_CK>,
377 <&infracfg_ao CK_INFRA_ADC_FRC_CK>;
378 clock-names = "therm", "auxadc", "adc_32k";
developer3e9ad9d2021-07-01 16:42:25 +0800379 mediatek,auxadc = <&auxadc>;
380 mediatek,apmixedsys = <&apmixedsys>;
381 nvmem-cells = <&thermal_calibration>;
382 nvmem-cell-names = "calibration-data";
383 };
384
developere2ed4342021-07-02 16:04:23 +0800385 pcie0: pcie@11280000 {
developerfd40db22021-04-29 10:08:25 +0800386 compatible = "mediatek,mt7986-pcie";
developerfd40db22021-04-29 10:08:25 +0800387 reg = <0 0x11280000 0 0x5000>;
developere2ed4342021-07-02 16:04:23 +0800388 reg-names = "pcie-mac";
developerfd40db22021-04-29 10:08:25 +0800389 #address-cells = <3>;
390 #size-cells = <2>;
391 interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
392 bus-range = <0x00 0xff>;
393 ranges = <0x82000000 0 0x20000000
394 0x0 0x20000000 0 0x10000000>;
developere2ed4342021-07-02 16:04:23 +0800395 status = "disabled";
developerfd40db22021-04-29 10:08:25 +0800396
developere2ed4342021-07-02 16:04:23 +0800397 clocks = <&infracfg_ao CK_INFRA_PCIE_SEL>,
398 <&infracfg_ao CK_INFRA_IPCIE_CK>,
399 <&infracfg_ao CK_INFRA_IPCIE_PIPE_CK>,
400 <&infracfg_ao CK_INFRA_IPCIER_CK>,
401 <&infracfg_ao CK_INFRA_IPCIEB_CK>;
402
developer604b5ac2021-12-30 14:35:44 +0800403 phys = <&pcieport PHY_TYPE_PCIE>;
404 phy-names = "pcie-phy";
405
developere2ed4342021-07-02 16:04:23 +0800406 #interrupt-cells = <1>;
407 interrupt-map-mask = <0 0 0 7>;
408 interrupt-map = <0 0 0 1 &pcie_intc0 0>,
409 <0 0 0 2 &pcie_intc0 1>,
410 <0 0 0 3 &pcie_intc0 2>,
411 <0 0 0 4 &pcie_intc0 3>;
412 pcie_intc0: interrupt-controller {
413 interrupt-controller;
414 #address-cells = <0>;
developerfd40db22021-04-29 10:08:25 +0800415 #interrupt-cells = <1>;
developerfd40db22021-04-29 10:08:25 +0800416 };
developer472b74d2022-05-31 18:17:18 +0800417
418 slot0: pcie@0,0 {
419 reg = <0x0000 0 0 0 0>;
420 };
developerfd40db22021-04-29 10:08:25 +0800421 };
422
developer3e916422021-05-27 16:40:29 +0800423 crypto: crypto@10320000 {
424 compatible = "inside-secure,safexcel-eip97";
425 reg = <0 0x10320000 0 0x40000>;
426 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>,
427 <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>,
428 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>,
429 <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>;
430 interrupt-names = "ring0", "ring1", "ring2", "ring3";
developere1993bd2021-07-06 13:48:40 +0800431 clocks = <&infracfg_ao CK_INFRA_EIP97_CK>;
432 clock-names = "infra_eip97_ck";
433 assigned-clocks = <&topckgen CK_TOP_EIP_B_SEL>;
434 assigned-clock-parents = <&topckgen CK_TOP_CB_NET2_800M>;
developer3e916422021-05-27 16:40:29 +0800435 };
436
developerfd40db22021-04-29 10:08:25 +0800437 pio: pinctrl@1001f000 {
438 compatible = "mediatek,mt7986-pinctrl";
439 reg = <0 0x1001f000 0 0x1000>,
440 <0 0x11c30000 0 0x1000>,
441 <0 0x11c40000 0 0x1000>,
442 <0 0x11e20000 0 0x1000>,
443 <0 0x11e30000 0 0x1000>,
444 <0 0x11f00000 0 0x1000>,
445 <0 0x11f10000 0 0x1000>,
446 <0 0x1000b000 0 0x1000>;
447 reg-names = "gpio_base", "iocfg_rt_base", "iocfg_rb_base",
448 "iocfg_lt_base", "iocfg_lb_base", "iocfg_tr_base",
449 "iocfg_tl_base", "eint";
450 gpio-controller;
451 #gpio-cells = <2>;
452 gpio-ranges = <&pio 0 0 100>;
453 interrupt-controller;
developera7f8fa42021-06-07 16:46:34 +0800454 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
developerfd40db22021-04-29 10:08:25 +0800455 interrupt-parent = <&gic>;
456 #interrupt-cells = <2>;
457 };
458
459 ethsys: syscon@15000000 {
460 #address-cells = <1>;
461 #size-cells = <1>;
developer8b9f2852021-06-03 21:53:08 +0800462 compatible = "mediatek,mt7986-ethsys_ck",
developerfd40db22021-04-29 10:08:25 +0800463 "syscon";
464 reg = <0 0x15000000 0 0x1000>;
465 #clock-cells = <1>;
466 #reset-cells = <1>;
467
468 ethsysrst: reset-controller {
469 compatible = "ti,syscon-reset";
470 #reset-cells = <1>;
471 ti,reset-bits = <0x34 4 0x34 4 0x34 4 (ASSERT_SET | DEASSERT_CLEAR | STATUS_SET)>;
472 };
473 };
474
475 eth: ethernet@15100000 {
476 compatible = "mediatek,mt7986-eth";
477 reg = <0 0x15100000 0 0x80000>;
developer94806ec2023-05-19 14:16:44 +0800478 interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>,
479 <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>,
480 <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>,
481 <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>,
482 <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>,
483 <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>,
484 <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
485 <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800486 clocks = <&ethsys CK_ETH_FE_EN>,
487 <&ethsys CK_ETH_GP2_EN>,
488 <&ethsys CK_ETH_GP1_EN>,
489 <&ethsys CK_ETH_WOCPU1_EN>,
490 <&ethsys CK_ETH_WOCPU0_EN>,
developer77bbf432021-06-28 18:39:08 +0800491 <&sgmiisys0 CK_SGM0_TX_EN>,
492 <&sgmiisys0 CK_SGM0_RX_EN>,
493 <&sgmiisys0 CK_SGM0_CK0_EN>,
494 <&sgmiisys0 CK_SGM0_CDR_CK0_EN>,
495 <&sgmiisys1 CK_SGM1_TX_EN>,
496 <&sgmiisys1 CK_SGM1_RX_EN>,
497 <&sgmiisys1 CK_SGM1_CK1_EN>,
498 <&sgmiisys1 CK_SGM1_CDR_CK1_EN>;
developerfd40db22021-04-29 10:08:25 +0800499 clock-names = "fe", "gp2", "gp1", "wocpu1", "wocpu0",
500 "sgmii_tx250m", "sgmii_rx250m",
501 "sgmii_cdr_ref", "sgmii_cdr_fb",
502 "sgmii2_tx250m", "sgmii2_rx250m",
503 "sgmii2_cdr_ref", "sgmii2_cdr_fb";
developer8b9f2852021-06-03 21:53:08 +0800504 assigned-clocks = <&topckgen CK_TOP_NETSYS_2X_SEL>,
505 <&topckgen CK_TOP_SGM_325M_SEL>;
506 assigned-clock-parents = <&topckgen CK_TOP_CB_NET2_800M>,
507 <&topckgen CK_TOP_CB_SGM_325M>;
developerfd40db22021-04-29 10:08:25 +0800508 mediatek,ethsys = <&ethsys>;
509 mediatek,sgmiisys = <&sgmiisys0>, <&sgmiisys1>;
510 #reset-cells = <1>;
511 #address-cells = <1>;
512 #size-cells = <0>;
513 status = "disabled";
514 };
515
516 hnat: hnat@15000000 {
517 compatible = "mediatek,mtk-hnat_v4";
518 reg = <0 0x15100000 0 0x80000>;
519 resets = <&ethsys 0>;
520 reset-names = "mtketh";
521 status = "disabled";
522 };
523
524 sgmiisys0: syscon@10060000 {
developer15adbbf2021-05-24 22:20:07 +0800525 compatible = "mediatek,mt7986-sgmiisys",
526 "mediatek,mt7986-sgmiisys_0",
527 "syscon";
developerfd40db22021-04-29 10:08:25 +0800528 reg = <0 0x10060000 0 0x1000>;
529 #clock-cells = <1>;
530 };
531
532 sgmiisys1: syscon@10070000 {
developer15adbbf2021-05-24 22:20:07 +0800533 compatible = "mediatek,mt7986-sgmiisys",
534 "mediatek,mt7986-sgmiisys_1",
535 "syscon";
developerfd40db22021-04-29 10:08:25 +0800536 reg = <0 0x10070000 0 0x1000>;
537 #clock-cells = <1>;
538 };
539
540 snand: snfi@11005000 {
541 compatible = "mediatek,mt7986-snand";
542 reg = <0 0x11005000 0 0x1000>, <0 0x11006000 0 0x1000>;
543 reg-names = "nfi", "ecc";
544 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
developer248c10b2021-07-14 16:11:19 +0800545 clocks = <&infracfg_ao CK_INFRA_SPINFI1_CK>,
546 <&infracfg_ao CK_INFRA_NFI1_CK>,
547 <&infracfg_ao CK_INFRA_NFI_HCK_CK>;
548 clock-names = "pad_clk", "nfi_clk", "nfi_hclk";
developer8b9f2852021-06-03 21:53:08 +0800549 assigned-clocks = <&topckgen CK_TOP_SPINFI_SEL>,
550 <&topckgen CK_TOP_NFI1X_SEL>;
developere5562612021-08-05 15:50:40 +0800551 assigned-clock-parents = <&topckgen CK_TOP_CB_M_D8>,
552 <&topckgen CK_TOP_CB_M_D8>;
developerfd40db22021-04-29 10:08:25 +0800553 #address-cells = <1>;
554 #size-cells = <0>;
555 status = "disabled";
556 };
557
558 wbsys: wbsys@18000000 {
developereb527ef2022-01-12 10:38:12 +0800559 compatible = "mediatek,wbsys",
560 "mediatek,mt7986-wmac";
developere138bcd2021-12-06 09:20:47 +0800561 resets = <&watchdog MT7986_TOPRGU_CONSYS_RST>;
562 reset-names = "consys";
563 reg = <0 0x18000000 0 0x1000000>,
564 <0 0x10003000 0 0x1000>,
developera5ea3d22022-02-17 09:23:09 +0800565 <0 0x11d10000 0 0x1000>;
developerfd40db22021-04-29 10:08:25 +0800566 interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
567 <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>,
568 <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>,
569 <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>;
570 chip_id = <0x7986>;
developere138bcd2021-12-06 09:20:47 +0800571 memory-region = <&wmcpu_emi>;
developerfd40db22021-04-29 10:08:25 +0800572 };
573
574 wed_pcie: wed_pcie@10003000 {
575 compatible = "mediatek,wed_pcie";
576 reg = <0 0x10003000 0 0x10>;
577 };
578
579 spi0: spi@1100a000 {
developer44700a22021-07-13 19:06:49 +0800580 compatible = "mediatek,ipm-spi-quad";
developerfd40db22021-04-29 10:08:25 +0800581 reg = <0 0x1100a000 0 0x100>;
582 interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800583 clocks = <&topckgen CK_TOP_CB_M_D2>,
developer44700a22021-07-13 19:06:49 +0800584 <&topckgen CK_TOP_SPI_SEL>,
developer8b9f2852021-06-03 21:53:08 +0800585 <&infracfg_ao CK_INFRA_SPI0_CK>,
developer44700a22021-07-13 19:06:49 +0800586 <&infracfg_ao CK_INFRA_SPI0_HCK_CK>;
587 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
developerfd40db22021-04-29 10:08:25 +0800588 status = "disabled";
589 };
590
591 spi1: spi@1100b000 {
developer44700a22021-07-13 19:06:49 +0800592 compatible = "mediatek,ipm-spi-single";
developerfd40db22021-04-29 10:08:25 +0800593 reg = <0 0x1100b000 0 0x100>;
594 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800595 clocks = <&topckgen CK_TOP_CB_M_D2>,
developer44700a22021-07-13 19:06:49 +0800596 <&topckgen CK_TOP_SPIM_MST_SEL>,
developer8b9f2852021-06-03 21:53:08 +0800597 <&infracfg_ao CK_INFRA_SPI1_CK>,
developer44700a22021-07-13 19:06:49 +0800598 <&infracfg_ao CK_INFRA_SPI1_HCK_CK>;
599 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
developerfd40db22021-04-29 10:08:25 +0800600 status = "disabled";
601 };
602
developer637f5552021-05-27 17:45:27 +0800603 mmc0: mmc@11230000 {
604 compatible = "mediatek,mt7986-mmc";
605 reg = <0 0x11230000 0 0x1000>,
606 <0 0x11c20000 0 0x1000>;
607 interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
developer8b9f2852021-06-03 21:53:08 +0800608 clocks = <&topckgen CK_TOP_EMMC_416M>,
developer30389d92022-05-10 09:35:17 +0800609 <&infracfg_ao CK_INFRA_MSDC_HCK_CK>,
610 <&infracfg_ao CK_INFRA_MSDC_CK>,
611 <&infracfg_ao CK_INFRA_MSDC_66M_CK>,
612 <&infracfg_ao CK_INFRA_MSDC_133M_CK>;
613 clock-names = "source", "hclk", "source_cg", "sys_cg", "axi_cg";
developer8b9f2852021-06-03 21:53:08 +0800614 assigned-clocks = <&topckgen CK_TOP_EMMC_416M_SEL>,
615 <&topckgen CK_TOP_EMMC_250M_SEL>;
developerf089cc02021-09-11 17:23:41 +0800616 assigned-clock-parents = <&topckgen CK_TOP_CB_M_416M>,
617 <&topckgen CK_TOP_NET1_D5_D2>;
developer637f5552021-05-27 17:45:27 +0800618 status = "disabled";
619 };
620
developeree2df732021-05-21 15:19:42 +0800621 auxadc: adc@1100d000 {
622 compatible = "mediatek,mt7986-auxadc",
623 "mediatek,mt7622-auxadc";
624 reg = <0 0x1100d000 0 0x1000>;
developer2cdfa052021-08-12 10:41:52 +0800625 clocks = <&infracfg_ao CK_INFRA_ADC_26M_CK>,
626 <&infracfg_ao CK_INFRA_ADC_FRC_CK>;
627 clock-names = "main", "32k";
developeree2df732021-05-21 15:19:42 +0800628 #io-channel-cells = <1>;
developer8b9f2852021-06-03 21:53:08 +0800629 status = "disabled";
developeree2df732021-05-21 15:19:42 +0800630 };
631
developerfd40db22021-04-29 10:08:25 +0800632 consys: consys@10000000 {
633 compatible = "mediatek,mt7986-consys";
634 reg = <0 0x10000000 0 0x8600000>;
635 memory-region = <&wmcpu_emi>;
636 };
637
638 xhci: xhci@11200000 {
639 compatible = "mediatek,mt7986-xhci",
640 "mediatek,mtk-xhci";
641 reg = <0 0x11200000 0 0x2e00>,
642 <0 0x11203e00 0 0x0100>;
643 reg-names = "mac", "ippc";
644 interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>;
645 phys = <&u2port0 PHY_TYPE_USB2>,
646 <&u3port0 PHY_TYPE_USB3>,
647 <&u2port1 PHY_TYPE_USB2>;
648 clocks = <&system_clk>,
649 <&system_clk>,
650 <&system_clk>,
651 <&system_clk>,
652 <&system_clk>;
653 clock-names = "sys_ck",
654 "xhci_ck",
655 "ref_ck",
656 "mcu_ck",
657 "dma_ck";
658 #address-cells = <2>;
659 #size-cells = <2>;
developer604b5ac2021-12-30 14:35:44 +0800660 status = "okay";
661 };
662
663 pcietphy: pcie-phy@11c00000 {
664 compatible = "mediatek,mt7986",
developer98e5cb22022-01-28 17:31:23 +0800665 "mediatek,generic-tphy-v4";
developer604b5ac2021-12-30 14:35:44 +0800666 #address-cells = <2>;
667 #size-cells = <2>;
668 ranges;
developerfd40db22021-04-29 10:08:25 +0800669 status = "okay";
developer604b5ac2021-12-30 14:35:44 +0800670
671 pcieport: pcie-phy@11c00000 {
672 reg = <0 0x11c00000 0 0x20000>;
673 clocks = <&system_clk>;
674 clock-names = "ref";
675 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800676 auto_load_valid;
677 auto_load_valid_ln1;
678 nvmem-cells = <&pcie_intr_ln0>,
679 <&pcie_rx_imp_ln0>,
680 <&pcie_tx_imp_ln0>,
681 <&pcie_auto_load_valid_ln0>,
682 <&pcie_intr_ln1>,
683 <&pcie_rx_imp_ln1>,
684 <&pcie_tx_imp_ln1>,
685 <&pcie_auto_load_valid_ln1>;
686 nvmem-cell-names = "intr",
687 "rx_imp",
688 "tx_imp",
689 "auto_load_valid",
690 "intr_ln1",
691 "rx_imp_ln1",
692 "tx_imp_ln1",
693 "auto_load_valid_ln1";
developer604b5ac2021-12-30 14:35:44 +0800694 status = "okay";
695 };
developerfd40db22021-04-29 10:08:25 +0800696 };
697
698 usbtphy: usb-phy@11e10000 {
699 compatible = "mediatek,mt7986",
700 "mediatek,generic-tphy-v2";
701 #address-cells = <2>;
702 #size-cells = <2>;
703 ranges;
704 status = "okay";
705
706 u2port0: usb-phy@11e10000 {
707 reg = <0 0x11e10000 0 0x700>;
708 clocks = <&system_clk>;
709 clock-names = "ref";
710 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800711 auto_load_valid;
712 nvmem-cells = <&u2_intr_p0>, <&u2_auto_load_valid_p0>;
713 nvmem-cell-names = "intr", "auto_load_valid";
developerfd40db22021-04-29 10:08:25 +0800714 status = "okay";
715 };
716
717 u3port0: usb-phy@11e10700 {
718 reg = <0 0x11e10700 0 0x900>;
719 clocks = <&system_clk>;
720 clock-names = "ref";
721 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800722 auto_load_valid;
723 nvmem-cells = <&comb_intr_p0>,
724 <&comb_rx_imp_p0>,
725 <&comb_tx_imp_p0>,
726 <&comb_auto_load_valid>;
727 nvmem-cell-names = "intr", "rx_imp", "tx_imp", "auto_load_valid";
developerfd40db22021-04-29 10:08:25 +0800728 status = "okay";
729 };
730
731 u2port1: usb-phy@11e11000 {
732 reg = <0 0x11e11000 0 0x700>;
733 clocks = <&system_clk>;
734 clock-names = "ref";
735 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800736 auto_load_valid;
737 nvmem-cells = <&u2_intr_p1>, <&u2_auto_load_valid_p1>;
738 nvmem-cell-names = "intr", "auto_load_valid";
developerfd40db22021-04-29 10:08:25 +0800739 status = "okay";
740 };
741 };
developer15adbbf2021-05-24 22:20:07 +0800742
743 clkitg: clkitg {
744 compatible = "simple-bus";
745 };
developerfbbf02b2021-06-25 09:30:28 +0800746
developere1993bd2021-07-06 13:48:40 +0800747 afe: audio-controller@11210000 {
developerbe797a32021-12-16 16:56:09 +0800748 compatible = "mediatek,mt79xx-audio";
developere1993bd2021-07-06 13:48:40 +0800749 reg = <0 0x11210000 0 0x9000>;
750 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
751 clocks = <&infracfg_ao CK_INFRA_AUD_BUS_CK>,
752 <&infracfg_ao CK_INFRA_AUD_26M_CK>,
753 <&infracfg_ao CK_INFRA_AUD_L_CK>,
754 <&infracfg_ao CK_INFRA_AUD_AUD_CK>,
755 <&infracfg_ao CK_INFRA_AUD_EG2_CK>;
756 clock-names = "aud_bus_ck",
757 "aud_26m_ck",
758 "aud_l_ck",
759 "aud_aud_ck",
760 "aud_eg2_ck";
761 assigned-clocks = <&topckgen CK_TOP_A1SYS_SEL>,
762 <&topckgen CK_TOP_AUD_L_SEL>,
763 <&topckgen CK_TOP_A_TUNER_SEL>;
764 assigned-clock-parents = <&topckgen CK_TOP_APLL2_D4>,
765 <&topckgen CK_TOP_CB_APLL2_196M>,
766 <&topckgen CK_TOP_APLL2_D4>;
767 };
768
developerfbbf02b2021-06-25 09:30:28 +0800769 trng: trng@1020f000 {
770 compatible = "mediatek,mt7986-rng",
771 "mediatek,mt7623-rng";
772 reg = <0 0x1020f000 0 0x100>;
773 clocks = <&infracfg_ao CK_INFRA_TRNG_CK>;
774 clock-names = "rng";
775 };
developer86ee1e12021-06-30 11:18:53 +0800776
777 ice: ice_debug {
778 compatible = "mediatek,mt7986-ice_debug",
779 "mediatek,mt2701-ice_debug";
developer66b5c8d2021-07-16 14:02:47 +0800780 clocks = <&infracfg_ao CK_INFRA_DBG_CK>,
781 <&topckgen CK_TOP_ARM_DB_JTSEL>;
782 clock-names = "ice_dbg", "dbg_jtsel";
developer86ee1e12021-06-30 11:18:53 +0800783 };
developer3e9ad9d2021-07-01 16:42:25 +0800784
785 efuse: efuse@11d00000 {
786 compatible = "mediatek,mt7986-efuse",
787 "mediatek,efuse";
788 reg = <0 0x11d00000 0 0x1000>;
789 #address-cells = <1>;
790 #size-cells = <1>;
791
792 thermal_calibration: calib@274 {
793 reg = <0x274 0xc>;
794 };
developer98e5cb22022-01-28 17:31:23 +0800795
796 comb_auto_load_valid: usb3-alv-imp@8da {
797 reg = <0x8da 1>;
798 bits = <0 1>;
799 };
800
801 comb_rx_imp_p0: usb3-rx-imp@8d8 {
802 reg = <0x8d8 1>;
803 bits = <0 5>;
804 };
805
806 comb_tx_imp_p0: usb3-tx-imp@8d8 {
807 reg = <0x8d8 2>;
808 bits = <5 5>;
809 };
810
811 comb_intr_p0: usb3-intr@8d9 {
812 reg = <0x8d9 1>;
813 bits = <2 6>;
814 };
815
816 u2_auto_load_valid_p0: usb2-alv-p0@8e0 {
817 reg = <0x8e0 1>;
818 bits = <0 1>;
819 };
820
821 u2_intr_p0: usb2-intr-p0@8e0 {
822 reg = <0x8e0 1>;
823 bits = <1 5>;
824 };
825
826 u2_auto_load_valid_p1: usb2-alv-p1@8e0 {
827 reg = <0x8e0 2>;
828 bits = <6 1>;
829 };
830
831 u2_intr_p1: usb2-intr-p1@8e0 {
832 reg = <0x8e0 2>;
833 bits = <7 5>;
834 };
835
836 pcie_rx_imp_ln0: pcie-rx-imp@8d0 {
837 reg = <0x8d0 1>;
838 bits = <0 5>;
839 };
840
841 pcie_tx_imp_ln0: pcie-tx-imp@8d0 {
842 reg = <0x8d0 2>;
843 bits = <5 5>;
844 };
845
846 pcie_intr_ln0: pcie-intr@8d1 {
847 reg = <0x8d1 1>;
848 bits = <2 6>;
849 };
850
851 pcie_auto_load_valid_ln0: pcie-ln0-alv@8d4 {
852 reg = <0x8d4 1>;
853 bits = <0 1>;
854 };
855
856 pcie_rx_imp_ln1: pcie-rx-imp@8d2 {
857 reg = <0x8d2 1>;
858 bits = <0 5>;
859 };
860
861 pcie_tx_imp_ln1: pcie-tx-imp@8d2 {
862 reg = <0x8d2 2>;
863 bits = <5 5>;
864 };
865
866 pcie_intr_ln1: pcie-intr@8d3 {
867 reg = <0x8d3 1>;
868 bits = <2 6>;
869 };
870
871 pcie_auto_load_valid_ln1: pcie-ln1-alv@8d4 {
872 reg = <0x8d4 1>;
873 bits = <1 1>;
874 };
developer3e9ad9d2021-07-01 16:42:25 +0800875 };
developerfd40db22021-04-29 10:08:25 +0800876};
developer15adbbf2021-05-24 22:20:07 +0800877
developer8b9f2852021-06-03 21:53:08 +0800878#include "mt7986-clkitg.dtsi"