blob: acf45eab4e66176b07b5bf3cf67546f80a69f242 [file] [log] [blame]
developer2cdaeb12022-10-04 20:25:05 +08001// SPDX-License-Identifier: (GPL-2.0 OR MIT)
2/*
3 * Copyright (C) 2021 MediaTek Inc.
4 * Author: Sam.Shih <sam.shih@mediatek.com>
5 */
6
7#include <dt-bindings/interrupt-controller/irq.h>
8#include <dt-bindings/interrupt-controller/arm-gic.h>
9#include <dt-bindings/phy/phy.h>
10#include <dt-bindings/reset/ti-syscon.h>
11#include <dt-bindings/clock/mt7988-clk.h>
12#include <dt-bindings/pinctrl/mt65xx.h>
13#include <dt-bindings/thermal/thermal.h>
14#include <dt-bindings/regulator/richtek,rt5190a-regulator.h>
15#include <dt-bindings/power/mt7988-power.h>
16
17/ {
18 compatible = "mediatek,mt7988-rfb";
19 interrupt-parent = <&gic>;
20 #address-cells = <2>;
21 #size-cells = <2>;
22 cpus {
23 #address-cells = <1>;
24 #size-cells = <0>;
25 cpu@0 {
26 device_type = "cpu";
27 compatible = "arm,cortex-a73";
28 enable-method = "psci";
29 reg = <0x0>;
30 clocks = <&mcusys CK_MCU_ARM_DIV_SEL>,
31 <&topckgen CK_TOP_CB_NET1_D4>,
32 <&apmixedsys CK_APMIXED_ARM_B>,
33 <&mcusys CK_MCU_BUS_DIV_SEL>,
34 <&apmixedsys CK_APMIXED_CCIPLL2_B>;
35 clock-names = "cpu", "intermediate", "armpll", "cci",
36 "ccipll";
37 operating-points-v2 = <&cluster0_opp>;
38 nvmem-cells = <&cpufreq_calibration>;
39 nvmem-cell-names = "calibration-data";
40 };
41
42 cpu@1 {
43 device_type = "cpu";
44 compatible = "arm,cortex-a73";
45 enable-method = "psci";
46 reg = <0x1>;
47 clocks = <&mcusys CK_MCU_ARM_DIV_SEL>,
48 <&topckgen CK_TOP_CB_NET1_D4>,
49 <&apmixedsys CK_APMIXED_ARM_B>,
50 <&mcusys CK_MCU_BUS_DIV_SEL>,
51 <&apmixedsys CK_APMIXED_CCIPLL2_B>;
52 clock-names = "cpu", "intermediate", "armpll", "cci",
53 "ccipll";
54 operating-points-v2 = <&cluster0_opp>;
55 nvmem-cells = <&cpufreq_calibration>;
56 nvmem-cell-names = "calibration-data";
57 };
58
59 cpu@2 {
60 device_type = "cpu";
61 compatible = "arm,cortex-a73";
62 enable-method = "psci";
63 reg = <0x2>;
64 clocks = <&mcusys CK_MCU_ARM_DIV_SEL>,
65 <&topckgen CK_TOP_CB_NET1_D4>,
66 <&apmixedsys CK_APMIXED_ARM_B>,
67 <&mcusys CK_MCU_BUS_DIV_SEL>,
68 <&apmixedsys CK_APMIXED_CCIPLL2_B>;
69 clock-names = "cpu", "intermediate", "armpll", "cci",
70 "ccipll";
71 operating-points-v2 = <&cluster0_opp>;
72 nvmem-cells = <&cpufreq_calibration>;
73 nvmem-cell-names = "calibration-data";
74 };
75
76 cpu@3 {
77 device_type = "cpu";
78 compatible = "arm,cortex-a73";
79 enable-method = "psci";
80 reg = <0x3>;
81 clocks = <&mcusys CK_MCU_ARM_DIV_SEL>,
82 <&topckgen CK_TOP_CB_NET1_D4>,
83 <&apmixedsys CK_APMIXED_ARM_B>,
84 <&mcusys CK_MCU_BUS_DIV_SEL>,
85 <&apmixedsys CK_APMIXED_CCIPLL2_B>;
86 clock-names = "cpu", "intermediate", "armpll", "cci",
87 "ccipll";
88 operating-points-v2 = <&cluster0_opp>;
89 nvmem-cells = <&cpufreq_calibration>;
90 nvmem-cell-names = "calibration-data";
91 };
92
93 cluster0_opp: opp_table0 {
94 compatible = "operating-points-v2";
95 opp-shared;
96 opp00 {
97 opp-hz = /bits/ 64 <800000000>;
98 opp-microvolt = <850000>;
99 };
100 opp01 {
101 opp-hz = /bits/ 64 <1100000000>;
102 opp-microvolt = <850000>;
103 };
104 opp02 {
105 opp-hz = /bits/ 64 <1500000000>;
106 opp-microvolt = <850000>;
107 };
108 opp03 {
109 opp-hz = /bits/ 64 <1800000000>;
110 opp-microvolt = <900000>;
111 };
112 };
113 };
114
115 thermal-zones {
116 cpu_thermal: cpu-thermal {
117 polling-delay-passive = <1000>;
118 polling-delay = <1000>;
119 thermal-sensors = <&lvts 0>;
120 trips {
121 cpu_trip_crit: crit {
122 temperature = <125000>;
123 hysteresis = <2000>;
124 type = "critical";
125 };
126
127 cpu_trip_hot: hot {
128 temperature = <120000>;
129 hysteresis = <2000>;
130 type = "hot";
131 };
132
133 cpu_trip_active_high: active-high {
134 temperature = <115000>;
135 hysteresis = <2000>;
136 type = "active";
137 };
138
139 cpu_trip_active_low: active-low {
140 temperature = <85000>;
141 hysteresis = <2000>;
142 type = "active";
143 };
144
145 cpu_trip_passive: passive {
146 temperature = <40000>;
147 hysteresis = <2000>;
148 type = "passive";
149 };
150 };
151
152 cooling-maps {
153 cpu-active-high {
154 /* active: set fan to cooling level 2 */
155 cooling-device = <&fan 2 2>;
156 trip = <&cpu_trip_active_high>;
157 };
158
159 cpu-active-low {
160 /* active: set fan to cooling level 1 */
161 cooling-device = <&fan 1 1>;
162 trip = <&cpu_trip_active_low>;
163 };
164
165 cpu-passive {
166 /* passive: set fan to cooling level 0 */
167 cooling-device = <&fan 0 0>;
168 trip = <&cpu_trip_passive>;
169 };
170 };
171
172 };
173 };
174
175 mmc0: mmc@11230000 {
176 compatible = "mediatek,mt7986-mmc";
177 reg = <0 0x11230000 0 0x1000>,
178 <0 0x11D60000 0 0x1000>;
179 interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
180 clocks = <&infracfg_ao CK_INFRA_MSDC400>,
181 <&infracfg_ao CK_INFRA_MSDC2_HCK>,
182 <&infracfg_ao CK_INFRA_133M_MSDC_0_HCK>,
183 <&infracfg_ao CK_INFRA_66M_MSDC_0_HCK>;
184 clock-names = "source", "hclk", "ahb_cg", "axi_cg";
185 status = "disabled";
186 };
187
188 wed: wed@15010000 {
189 compatible = "mediatek,wed";
190 wed_num = <3>;
191 /* add this property for wed get the pci slot number. */
192 pci_slot_map = <0>, <1>, <2>;
193 reg = <0 0x15010000 0 0x2000>,
194 <0 0x15012000 0 0x2000>,
195 <0 0x15014000 0 0x2000>;
196 interrupt-parent = <&gic>;
197 interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
198 <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>,
199 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>;
200 };
201
202 wed2: wed2@15012000 {
203 compatible = "mediatek,wed2";
204 wed_num = <3>;
205 /* add this property for wed get the pci slot number. */
206 reg = <0 0x15010000 0 0x2000>,
207 <0 0x15012000 0 0x2000>,
208 <0 0x15014000 0 0x2000>;
209 interrupt-parent = <&gic>;
210 interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
211 <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>,
212 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>;
213 };
214
215 wed3: wed3@15014000 {
216 compatible = "mediatek,wed3";
217 wed_num = <3>;
218 /* add this property for wed get the pci slot number. */
219 reg = <0 0x15010000 0 0x2000>,
220 <0 0x15012000 0 0x2000>,
221 <0 0x15014000 0 0x2000>;
222 interrupt-parent = <&gic>;
223 interrupts = <GIC_SPI 205 IRQ_TYPE_LEVEL_HIGH>,
224 <GIC_SPI 206 IRQ_TYPE_LEVEL_HIGH>,
225 <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>;
226 };
227
228 wdma: wdma@15104800 {
229 compatible = "mediatek,wed-wdma";
230 reg = <0 0x15104800 0 0x400>,
231 <0 0x15104c00 0 0x400>,
232 <0 0x15105000 0 0x400>;
233 };
234
235 ap2woccif: ap2woccif@151A5000 {
236 compatible = "mediatek,ap2woccif";
237 reg = <0 0x151A5000 0 0x1000>,
238 <0 0x152A5000 0 0x1000>,
239 <0 0x153A5000 0 0x1000>;
240 interrupt-parent = <&gic>;
241 interrupts = <GIC_SPI 211 IRQ_TYPE_LEVEL_HIGH>,
242 <GIC_SPI 212 IRQ_TYPE_LEVEL_HIGH>,
243 <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
244 };
245
246 wocpu0_ilm: wocpu0_ilm@151E0000 {
247 compatible = "mediatek,wocpu0_ilm";
248 reg = <0 0x151E0000 0 0x8000>;
249 };
250
251 wocpu1_ilm: wocpu1_ilm@152E0000 {
252 compatible = "mediatek,wocpu1_ilm";
253 reg = <0 0x152E0000 0 0x8000>;
254 };
255
256 wocpu2_ilm: wocpu2_ilm@153E0000 {
257 compatible = "mediatek,wocpu2_ilm";
258 reg = <0 0x153E0000 0 0x8000>;
259 };
260
261 wocpu_dlm: wocpu_dlm@151E8000 {
262 compatible = "mediatek,wocpu_dlm";
263 reg = <0 0x151E8000 0 0x2000>,
264 <0 0x152E8000 0 0x2000>,
265 <0 0x153E8000 0 0x2000>;
266
267 resets = <&ethsysrst 0>;
268 reset-names = "wocpu_rst";
269 };
270
271 cpu_boot: wocpu_boot@15194000 {
272 compatible = "mediatek,wocpu_boot";
273 reg = <0 0x15194000 0 0x1000>,
274 <0 0x15294000 0 0x1000>,
275 <0 0x15394000 0 0x1000>;
276 };
277
278 reserved-memory {
279 #address-cells = <2>;
280 #size-cells = <2>;
281 ranges;
282
283 /* 192 KiB reserved for ARM Trusted Firmware (BL31) */
284 secmon_reserved: secmon@43000000 {
285 reg = <0 0x43000000 0 0x30000>;
286 no-map;
287 };
288
289 wmcpu_emi: wmcpu-reserved@47CC0000 {
290 compatible = "mediatek,wmcpu-reserved";
291 no-map;
292 reg = <0 0x47CC0000 0 0x00100000>;
293 };
294
295 wocpu0_emi: wocpu0_emi@4F600000 {
296 compatible = "mediatek,wocpu0_emi";
297 no-map;
298 reg = <0 0x4F600000 0 0x40000>;
299 shared = <0>;
300 };
301
302 wocpu1_emi: wocpu1_emi@4F640000 {
303 compatible = "mediatek,wocpu1_emi";
304 no-map;
305 reg = <0 0x4F640000 0 0x40000>;
306 shared = <0>;
307 };
308
309 wocpu2_emi: wocpu2_emi@4F680000 {
310 compatible = "mediatek,wocpu2_emi";
311 no-map;
312 reg = <0 0x4F680000 0 0x40000>;
313 shared = <0>;
314 };
315
316 wocpu_data: wocpu_data@4F700000 {
317 compatible = "mediatek,wocpu_data";
318 no-map;
319 reg = <0 0x4F700000 0 0x800000>;
320 shared = <1>;
321 };
322 };
323
324 psci {
325 compatible = "arm,psci-0.2";
326 method = "smc";
327 };
328
329 system_clk: dummy_system_clk {
330 compatible = "fixed-clock";
331 clock-frequency = <40000000>;
332 #clock-cells = <0>;
333 };
334
335 uart_clk: dummy_uart_clk {
336 compatible = "fixed-clock";
337 clock-frequency = <40000000>;
338 #clock-cells = <0>;
339 };
340
341 timer {
342 compatible = "arm,armv8-timer";
343 interrupt-parent = <&gic>;
344 interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW>,
345 <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW>,
346 <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW>,
347 <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW>;
348
349 };
350
developer2cdaeb12022-10-04 20:25:05 +0800351 watchdog: watchdog@1001c000 {
352 compatible = "mediatek,mt7622-wdt",
353 "mediatek,mt6589-wdt",
354 "syscon";
355 reg = <0 0x1001c000 0 0x1000>;
356 interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH>;
357 #reset-cells = <1>;
358 };
359
360 phyfw: phy-firmware@f000000 {
361 compatible = "mediatek,2p5gphy-fw";
362 reg = <0 0x0f000000 0 0x8000>,
363 <0 0x0f100000 0 0x20000>,
364 <0 0x0f0f0000 0 0x200>;
365 };
366
developer23021292022-10-21 19:10:10 +0800367 boottrap: boottrap@1001f6f0 {
368 compatible = "mediatek,boottrap";
369 reg = <0 0x1001f6f0 0 0x20>;
370 };
371
developer2cdaeb12022-10-04 20:25:05 +0800372 gic: interrupt-controller@c000000 {
373 compatible = "arm,gic-v3";
374 #interrupt-cells = <3>;
375 interrupt-parent = <&gic>;
376 interrupt-controller;
377 reg = <0 0x0c000000 0 0x40000>, /* GICD */
378 <0 0x0c080000 0 0x200000>; /* GICR */
379
380 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
381 };
382
383 trng: trng@1020f000 {
384 compatible = "mediatek,mt7988-rng";
385 };
386
387 uart0: serial@11000000 {
388 compatible = "mediatek,mt7986-uart",
389 "mediatek,mt6577-uart";
390 reg = <0 0x11000000 0 0x100>;
391 interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>;
392 clocks = <&uart_clk>;
393 status = "disabled";
394 };
395
396 uart1: serial@11000100 {
397 compatible = "mediatek,mt7986-uart",
398 "mediatek,mt6577-uart";
399 reg = <0 0x11000100 0 0x100>;
400 interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>;
401 clocks = <&uart_clk>;
402 status = "disabled";
403 };
404
405 uart2: serial@11000200 {
406 compatible = "mediatek,mt7986-uart",
407 "mediatek,mt6577-uart";
408 reg = <0 0x11000200 0 0x100>;
409 interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
410 clocks = <&uart_clk>;
411 status = "disabled";
412 };
413
414 i2c0: i2c@11003000 {
415 compatible = "mediatek,mt7988-i2c",
416 "mediatek,mt7981-i2c";
417 reg = <0 0x11003000 0 0x1000>,
418 <0 0x10217080 0 0x80>;
419 interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
420 clock-div = <1>;
421 clocks = <&system_clk>,
422 <&system_clk>;
423 clock-names = "main", "dma";
424 #address-cells = <1>;
425 #size-cells = <0>;
426 status = "disabled";
427 };
428
429 i2c1: i2c@11004000 {
430 compatible = "mediatek,mt7988-i2c",
431 "mediatek,mt7981-i2c";
432 reg = <0 0x11004000 0 0x1000>,
433 <0 0x10217100 0 0x80>;
434 interrupts = <GIC_SPI 144 IRQ_TYPE_LEVEL_HIGH>;
435 clock-div = <1>;
436 clocks = <&system_clk>,
437 <&system_clk>;
438 clock-names = "main", "dma";
439 #address-cells = <1>;
440 #size-cells = <0>;
441 status = "disabled";
442 };
443
444 i2c2: i2c@11005000 {
445 compatible = "mediatek,mt7988-i2c",
446 "mediatek,mt7981-i2c";
447 reg = <0 0x11005000 0 0x1000>,
448 <0 0x10217180 0 0x80>;
449 interrupts = <GIC_SPI 145 IRQ_TYPE_LEVEL_HIGH>;
450 clock-div = <1>;
451 clocks = <&system_clk>,
452 <&system_clk>;
453 clock-names = "main", "dma";
454 #address-cells = <1>;
455 #size-cells = <0>;
456 status = "disabled";
457 };
458
459 pwm: pwm@10048000 {
460 compatible = "mediatek,mt7988-pwm";
461 reg = <0 0x10048000 0 0x1000>;
462 #pwm-cells = <2>;
developer1ad6fe42022-11-02 11:33:26 +0800463 clocks = <&infracfg_ao CK_INFRA_66M_PWM_BCK>,
464 <&infracfg_ao CK_INFRA_66M_PWM_HCK>,
465 <&infracfg_ao CK_INFRA_66M_PWM_CK1>,
466 <&infracfg_ao CK_INFRA_66M_PWM_CK2>,
467 <&infracfg_ao CK_INFRA_66M_PWM_CK3>,
468 <&infracfg_ao CK_INFRA_66M_PWM_CK4>,
469 <&infracfg_ao CK_INFRA_66M_PWM_CK5>,
470 <&infracfg_ao CK_INFRA_66M_PWM_CK6>,
471 <&infracfg_ao CK_INFRA_66M_PWM_CK7>,
472 <&infracfg_ao CK_INFRA_66M_PWM_CK8>;
developer2cdaeb12022-10-04 20:25:05 +0800473 clock-names = "top", "main", "pwm1", "pwm2", "pwm3",
474 "pwm4","pwm5","pwm6","pwm7","pwm8";
475 status = "disabled";
476 };
477
478 fan: pwm-fan {
479 compatible = "pwm-fan";
480 /* cooling level (0, 1, 2) : (0% duty, 50% duty, 100% duty) */
481 cooling-levels = <0 128 255>;
482 #cooling-cells = <2>;
483 #thermal-sensor-cells = <1>;
484 status = "disabled";
485 };
486
487 lvts: lvts@1100a000 {
488 compatible = "mediatek,mt7988-lvts";
489 #thermal-sensor-cells = <1>;
490 reg = <0 0x1100a000 0 0x1000>;
developer1bbcf512022-11-18 16:09:33 +0800491 clocks = <&infracfg_ao CK_INFRA_26M_THERM_SYSTEM>;
developer2cdaeb12022-10-04 20:25:05 +0800492 clock-names = "lvts_clk";
493 nvmem-cells = <&lvts_calibration>;
494 nvmem-cell-names = "e_data1";
495 };
496
497 crypto: crypto@15600000 {
498 compatible = "inside-secure,safexcel-eip197b";
499 reg = <0 0x15600000 0 0x180000>;
500 interrupts = <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>,
501 <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>,
502 <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>,
503 <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
504 interrupt-names = "ring0", "ring1", "ring2", "ring3";
505 status = "okay";
506 };
507
developer3594afb2022-10-25 13:22:53 +0800508 afe: audio-controller@11210000 {
509 compatible = "mediatek,mt79xx-audio";
510 reg = <0 0x11210000 0 0x9000>;
511 interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
512 clocks = <&infracfg_ao CK_INFRA_66M_AUD_SLV_BCK>,
513 <&infracfg_ao CK_INFRA_AUD_26M>,
514 <&infracfg_ao CK_INFRA_AUD_L>,
515 <&infracfg_ao CK_INFRA_AUD_AUD>,
516 <&infracfg_ao CK_INFRA_AUD_EG2>,
517 <&topckgen CK_TOP_AUD_SEL>,
518 <&topckgen CK_TOP_AUD_I2S_M>;
519 clock-names = "aud_bus_ck",
520 "aud_26m_ck",
521 "aud_l_ck",
522 "aud_aud_ck",
523 "aud_eg2_ck",
524 "aud_sel",
525 "aud_i2s_m";
526 assigned-clocks = <&topckgen CK_TOP_AUD_SEL>,
527 <&topckgen CK_TOP_A1SYS_SEL>,
528 <&topckgen CK_TOP_AUD_L_SEL>,
529 <&topckgen CK_TOP_A_TUNER_SEL>;
530 assigned-clock-parents = <&topckgen CK_TOP_CB_APLL2_196M>,
531 <&topckgen CK_TOP_CB_APLL2_D4>,
532 <&topckgen CK_TOP_CB_APLL2_196M>,
533 <&topckgen CK_TOP_CB_APLL2_D4>;
534 status = "disabled";
535 };
536
developer2cdaeb12022-10-04 20:25:05 +0800537 pcie0: pcie@11300000 {
538 compatible = "mediatek,mt7988-pcie",
539 "mediatek,mt7986-pcie";
540 device_type = "pci";
541 #address-cells = <3>;
542 #size-cells = <2>;
543 reg = <0 0x11300000 0 0x2000>;
544 reg-names = "pcie-mac";
545 linux,pci-domain = <0>;
546 interrupts = <GIC_SPI 168 IRQ_TYPE_LEVEL_HIGH>;
547 bus-range = <0x00 0xff>;
548 ranges = <0x81000000 0x00 0x30000000 0x00
549 0x30000000 0x00 0x00200000>,
550 <0x82000000 0x00 0x30200000 0x00
551 0x30200000 0x00 0x07e00000>;
developerca2082b2022-11-01 11:23:49 +0800552 clocks = <&infracfg_ao CK_INFRA_PCIE_PIPE_P0>,
developer2cdaeb12022-10-04 20:25:05 +0800553 <&infracfg_ao CK_INFRA_PCIE_GFMUX_TL_P0>,
developerca2082b2022-11-01 11:23:49 +0800554 <&infracfg_ao CK_INFRA_PCIE_PERI_26M_CK_P0>,
555 <&infracfg_ao CK_INFRA_133M_PCIE_CK_P0>;
556 clock-names = "pl_250m", "tl_26m", "peri_26m", "top_133m";
557 status = "disabled";
developer2cdaeb12022-10-04 20:25:05 +0800558
559 #interrupt-cells = <1>;
560 interrupt-map-mask = <0 0 0 0x7>;
561 interrupt-map = <0 0 0 1 &pcie_intc0 0>,
562 <0 0 0 2 &pcie_intc0 1>,
563 <0 0 0 3 &pcie_intc0 2>,
564 <0 0 0 4 &pcie_intc0 3>;
565 pcie_intc0: interrupt-controller {
566 #address-cells = <0>;
567 #interrupt-cells = <1>;
568 interrupt-controller;
569 };
570 };
571
572 pcie1: pcie@11310000 {
573 compatible = "mediatek,mt7988-pcie",
574 "mediatek,mt7986-pcie";
575 device_type = "pci";
576 #address-cells = <3>;
577 #size-cells = <2>;
578 reg = <0 0x11310000 0 0x2000>;
579 reg-names = "pcie-mac";
580 linux,pci-domain = <1>;
581 interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>;
582 bus-range = <0x00 0xff>;
583 ranges = <0x81000000 0x00 0x38000000 0x00
584 0x38000000 0x00 0x00200000>,
585 <0x82000000 0x00 0x38200000 0x00
586 0x38200000 0x00 0x07e00000>;
developerca2082b2022-11-01 11:23:49 +0800587 clocks = <&infracfg_ao CK_INFRA_PCIE_PIPE_P1>,
developer2cdaeb12022-10-04 20:25:05 +0800588 <&infracfg_ao CK_INFRA_PCIE_GFMUX_TL_P1>,
developerca2082b2022-11-01 11:23:49 +0800589 <&infracfg_ao CK_INFRA_PCIE_PERI_26M_CK_P1>,
590 <&infracfg_ao CK_INFRA_133M_PCIE_CK_P1>;
591 clock-names = "pl_250m", "tl_26m", "peri_26m", "top_133m";
592 status = "disabled";
developer2cdaeb12022-10-04 20:25:05 +0800593
594 #interrupt-cells = <1>;
595 interrupt-map-mask = <0 0 0 0x7>;
596 interrupt-map = <0 0 0 1 &pcie_intc1 0>,
597 <0 0 0 2 &pcie_intc1 1>,
598 <0 0 0 3 &pcie_intc1 2>,
599 <0 0 0 4 &pcie_intc1 3>;
600 pcie_intc1: interrupt-controller {
601 #address-cells = <0>;
602 #interrupt-cells = <1>;
603 interrupt-controller;
604 };
605 };
606
607 pcie2: pcie@11280000 {
608 compatible = "mediatek,mt7988-pcie",
609 "mediatek,mt7986-pcie";
610 device_type = "pci";
611 #address-cells = <3>;
612 #size-cells = <2>;
613 reg = <0 0x11280000 0 0x2000>;
614 reg-names = "pcie-mac";
615 linux,pci-domain = <3>;
616 interrupts = <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>;
617 bus-range = <0x00 0xff>;
618 ranges = <0x81000000 0x00 0x20000000 0x00
619 0x20000000 0x00 0x00200000>,
620 <0x82000000 0x00 0x20200000 0x00
621 0x20200000 0x00 0x07e00000>;
developerca2082b2022-11-01 11:23:49 +0800622 clocks = <&infracfg_ao CK_INFRA_PCIE_PIPE_P2>,
developer2cdaeb12022-10-04 20:25:05 +0800623 <&infracfg_ao CK_INFRA_PCIE_GFMUX_TL_P2>,
developer2cdaeb12022-10-04 20:25:05 +0800624 <&infracfg_ao CK_INFRA_PCIE_PERI_26M_CK_P2>,
developerca2082b2022-11-01 11:23:49 +0800625 <&infracfg_ao CK_INFRA_133M_PCIE_CK_P2>;
626 clock-names = "pl_250m", "tl_26m", "peri_26m", "top_133m";
627 status = "disabled";
developer2cdaeb12022-10-04 20:25:05 +0800628
629 phys = <&xphyu3port0 PHY_TYPE_PCIE>;
630 phy-names = "pcie-phy";
631
632 #interrupt-cells = <1>;
633 interrupt-map-mask = <0 0 0 0x7>;
634 interrupt-map = <0 0 0 1 &pcie_intc2 0>,
635 <0 0 0 2 &pcie_intc2 1>,
636 <0 0 0 3 &pcie_intc2 2>,
637 <0 0 0 4 &pcie_intc2 3>;
638 pcie_intc2: interrupt-controller {
639 #address-cells = <0>;
640 #interrupt-cells = <1>;
641 interrupt-controller;
642 };
643 };
644
645 pcie3: pcie@11290000 {
646 compatible = "mediatek,mt7988-pcie",
647 "mediatek,mt7986-pcie";
648 device_type = "pci";
649 #address-cells = <3>;
650 #size-cells = <2>;
651 reg = <0 0x11290000 0 0x2000>;
652 reg-names = "pcie-mac";
653 linux,pci-domain = <2>;
654 interrupts = <GIC_SPI 171 IRQ_TYPE_LEVEL_HIGH>;
655 bus-range = <0x00 0xff>;
656 ranges = <0x81000000 0x00 0x28000000 0x00
657 0x28000000 0x00 0x00200000>,
658 <0x82000000 0x00 0x28200000 0x00
659 0x28200000 0x00 0x07e00000>;
developerca2082b2022-11-01 11:23:49 +0800660 clocks = <&infracfg_ao CK_INFRA_PCIE_PIPE_P3>,
developer2cdaeb12022-10-04 20:25:05 +0800661 <&infracfg_ao CK_INFRA_PCIE_GFMUX_TL_P3>,
developerca2082b2022-11-01 11:23:49 +0800662 <&infracfg_ao CK_INFRA_PCIE_PERI_26M_CK_P3>,
663 <&infracfg_ao CK_INFRA_133M_PCIE_CK_P3>;
664 clock-names = "pl_250m", "tl_26m", "peri_26m", "top_133m";
665 status = "disabled";
developer2cdaeb12022-10-04 20:25:05 +0800666
667 #interrupt-cells = <1>;
668 interrupt-map-mask = <0 0 0 0x7>;
669 interrupt-map = <0 0 0 1 &pcie_intc3 0>,
670 <0 0 0 2 &pcie_intc3 1>,
671 <0 0 0 3 &pcie_intc3 2>,
672 <0 0 0 4 &pcie_intc3 3>;
673 pcie_intc3: interrupt-controller {
674 #address-cells = <0>;
675 #interrupt-cells = <1>;
676 interrupt-controller;
677 };
678 };
679
680 pio: pinctrl@1001f000 {
681 compatible = "mediatek,mt7988-pinctrl";
682 reg = <0 0x1001f000 0 0x1000>,
683 <0 0x11c10000 0 0x1000>,
684 <0 0x11d00000 0 0x1000>,
685 <0 0x11d20000 0 0x1000>,
686 <0 0x11e00000 0 0x1000>,
687 <0 0x11f00000 0 0x1000>,
688 <0 0x1000b000 0 0x1000>;
689 reg-names = "gpio_base", "iocfg_tr_base", "iocfg_br_base",
690 "iocfg_rb_base", "iocfg_lb_base", "iocfg_tl_base",
691 "eint";
692 gpio-controller;
693 #gpio-cells = <2>;
694 gpio-ranges = <&pio 0 0 83>;
695 interrupt-controller;
developera9e41142022-11-01 09:46:14 +0800696 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
developer2cdaeb12022-10-04 20:25:05 +0800697 interrupt-parent = <&gic>;
698 #interrupt-cells = <2>;
699 };
700
701 ethsys: syscon@15000000 {
702 #address-cells = <1>;
703 #size-cells = <1>;
704 compatible = "mediatek,mt7988-ethsys",
705 "syscon";
706 reg = <0 0x15000000 0 0x1000>;
707 #clock-cells = <1>;
708 #reset-cells = <1>;
709
710 ethsysrst: reset-controller {
711 compatible = "ti,syscon-reset";
712 #reset-cells = <1>;
713 ti,reset-bits =
714 <0x34 4 0x34 4 0x34 4
715 (ASSERT_SET | DEASSERT_CLEAR | STATUS_SET)>;
716 };
717 };
718
719 ethwarp: syscon@15031000 {
720 compatible = "mediatek,mt7988-ethwarp", "syscon";
721 reg = <0 0x15031000 0 0x1000>;
722 #clock-cells = <1>;
723 };
724
725 switch0: switch0@15020000 {
726 #address-cells = <1>;
727 #size-cells = <1>;
728 compatible = "mediatek,mt7988-switch", "syscon";
729 reg = <0 0x15020000 0 0x8000>;
730 };
731
732 eth: ethernet@15100000 {
733 compatible = "mediatek,mt7988-eth";
734 reg = <0 0x15100000 0 0x80000>,
735 <0 0x15400000 0 0x380000>;
736 interrupts = <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>,
737 <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>,
738 <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
739 <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
developer1bbcf512022-11-18 16:09:33 +0800740 clocks = <&ethsys CK_ETHDMA_XGP1_EN>,
741 <&ethsys CK_ETHDMA_XGP2_EN>,
742 <&ethsys CK_ETHDMA_XGP3_EN>,
743 <&ethsys CK_ETHDMA_FE_EN>,
744 <&ethsys CK_ETHDMA_GP2_EN>,
745 <&ethsys CK_ETHDMA_GP1_EN>,
746 <&ethsys CK_ETHDMA_GP3_EN>,
747 <&ethsys CK_ETHDMA_ESW_EN>,
748 <&ethsys CK_ETHDMA_CRYPT0_EN>,
749 <&sgmiisys0 CK_SGM0_TX_EN>,
750 <&sgmiisys0 CK_SGM0_RX_EN>,
751 <&sgmiisys1 CK_SGM1_TX_EN>,
752 <&sgmiisys1 CK_SGM1_RX_EN>,
753 <&topckgen CK_TOP_USXGMII_SBUS_0_SEL>,
754 <&topckgen CK_TOP_USXGMII_SBUS_1_SEL>,
755 <&topckgen CK_TOP_SGM_0_SEL>,
756 <&topckgen CK_TOP_SGM_1_SEL>;
757 clock-names = "xgp1", "xgp2", "xgp3", "fe", "gp2", "gp1",
758 "gp3", "esw", "crypto", "sgmii_tx250m",
759 "sgmii_rx250m", "sgmii2_tx250m", "sgmii2_rx250m",
760 "usxgmii0_sel", "usxgmii1_sel",
761 "sgm0_sel", "sgm1_sel";
762 assigned-clocks = <&topckgen CK_TOP_NETSYS_2X_SEL>,
763 <&topckgen CK_TOP_NETSYS_GSW_SEL>,
764 <&topckgen CK_TOP_USXGMII_SBUS_0_SEL>,
765 <&topckgen CK_TOP_USXGMII_SBUS_1_SEL>,
766 <&topckgen CK_TOP_SGM_0_SEL>,
767 <&topckgen CK_TOP_SGM_1_SEL>;
768 assigned-clock-parents = <&topckgen CK_TOP_CB_NET2_800M>,
769 <&topckgen CK_TOP_CB_NET1_D4>,
770 <&topckgen CK_TOP_NET1_D8_D4>,
771 <&topckgen CK_TOP_NET1_D8_D4>,
772 <&topckgen CK_TOP_CB_SGM_325M>,
773 <&topckgen CK_TOP_CB_SGM_325M>;
developer2cdaeb12022-10-04 20:25:05 +0800774 mediatek,ethsys = <&ethsys>;
775 mediatek,sgmiisys = <&sgmiisys0>, <&sgmiisys1>;
776 mediatek,usxgmiisys = <&usxgmiisys0>, <&usxgmiisys1>;
777 mediatek,xfi_pextp = <&xfi_pextp0>, <&xfi_pextp1>;
778 mediatek,xfi_pll = <&xfi_pll>;
779 mediatek,infracfg = <&topmisc>;
780 mediatek,toprgu = <&watchdog>;
781 #reset-cells = <1>;
782 #address-cells = <1>;
783 #size-cells = <0>;
784 status = "disabled";
785 };
786
787 hnat: hnat@15000000 {
788 compatible = "mediatek,mtk-hnat_v5";
789 reg = <0 0x15100000 0 0x80000>;
790 resets = <&ethsys 0>;
791 reset-names = "mtketh";
792 status = "disabled";
793 };
794
795 sgmiisys0: syscon@10060000 {
796 compatible = "mediatek,mt7988-sgmiisys",
797 "mediatek,mt7988-sgmiisys_0",
798 "syscon";
799 reg = <0 0x10060000 0 0x1000>;
800 #clock-cells = <1>;
801 };
802
803 sgmiisys1: syscon@10070000 {
804 compatible = "mediatek,mt7988-sgmiisys",
805 "mediatek,mt7988-sgmiisys_1",
806 "syscon";
807 reg = <0 0x10070000 0 0x1000>;
808 #clock-cells = <1>;
809 };
810
811 usxgmiisys0: usxgmiisys@10080000 {
812 compatible = "mediatek,mt7988-usxgmiisys",
813 "mediatek,mt7988-usxgmiisys_0",
814 "syscon";
815 reg = <0 0x10080000 0 0x1000>;
816 #clock-cells = <1>;
817 };
818
819 usxgmiisys1: usxgmiisys@10081000 {
820 compatible = "mediatek,mt7988-usxgmiisys",
821 "mediatek,mt7988-usxgmiisys_1",
822 "syscon";
823 reg = <0 0x10081000 0 0x1000>;
824 #clock-cells = <1>;
825 };
826
827 xfi_pextp0: xfi_pextp@11f20000 {
828 compatible = "mediatek,mt7988-xfi_pextp",
829 "mediatek,mt7988-xfi_pextp_0",
830 "syscon";
831 reg = <0 0x11f20000 0 0x10000>;
832 #clock-cells = <1>;
833 };
834
835 xfi_pextp1: xfi_pextp@11f30000 {
836 compatible = "mediatek,mt7988-xfi_pextp",
837 "mediatek,mt7988-xfi_pextp_1",
838 "syscon";
839 reg = <0 0x11f30000 0 0x10000>;
840 #clock-cells = <1>;
841 };
842
843 xfi_pll: xfi_pll@11f40000 {
844 compatible = "mediatek,mt7988-xfi_pll", "syscon";
845 reg = <0 0x11f40000 0 0x1000>;
846 #clock-cells = <1>;
847 };
848
849 topmisc: topmisc@11d10000 {
850 compatible = "mediatek,mt7988-topmisc", "syscon",
851 "mediatek,mt7988-power-controller";
852 reg = <0 0x11d10000 0 0x10000>;
853 #clock-cells = <1>;
854 #power-domain-cells = <1>;
855 #address-cells = <1>;
856 #size-cells = <0>;
857 /* power domain of the SoC */
858 tops0@MT7988_POWER_DOMAIN_TOPS0 {
859 reg = <MT7988_POWER_DOMAIN_TOPS0>;
860 #power-domain-cells = <0>;
861 };
862 tops1@MT7988_POWER_DOMAIN_TOPS1 {
863 reg = <MT7988_POWER_DOMAIN_TOPS1>;
864 #power-domain-cells = <0>;
865 };
866 eth2p5@MT7988_POWER_DOMAIN_ETH2P5 {
867 reg = <MT7988_POWER_DOMAIN_ETH2P5>;
868 #power-domain-cells = <0>;
869 };
870 };
871
872 snand: snfi@11001000 {
873 compatible = "mediatek,mt7986-snand";
874 reg = <0 0x11001000 0 0x1000>, <0 0x11002000 0 0x1000>;
875 reg-names = "nfi", "ecc";
876 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
877 clocks = <&system_clk>,
878 <&system_clk>,
879 <&system_clk>,
880 <&system_clk>;
881 clock-names = "nfi_clk", "pad_clk", "ecc_clk", "nfi_hclk";
882 #address-cells = <1>;
883 #size-cells = <0>;
884 status = "disabled";
885 };
886
887 wbsys: wbsys@18000000 {
888 compatible = "mediatek,wbsys";
889 reg = <0 0x18000000 0 0x1000000>;
890 linux,pci-domain = <4>;
891 interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
892 <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>,
893 <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>,
894 <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>;
895 chip_id = <0x7981>;
896 };
897
898 wed_pcie: wed_pcie@10003000 {
899 compatible = "mediatek,wed_pcie";
900 reg = <0 0x10003000 0 0x10>;
901 };
902
developer4c9c1c12022-11-02 11:30:47 +0800903 infra_bus_prot: infra_bus_prot@1000310c {
904 compatible = "mediatek,infracfg_ao_bus_hang_prot";
905 reg = <0 0x1000310c 0 0x14>;
906 };
907
developer2cdaeb12022-10-04 20:25:05 +0800908 spi0: spi@11007000 {
909 compatible = "mediatek,ipm-spi-quad";
910 reg = <0 0x11007000 0 0x100>;
911 interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
912 clocks = <&topckgen CK_TOP_CB_M_D2>,
913 <&topckgen CK_TOP_SPI_SEL>,
914 <&infracfg_ao CK_INFRA_104M_SPI0>,
915 <&infracfg_ao CK_INFRA_66M_SPI0_HCK>;
916 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
917 status = "disabled";
918 };
919
920 spi1: spi@11008000 {
921 compatible = "mediatek,ipm-spi-single";
922 reg = <0 0x11008000 0 0x100>;
923 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
924 clocks = <&topckgen CK_TOP_CB_M_D2>,
925 <&topckgen CK_TOP_SPI_SEL>,
926 <&infracfg_ao CK_INFRA_104M_SPI1>,
927 <&infracfg_ao CK_INFRA_66M_SPI1_HCK>;
928 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
929 status = "disabled";
930 };
931
932 spi2: spi@11009000 {
933 compatible = "mediatek,ipm-spi-quad";
934 reg = <0 0x11009000 0 0x100>;
935 interrupts = <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>;
936 clocks = <&topckgen CK_TOP_CB_M_D2>,
937 <&topckgen CK_TOP_SPI_SEL>,
938 <&infracfg_ao CK_INFRA_104M_SPI2_BCK>,
939 <&infracfg_ao CK_INFRA_66M_SPI2_HCK>;
940 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
941 status = "disabled";
942 };
943
944 consys: consys@10000000 {
945 compatible = "mediatek,mt7981-consys";
946 reg = <0 0x10000000 0 0x8600000>;
947 memory-region = <&wmcpu_emi>;
948 };
949
950 xhci0: xhci@11190000 {
951 compatible = "mediatek,mt7988-xhci",
952 "mediatek,mtk-xhci";
953 reg = <0 0x11190000 0 0x2e00>,
954 <0 0x11193e00 0 0x0100>;
955 reg-names = "mac", "ippc";
956 interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>;
957 phys = <&xphyu2port0 PHY_TYPE_USB2>,
958 <&xphyu3port0 PHY_TYPE_USB3>;
959 clocks = <&system_clk>,
960 <&system_clk>,
961 <&system_clk>,
962 <&system_clk>,
963 <&system_clk>;
964 clock-names = "sys_ck",
965 "xhci_ck",
966 "ref_ck",
967 "mcu_ck",
968 "dma_ck";
969 #address-cells = <2>;
970 #size-cells = <2>;
developer8cdcb262022-10-27 14:36:15 +0800971 mediatek,p0_speed_fixup;
developer2cdaeb12022-10-04 20:25:05 +0800972 status = "okay";
973 };
974
975 usbxphy: usb-phy@11e10000 {
976 compatible = "mediatek,mt7988",
977 "mediatek,xsphy";
978 #address-cells = <2>;
979 #size-cells = <2>;
980 ranges;
981 status = "okay";
982
983 xphyu2port0: usb-phy@11e10000 {
984 reg = <0 0x11e10000 0 0x400>;
985 clocks = <&system_clk>;
986 clock-names = "ref";
987 #phy-cells = <1>;
988 status = "okay";
989 };
990
991 xphyu3port0: usb-phy@11e13000 {
992 reg = <0 0x11e13400 0 0x500>;
993 clocks = <&system_clk>;
994 clock-names = "ref";
995 #phy-cells = <1>;
996 mediatek,syscon-type = <&topmisc 0x218 0>;
997 status = "okay";
998 };
999 };
1000
1001 xhci1: xhci@11200000 {
1002 compatible = "mediatek,mt7988-xhci",
1003 "mediatek,mtk-xhci";
1004 reg = <0 0x11200000 0 0x2e00>,
1005 <0 0x11203e00 0 0x0100>;
1006 reg-names = "mac", "ippc";
1007 interrupts = <GIC_SPI 172 IRQ_TYPE_LEVEL_HIGH>;
1008 phys = <&tphyu2port0 PHY_TYPE_USB2>,
1009 <&tphyu3port0 PHY_TYPE_USB3>;
1010 clocks = <&system_clk>,
1011 <&system_clk>,
1012 <&system_clk>,
1013 <&system_clk>,
1014 <&system_clk>;
1015 clock-names = "sys_ck",
1016 "xhci_ck",
1017 "ref_ck",
1018 "mcu_ck",
1019 "dma_ck";
1020 #address-cells = <2>;
1021 #size-cells = <2>;
1022 status = "okay";
1023 };
1024
1025 usbtphy: usb-phy@11c50000 {
1026 compatible = "mediatek,mt7988",
1027 "mediatek,generic-tphy-v2";
1028 #address-cells = <2>;
1029 #size-cells = <2>;
1030 ranges;
1031 status = "okay";
1032
1033 tphyu2port0: usb-phy@11c50000 {
1034 reg = <0 0x11c50000 0 0x700>;
1035 clocks = <&system_clk>;
1036 clock-names = "ref";
1037 #phy-cells = <1>;
1038 status = "okay";
1039 };
1040
1041 tphyu3port0: usb-phy@11c50700 {
1042 reg = <0 0x11c50700 0 0x900>;
1043 clocks = <&system_clk>;
1044 clock-names = "ref";
1045 #phy-cells = <1>;
developer8cdcb262022-10-27 14:36:15 +08001046 mediatek,usb3-pll-ssc-delta;
1047 mediatek,usb3-pll-ssc-delta1;
developer2cdaeb12022-10-04 20:25:05 +08001048 status = "okay";
1049 };
1050 };
1051
1052 clk40m: oscillator@0 {
1053 compatible = "fixed-clock";
1054 #clock-cells = <0>;
1055 clock-frequency = <40000000>;
1056 clock-output-names = "clkxtal";
1057 };
1058
1059 infracfg_ao: infracfg_ao@10001000 {
1060 compatible = "mediatek,mt7988-infracfg_ao", "syscon";
1061 reg = <0 0x10001000 0 0x1000>;
1062 #clock-cells = <1>;
1063 };
1064
1065 infracfg: infracfg@10209000 {
1066 compatible = "mediatek,mt7988-infracfg", "syscon";
1067 reg = <0 0x10209000 0 0x1000>;
1068 #clock-cells = <1>;
1069 };
1070
1071 topckgen: topckgen@1001B000 {
1072 compatible = "mediatek,mt7988-topckgen", "syscon";
1073 reg = <0 0x1001B000 0 0x1000>;
1074 #clock-cells = <1>;
1075 };
1076
1077 apmixedsys: apmixedsys@1001E000 {
1078 compatible = "mediatek,mt7988-apmixedsys", "syscon";
1079 reg = <0 0x1001E000 0 0x1000>;
1080 #clock-cells = <1>;
1081 };
1082
1083 mcusys: mcusys@100E0000 {
1084 compatible = "mediatek,mt7988-mcusys", "syscon";
1085 reg = <0 0x100E0000 0 0x1000>;
1086 #clock-cells = <1>;
1087 };
1088
1089 clkitg: clkitg {
1090 compatible = "simple-bus";
1091 };
1092
1093 efuse: efuse@11f50000 {
1094 compatible = "mediatek,efuse";
1095 reg = <0 0x11f50000 0 0x1000>;
1096 #address-cells = <1>;
1097 #size-cells = <1>;
1098
1099 lvts_calibration: calib@918 {
1100 reg = <0x918 0x28>;
1101 };
1102 phy_calibration_p0: calib@940 {
1103 reg = <0x940 0x10>;
1104 };
1105 phy_calibration_p1: calib@954 {
1106 reg = <0x954 0x10>;
1107 };
1108 phy_calibration_p2: calib@968 {
1109 reg = <0x968 0x10>;
1110 };
1111 phy_calibration_p3: calib@97c {
1112 reg = <0x97c 0x10>;
1113 };
1114 cpufreq_calibration: calib@278 {
1115 reg = <0x278 0x1>;
1116 };
1117 };
1118};
1119
1120#include "mt7988-clkitg.dtsi"