blob: 6fcfa5726c5b1dd73bf837e5c05a3288d5fcde4b [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>
developer2df324b2021-06-24 10:21:45 +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>
developer2df324b2021-06-24 10:21:45 +080023
developerfd40db22021-04-29 10:08:25 +080024/ {
25 compatible = "mediatek,mt7986b-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
developer2df324b2021-06-24 10:21:45 +0800166 clk40m: oscillator@0 {
developerfd40db22021-04-29 10:08:25 +0800167 compatible = "fixed-clock";
developerfd40db22021-04-29 10:08:25 +0800168 #clock-cells = <0>;
developerfd40db22021-04-29 10:08:25 +0800169 clock-frequency = <40000000>;
developer2df324b2021-06-24 10:21:45 +0800170 clock-output-names = "clkxtal";
developerfd40db22021-04-29 10:08:25 +0800171 };
172
developer2df324b2021-06-24 10:21:45 +0800173 system_clk: dummy_system_clk {
developerfd40db22021-04-29 10:08:25 +0800174 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>;
developer2df324b2021-06-24 10:21:45 +0800187 };
188
189 infracfg_ao: infracfg_ao@10001000 {
190 compatible = "mediatek,mt7986-infracfg_ao", "syscon";
191 reg = <0 0x10001000 0 0x68>;
192 #clock-cells = <1>;
193 };
194
195 infracfg: infracfg@10001040 {
196 compatible = "mediatek,mt7986-infracfg", "syscon";
197 reg = <0 0x1000106c 0 0x1000>;
198 #clock-cells = <1>;
199 };
developerfd40db22021-04-29 10:08:25 +0800200
developer2df324b2021-06-24 10:21:45 +0800201 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>;
developerfd40db22021-04-29 10:08:25 +0800211 };
212
213 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
developer2df324b2021-06-24 10:21:45 +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
developerfd40db22021-04-29 10:08:25 +0800253 uart0: serial@11002000 {
254 compatible = "mediatek,mt7986-uart",
255 "mediatek,mt6577-uart";
256 reg = <0 0x11002000 0 0x400>;
257 interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800258 clocks = <&infracfg_ao CK_INFRA_UART0_CK>;
259 assigned-clocks = <&topckgen CK_TOP_UART_SEL>,
260 <&infracfg_ao CK_INFRA_UART0_SEL>;
261 assigned-clock-parents = <&topckgen CK_TOP_CB_CKSQ_40M>,
262 <&infracfg CK_INFRA_UART>;
developerfd40db22021-04-29 10:08:25 +0800263 status = "disabled";
264 };
265
266 uart1: serial@11003000 {
267 compatible = "mediatek,mt7986-uart",
268 "mediatek,mt6577-uart";
269 reg = <0 0x11003000 0 0x400>;
270 interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800271 clocks = <&infracfg_ao CK_INFRA_UART1_CK>;
272 assigned-clocks = <&infracfg_ao CK_INFRA_UART1_SEL>;
273 assigned-clock-parents = <&infracfg CK_INFRA_CK_F26M>;
developerfd40db22021-04-29 10:08:25 +0800274 status = "disabled";
275 };
276
277 uart2: serial@11004000 {
278 compatible = "mediatek,mt7986-uart",
279 "mediatek,mt6577-uart";
280 reg = <0 0x11004000 0 0x400>;
281 interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800282 clocks = <&infracfg_ao CK_INFRA_UART2_CK>;
283 assigned-clocks = <&infracfg_ao CK_INFRA_UART2_SEL>;
284 assigned-clock-parents = <&infracfg CK_INFRA_CK_F26M>;
developerfd40db22021-04-29 10:08:25 +0800285 status = "disabled";
286 };
287
developer2df324b2021-06-24 10:21:45 +0800288 i2c0: i2c@11008000 {
289 compatible = "mediatek,mt7986-i2c";
290 reg = <0 0x11008000 0 0x90>,
291 <0 0x10217080 0 0x80>;
292 interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
developerccffa942021-09-22 15:57:01 +0800293 clock-div = <5>;
developer2df324b2021-06-24 10:21:45 +0800294 clocks = <&infracfg_ao CK_INFRA_I2CO_CK>,
295 <&infracfg_ao CK_INFRA_AP_DMA_CK>;
296 clock-names = "main", "dma";
297 #address-cells = <1>;
298 #size-cells = <0>;
299 status = "disabled";
300 };
developerfd40db22021-04-29 10:08:25 +0800301
developer3e9ad9d2021-07-01 16:42:25 +0800302 thermal-zones {
303 cpu_thermal: cpu-thermal {
304 polling-delay-passive = <1000>;
305 polling-delay = <1000>;
306 thermal-sensors = <&thermal 0>;
developer3e9ad9d2021-07-01 16:42:25 +0800307 };
308 };
309
310 thermal: thermal@1100c800 {
311 #thermal-sensor-cells = <1>;
312 compatible = "mediatek,mt7986-thermal";
developer4173d3c2021-08-12 11:21:49 +0800313 reg = <0 0x1100c800 0 0x800>;
developer3e9ad9d2021-07-01 16:42:25 +0800314 interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
315 clocks = <&infracfg_ao CK_INFRA_THERM_CK>,
developerdf32d112021-08-29 11:58:01 +0800316 <&infracfg_ao CK_INFRA_ADC_26M_CK>,
317 <&infracfg_ao CK_INFRA_ADC_FRC_CK>;
318 clock-names = "therm", "auxadc", "adc_32k";
developer3e9ad9d2021-07-01 16:42:25 +0800319 mediatek,auxadc = <&auxadc>;
320 mediatek,apmixedsys = <&apmixedsys>;
321 nvmem-cells = <&thermal_calibration>;
322 nvmem-cell-names = "calibration-data";
323 };
324
developer3e916422021-05-27 16:40:29 +0800325 crypto: crypto@10320000 {
326 compatible = "inside-secure,safexcel-eip97";
327 reg = <0 0x10320000 0 0x40000>;
328 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>,
329 <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>,
330 <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>,
331 <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>;
332 interrupt-names = "ring0", "ring1", "ring2", "ring3";
developere1993bd2021-07-06 13:48:40 +0800333 clocks = <&infracfg_ao CK_INFRA_EIP97_CK>;
334 clock-names = "infra_eip97_ck";
335 assigned-clocks = <&topckgen CK_TOP_EIP_B_SEL>;
336 assigned-clock-parents = <&topckgen CK_TOP_CB_NET2_800M>;
developer3e916422021-05-27 16:40:29 +0800337 };
338
developerfd40db22021-04-29 10:08:25 +0800339 pio: pinctrl@1001f000 {
340 compatible = "mediatek,mt7986-pinctrl";
341 reg = <0 0x1001f000 0 0x1000>,
342 <0 0x11c30000 0 0x1000>,
343 <0 0x11c40000 0 0x1000>,
344 <0 0x11e20000 0 0x1000>,
345 <0 0x11e30000 0 0x1000>,
346 <0 0x11f00000 0 0x1000>,
347 <0 0x11f10000 0 0x1000>,
348 <0 0x1000b000 0 0x1000>;
349 reg-names = "gpio_base", "iocfg_rt_base", "iocfg_rb_base",
350 "iocfg_lt_base", "iocfg_lb_base", "iocfg_tr_base",
351 "iocfg_tl_base", "eint";
352 gpio-controller;
353 #gpio-cells = <2>;
354 gpio-ranges = <&pio 0 0 100>;
355 interrupt-controller;
developera7f8fa42021-06-07 16:46:34 +0800356 interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
developerfd40db22021-04-29 10:08:25 +0800357 interrupt-parent = <&gic>;
358 #interrupt-cells = <2>;
359 };
360
361 ethsys: syscon@15000000 {
362 #address-cells = <1>;
363 #size-cells = <1>;
developer2df324b2021-06-24 10:21:45 +0800364 compatible = "mediatek,mt7986-ethsys_ck",
developerfd40db22021-04-29 10:08:25 +0800365 "syscon";
366 reg = <0 0x15000000 0 0x1000>;
367 #clock-cells = <1>;
368 #reset-cells = <1>;
369
370 ethsysrst: reset-controller {
371 compatible = "ti,syscon-reset";
372 #reset-cells = <1>;
373 ti,reset-bits = <0x34 4 0x34 4 0x34 4 (ASSERT_SET | DEASSERT_CLEAR | STATUS_SET)>;
374 };
375 };
376
377 eth: ethernet@15100000 {
378 compatible = "mediatek,mt7986-eth";
379 reg = <0 0x15100000 0 0x80000>;
developer94806ec2023-05-19 14:16:44 +0800380 interrupts = <GIC_SPI 189 IRQ_TYPE_LEVEL_HIGH>,
381 <GIC_SPI 190 IRQ_TYPE_LEVEL_HIGH>,
382 <GIC_SPI 191 IRQ_TYPE_LEVEL_HIGH>,
383 <GIC_SPI 192 IRQ_TYPE_LEVEL_HIGH>,
384 <GIC_SPI 196 IRQ_TYPE_LEVEL_HIGH>,
385 <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>,
386 <GIC_SPI 198 IRQ_TYPE_LEVEL_HIGH>,
387 <GIC_SPI 199 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800388 clocks = <&ethsys CK_ETH_FE_EN>,
389 <&ethsys CK_ETH_GP2_EN>,
390 <&ethsys CK_ETH_GP1_EN>,
391 <&ethsys CK_ETH_WOCPU1_EN>,
392 <&ethsys CK_ETH_WOCPU0_EN>,
developer77bbf432021-06-28 18:39:08 +0800393 <&sgmiisys0 CK_SGM0_TX_EN>,
394 <&sgmiisys0 CK_SGM0_RX_EN>,
395 <&sgmiisys0 CK_SGM0_CK0_EN>,
396 <&sgmiisys0 CK_SGM0_CDR_CK0_EN>,
397 <&sgmiisys1 CK_SGM1_TX_EN>,
398 <&sgmiisys1 CK_SGM1_RX_EN>,
399 <&sgmiisys1 CK_SGM1_CK1_EN>,
400 <&sgmiisys1 CK_SGM1_CDR_CK1_EN>;
developerfd40db22021-04-29 10:08:25 +0800401 clock-names = "fe", "gp2", "gp1", "wocpu1", "wocpu0",
402 "sgmii_tx250m", "sgmii_rx250m",
403 "sgmii_cdr_ref", "sgmii_cdr_fb",
404 "sgmii2_tx250m", "sgmii2_rx250m",
405 "sgmii2_cdr_ref", "sgmii2_cdr_fb";
developer2df324b2021-06-24 10:21:45 +0800406 assigned-clocks = <&topckgen CK_TOP_NETSYS_2X_SEL>,
407 <&topckgen CK_TOP_SGM_325M_SEL>;
408 assigned-clock-parents = <&topckgen CK_TOP_CB_NET2_800M>,
409 <&topckgen CK_TOP_CB_SGM_325M>;
developerfd40db22021-04-29 10:08:25 +0800410 mediatek,ethsys = <&ethsys>;
411 mediatek,sgmiisys = <&sgmiisys0>, <&sgmiisys1>;
412 #reset-cells = <1>;
413 #address-cells = <1>;
414 #size-cells = <0>;
415 status = "disabled";
416 };
417
418 hnat: hnat@15000000 {
419 compatible = "mediatek,mtk-hnat_v4";
420 reg = <0 0x15100000 0 0x80000>;
421 resets = <&ethsys 0>;
422 reset-names = "mtketh";
423 status = "disabled";
424 };
425
426 sgmiisys0: syscon@10060000 {
developer2df324b2021-06-24 10:21:45 +0800427 compatible = "mediatek,mt7986-sgmiisys",
428 "mediatek,mt7986-sgmiisys_0",
429 "syscon";
developerfd40db22021-04-29 10:08:25 +0800430 reg = <0 0x10060000 0 0x1000>;
431 #clock-cells = <1>;
432 };
433
434 sgmiisys1: syscon@10070000 {
developer2df324b2021-06-24 10:21:45 +0800435 compatible = "mediatek,mt7986-sgmiisys",
436 "mediatek,mt7986-sgmiisys_1",
437 "syscon";
developerfd40db22021-04-29 10:08:25 +0800438 reg = <0 0x10070000 0 0x1000>;
439 #clock-cells = <1>;
440 };
441
442 snand: snfi@11005000 {
443 compatible = "mediatek,mt7986-snand";
444 reg = <0 0x11005000 0 0x1000>, <0 0x11006000 0 0x1000>;
445 reg-names = "nfi", "ecc";
446 interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
developer248c10b2021-07-14 16:11:19 +0800447 clocks = <&infracfg_ao CK_INFRA_SPINFI1_CK>,
448 <&infracfg_ao CK_INFRA_NFI1_CK>,
449 <&infracfg_ao CK_INFRA_NFI_HCK_CK>;
450 clock-names = "pad_clk", "nfi_clk", "nfi_hclk";
developer2df324b2021-06-24 10:21:45 +0800451 assigned-clocks = <&topckgen CK_TOP_SPINFI_SEL>,
452 <&topckgen CK_TOP_NFI1X_SEL>;
developere5562612021-08-05 15:50:40 +0800453 assigned-clock-parents = <&topckgen CK_TOP_CB_M_D8>,
454 <&topckgen CK_TOP_CB_M_D8>;
developerfd40db22021-04-29 10:08:25 +0800455 #address-cells = <1>;
456 #size-cells = <0>;
457 status = "disabled";
458 };
459
460 wbsys: wbsys@18000000 {
developereb527ef2022-01-12 10:38:12 +0800461 compatible = "mediatek,wbsys",
462 "mediatek,mt7986-wmac";
developere138bcd2021-12-06 09:20:47 +0800463 resets = <&watchdog MT7986_TOPRGU_CONSYS_RST>;
464 reset-names = "consys";
465 reg = <0 0x18000000 0 0x1000000>,
466 <0 0x10003000 0 0x1000>,
developera5ea3d22022-02-17 09:23:09 +0800467 <0 0x11d10000 0 0x1000>;
developerfd40db22021-04-29 10:08:25 +0800468 interrupts = <GIC_SPI 213 IRQ_TYPE_LEVEL_HIGH>,
469 <GIC_SPI 214 IRQ_TYPE_LEVEL_HIGH>,
470 <GIC_SPI 215 IRQ_TYPE_LEVEL_HIGH>,
471 <GIC_SPI 216 IRQ_TYPE_LEVEL_HIGH>;
472 chip_id = <0x7986>;
developere138bcd2021-12-06 09:20:47 +0800473 memory-region = <&wmcpu_emi>;
developerfd40db22021-04-29 10:08:25 +0800474 };
475
476 wed_pcie: wed_pcie@10003000 {
477 compatible = "mediatek,wed_pcie";
478 reg = <0 0x10003000 0 0x10>;
479 };
480
481 spi0: spi@1100a000 {
developer44700a22021-07-13 19:06:49 +0800482 compatible = "mediatek,ipm-spi-quad";
developerfd40db22021-04-29 10:08:25 +0800483 reg = <0 0x1100a000 0 0x100>;
484 interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800485 clocks = <&topckgen CK_TOP_CB_M_D2>,
developer44700a22021-07-13 19:06:49 +0800486 <&topckgen CK_TOP_SPI_SEL>,
developer2df324b2021-06-24 10:21:45 +0800487 <&infracfg_ao CK_INFRA_SPI0_CK>,
developer44700a22021-07-13 19:06:49 +0800488 <&infracfg_ao CK_INFRA_SPI0_HCK_CK>;
489 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
developerfd40db22021-04-29 10:08:25 +0800490 status = "disabled";
491 };
492
493 spi1: spi@1100b000 {
developer44700a22021-07-13 19:06:49 +0800494 compatible = "mediatek,ipm-spi-single";
developerfd40db22021-04-29 10:08:25 +0800495 reg = <0 0x1100b000 0 0x100>;
496 interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>;
developer2df324b2021-06-24 10:21:45 +0800497 clocks = <&topckgen CK_TOP_CB_M_D2>,
developer44700a22021-07-13 19:06:49 +0800498 <&topckgen CK_TOP_SPIM_MST_SEL>,
developer2df324b2021-06-24 10:21:45 +0800499 <&infracfg_ao CK_INFRA_SPI1_CK>,
developer44700a22021-07-13 19:06:49 +0800500 <&infracfg_ao CK_INFRA_SPI1_HCK_CK>;
501 clock-names = "parent-clk", "sel-clk", "spi-clk", "spi-hclk";
developerfd40db22021-04-29 10:08:25 +0800502 status = "disabled";
503 };
504
developerf1422f62021-09-14 13:59:15 +0800505 mmc0: mmc@11230000 {
506 compatible = "mediatek,mt7986-mmc";
507 reg = <0 0x11230000 0 0x1000>,
508 <0 0x11c20000 0 0x1000>;
509 interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_HIGH>;
510 clocks = <&topckgen CK_TOP_EMMC_416M>,
developer30389d92022-05-10 09:35:17 +0800511 <&infracfg_ao CK_INFRA_MSDC_HCK_CK>,
512 <&infracfg_ao CK_INFRA_MSDC_CK>,
513 <&infracfg_ao CK_INFRA_MSDC_66M_CK>,
514 <&infracfg_ao CK_INFRA_MSDC_133M_CK>;
515 clock-names = "source", "hclk", "source_cg", "sys_cg", "axi_cg";
developerf1422f62021-09-14 13:59:15 +0800516 assigned-clocks = <&topckgen CK_TOP_EMMC_416M_SEL>,
517 <&topckgen CK_TOP_EMMC_250M_SEL>;
developerf77870c2021-12-14 14:39:02 +0800518 assigned-clock-parents = <&topckgen CK_TOP_CB_M_416M>,
519 <&topckgen CK_TOP_NET1_D5_D2>;
developerf1422f62021-09-14 13:59:15 +0800520 status = "disabled";
521 };
522
developeree2df732021-05-21 15:19:42 +0800523 auxadc: adc@1100d000 {
524 compatible = "mediatek,mt7986-auxadc",
525 "mediatek,mt7622-auxadc";
526 reg = <0 0x1100d000 0 0x1000>;
developer2cdfa052021-08-12 10:41:52 +0800527 clocks = <&infracfg_ao CK_INFRA_ADC_26M_CK>,
528 <&infracfg_ao CK_INFRA_ADC_FRC_CK>;
529 clock-names = "main", "32k";
developeree2df732021-05-21 15:19:42 +0800530 #io-channel-cells = <1>;
developer2df324b2021-06-24 10:21:45 +0800531 status = "disabled";
developeree2df732021-05-21 15:19:42 +0800532 };
533
developerfd40db22021-04-29 10:08:25 +0800534 consys: consys@10000000 {
535 compatible = "mediatek,mt7986-consys";
536 reg = <0 0x10000000 0 0x8600000>;
537 memory-region = <&wmcpu_emi>;
538 };
539
540 xhci: xhci@11200000 {
541 compatible = "mediatek,mt7986-xhci",
542 "mediatek,mtk-xhci";
543 reg = <0 0x11200000 0 0x2e00>,
544 <0 0x11203e00 0 0x0100>;
545 reg-names = "mac", "ippc";
546 interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>;
developer8bc9fac2021-11-29 10:26:12 +0800547 phys = <&u3port0 PHY_TYPE_USB3>,
developerfd40db22021-04-29 10:08:25 +0800548 <&u2port1 PHY_TYPE_USB2>;
549 clocks = <&system_clk>,
550 <&system_clk>,
551 <&system_clk>,
552 <&system_clk>,
553 <&system_clk>;
554 clock-names = "sys_ck",
555 "xhci_ck",
556 "ref_ck",
557 "mcu_ck",
558 "dma_ck";
559 #address-cells = <2>;
560 #size-cells = <2>;
561 status = "okay";
562 };
563
564 usbtphy: usb-phy@11e10000 {
565 compatible = "mediatek,mt7986",
566 "mediatek,generic-tphy-v2";
567 #address-cells = <2>;
568 #size-cells = <2>;
569 ranges;
570 status = "okay";
571
572 u2port0: usb-phy@11e10000 {
573 reg = <0 0x11e10000 0 0x700>;
574 clocks = <&system_clk>;
575 clock-names = "ref";
576 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800577 auto_load_valid;
578 nvmem-cells = <&u2_intr_p0>, <&u2_auto_load_valid_p0>;
579 nvmem-cell-names = "intr", "auto_load_valid";
developer8bc9fac2021-11-29 10:26:12 +0800580 status = "disabled";
developerfd40db22021-04-29 10:08:25 +0800581 };
582
583 u3port0: usb-phy@11e10700 {
584 reg = <0 0x11e10700 0 0x900>;
585 clocks = <&system_clk>;
586 clock-names = "ref";
587 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800588 auto_load_valid;
589 nvmem-cells = <&comb_intr_p0>,
590 <&comb_rx_imp_p0>,
591 <&comb_tx_imp_p0>,
592 <&comb_auto_load_valid>;
593 nvmem-cell-names = "intr", "rx_imp", "tx_imp", "auto_load_valid";
developerfd40db22021-04-29 10:08:25 +0800594 status = "okay";
595 };
596
597 u2port1: usb-phy@11e11000 {
598 reg = <0 0x11e11000 0 0x700>;
599 clocks = <&system_clk>;
600 clock-names = "ref";
601 #phy-cells = <1>;
developer98e5cb22022-01-28 17:31:23 +0800602 auto_load_valid;
603 nvmem-cells = <&u2_intr_p1>, <&u2_auto_load_valid_p1>;
604 nvmem-cell-names = "intr", "auto_load_valid";
developer8bc9fac2021-11-29 10:26:12 +0800605 status = "okay";
developerfd40db22021-04-29 10:08:25 +0800606 };
607 };
developer2df324b2021-06-24 10:21:45 +0800608
609 clkitg: clkitg {
610 compatible = "simple-bus";
611 };
developerfbbf02b2021-06-25 09:30:28 +0800612
613 trng: trng@1020f000 {
614 compatible = "mediatek,mt7986-rng",
615 "mediatek,mt7623-rng";
616 reg = <0 0x1020f000 0 0x100>;
617 clocks = <&infracfg_ao CK_INFRA_TRNG_CK>;
618 clock-names = "rng";
619 };
developer86ee1e12021-06-30 11:18:53 +0800620
621 ice: ice_debug {
developer55aba642021-12-02 09:30:04 +0800622 compatible = "mediatek,mt7986-ice_debug",
developer86ee1e12021-06-30 11:18:53 +0800623 "mediatek,mt2701-ice_debug";
developer66b5c8d2021-07-16 14:02:47 +0800624 clocks = <&infracfg_ao CK_INFRA_DBG_CK>,
625 <&topckgen CK_TOP_ARM_DB_JTSEL>;
626 clock-names = "ice_dbg", "dbg_jtsel";
developer86ee1e12021-06-30 11:18:53 +0800627 };
developer3e9ad9d2021-07-01 16:42:25 +0800628
629 efuse: efuse@11d00000 {
630 compatible = "mediatek,mt7986-efuse",
631 "mediatek,efuse";
632 reg = <0 0x11d00000 0 0x1000>;
633 #address-cells = <1>;
634 #size-cells = <1>;
635
636 thermal_calibration: calib@274 {
637 reg = <0x274 0xc>;
638 };
developere138bcd2021-12-06 09:20:47 +0800639
developer98e5cb22022-01-28 17:31:23 +0800640 comb_auto_load_valid: usb3-alv-imp@8da {
641 reg = <0x8da 1>;
642 bits = <0 1>;
643 };
644
645 comb_rx_imp_p0: usb3-rx-imp@8d8 {
646 reg = <0x8d8 1>;
647 bits = <0 5>;
648 };
649
650 comb_tx_imp_p0: usb3-tx-imp@8d8 {
651 reg = <0x8d8 2>;
652 bits = <5 5>;
653 };
654
655 comb_intr_p0: usb3-intr@8d9 {
656 reg = <0x8d9 1>;
657 bits = <2 6>;
658 };
659
660 u2_auto_load_valid_p0: usb2-alv-p0@8e0 {
661 reg = <0x8e0 1>;
662 bits = <0 1>;
663 };
664
665 u2_intr_p0: usb2-intr-p0@8e0 {
666 reg = <0x8e0 1>;
667 bits = <1 5>;
668 };
669
670 u2_auto_load_valid_p1: usb2-alv-p1@8e0 {
671 reg = <0x8e0 2>;
672 bits = <6 1>;
673 };
674
675 u2_intr_p1: usb2-intr-p1@8e0 {
676 reg = <0x8e0 2>;
677 bits = <7 5>;
678 };
679 };
developerfd40db22021-04-29 10:08:25 +0800680};
developer2df324b2021-06-24 10:21:45 +0800681
682#include "mt7986-clkitg.dtsi"