UPSTREAM: arm64: dts: rockchip: add rk3399 thermal_zones phandle
[firefly-linux-kernel-4.4.55.git] / arch / arm64 / boot / dts / rockchip / rk3399.dtsi
1 /*
2  * Copyright (c) 2016 Fuzhou Rockchip Electronics Co., Ltd
3  *
4  * This file is dual-licensed: you can use it either under the terms
5  * of the GPL or the X11 license, at your option. Note that this dual
6  * licensing only applies to this file, and not this project as a
7  * whole.
8  *
9  *  a) This library is free software; you can redistribute it and/or
10  *     modify it under the terms of the GNU General Public License as
11  *     published by the Free Software Foundation; either version 2 of the
12  *     License, or (at your option) any later version.
13  *
14  *     This library is distributed in the hope that it will be useful,
15  *     but WITHOUT ANY WARRANTY; without even the implied warranty of
16  *     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  *     GNU General Public License for more details.
18  *
19  * Or, alternatively,
20  *
21  *  b) Permission is hereby granted, free of charge, to any person
22  *     obtaining a copy of this software and associated documentation
23  *     files (the "Software"), to deal in the Software without
24  *     restriction, including without limitation the rights to use,
25  *     copy, modify, merge, publish, distribute, sublicense, and/or
26  *     sell copies of the Software, and to permit persons to whom the
27  *     Software is furnished to do so, subject to the following
28  *     conditions:
29  *
30  *     The above copyright notice and this permission notice shall be
31  *     included in all copies or substantial portions of the Software.
32  *
33  *     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
34  *     EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
35  *     OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
36  *     NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
37  *     HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
38  *     WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
39  *     FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
40  *     OTHER DEALINGS IN THE SOFTWARE.
41  */
42
43 #include <dt-bindings/clock/rk3399-cru.h>
44 #include <dt-bindings/gpio/gpio.h>
45 #include <dt-bindings/interrupt-controller/arm-gic.h>
46 #include <dt-bindings/interrupt-controller/irq.h>
47 #include <dt-bindings/pinctrl/rockchip.h>
48 #include <dt-bindings/power/rk3399-power.h>
49 #include <dt-bindings/soc/rockchip,boot-mode.h>
50 #include <dt-bindings/suspend/rockchip-rk3399.h>
51 #include <dt-bindings/thermal/thermal.h>
52
53 #include "rk3399-dram-default-timing.dtsi"
54
55 / {
56         compatible = "rockchip,rk3399";
57
58         interrupt-parent = <&gic>;
59         #address-cells = <2>;
60         #size-cells = <2>;
61
62         aliases {
63                 i2c0 = &i2c0;
64                 i2c1 = &i2c1;
65                 i2c2 = &i2c2;
66                 i2c3 = &i2c3;
67                 i2c4 = &i2c4;
68                 i2c5 = &i2c5;
69                 i2c6 = &i2c6;
70                 i2c7 = &i2c7;
71                 i2c8 = &i2c8;
72                 serial0 = &uart0;
73                 serial1 = &uart1;
74                 serial2 = &uart2;
75                 serial3 = &uart3;
76                 serial4 = &uart4;
77         };
78
79         cpus {
80                 #address-cells = <2>;
81                 #size-cells = <0>;
82
83                 cpu-map {
84                         cluster0 {
85                                 core0 {
86                                         cpu = <&cpu_l0>;
87                                 };
88                                 core1 {
89                                         cpu = <&cpu_l1>;
90                                 };
91                                 core2 {
92                                         cpu = <&cpu_l2>;
93                                 };
94                                 core3 {
95                                         cpu = <&cpu_l3>;
96                                 };
97                         };
98
99                         cluster1 {
100                                 core0 {
101                                         cpu = <&cpu_b0>;
102                                 };
103                                 core1 {
104                                         cpu = <&cpu_b1>;
105                                 };
106                         };
107                 };
108
109                 cpu_l0: cpu@0 {
110                         device_type = "cpu";
111                         compatible = "arm,cortex-a53", "arm,armv8";
112                         reg = <0x0 0x0>;
113                         enable-method = "psci";
114                         #cooling-cells = <2>; /* min followed by max */
115                         dynamic-power-coefficient = <100>;
116                         clocks = <&cru ARMCLKL>;
117                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
118                 };
119
120                 cpu_l1: cpu@1 {
121                         device_type = "cpu";
122                         compatible = "arm,cortex-a53", "arm,armv8";
123                         reg = <0x0 0x1>;
124                         enable-method = "psci";
125                         clocks = <&cru ARMCLKL>;
126                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
127                 };
128
129                 cpu_l2: cpu@2 {
130                         device_type = "cpu";
131                         compatible = "arm,cortex-a53", "arm,armv8";
132                         reg = <0x0 0x2>;
133                         enable-method = "psci";
134                         clocks = <&cru ARMCLKL>;
135                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
136                 };
137
138                 cpu_l3: cpu@3 {
139                         device_type = "cpu";
140                         compatible = "arm,cortex-a53", "arm,armv8";
141                         reg = <0x0 0x3>;
142                         enable-method = "psci";
143                         clocks = <&cru ARMCLKL>;
144                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
145                 };
146
147                 cpu_b0: cpu@100 {
148                         device_type = "cpu";
149                         compatible = "arm,cortex-a72", "arm,armv8";
150                         reg = <0x0 0x100>;
151                         enable-method = "psci";
152                         #cooling-cells = <2>; /* min followed by max */
153                         dynamic-power-coefficient = <436>;
154                         clocks = <&cru ARMCLKB>;
155                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
156                 };
157
158                 cpu_b1: cpu@101 {
159                         device_type = "cpu";
160                         compatible = "arm,cortex-a72", "arm,armv8";
161                         reg = <0x0 0x101>;
162                         enable-method = "psci";
163                         clocks = <&cru ARMCLKB>;
164                         cpu-idle-states = <&CPU_SLEEP &CLUSTER_SLEEP>;
165                 };
166
167                 idle-states {
168                         entry-method = "psci";
169
170                         CPU_SLEEP: cpu-sleep {
171                                 compatible = "arm,idle-state";
172                                 local-timer-stop;
173                                 arm,psci-suspend-param = <0x0010000>;
174                                 entry-latency-us = <120>;
175                                 exit-latency-us = <250>;
176                                 min-residency-us = <900>;
177                         };
178
179                         CLUSTER_SLEEP: cluster-sleep {
180                                 compatible = "arm,idle-state";
181                                 local-timer-stop;
182                                 arm,psci-suspend-param = <0x1010000>;
183                                 entry-latency-us = <400>;
184                                 exit-latency-us = <500>;
185                                 min-residency-us = <2000>;
186                         };
187                 };
188         };
189
190         cpu_avs: cpu-avs {
191                 cluster0-avs {
192                         cluster-id = <0>;
193                         min-volt = <800000>; /* uV */
194                         min-freq = <408000>; /* KHz */
195                         leakage-adjust-volt = <
196                         /*  mA        mA         uV */
197                             0         254        0
198                         >;
199                         nvmem-cells = <&cpul_leakage>;
200                         nvmem-cell-names = "cpu_leakage";
201                 };
202                 cluster1-avs {
203                         cluster-id = <1>;
204                         min-volt = <800000>; /* uV */
205                         min-freq = <408000>; /* KHz */
206                         leakage-adjust-volt = <
207                         /*  mA        mA         uV */
208                             0         254        0
209                         >;
210                         nvmem-cells = <&cpub_leakage>;
211                         nvmem-cell-names = "cpu_leakage";
212                 };
213         };
214
215         pmu_a53 {
216                 compatible = "arm,cortex-a53-pmu";
217                 interrupts = <GIC_PPI 7 IRQ_TYPE_LEVEL_LOW &ppi_cluster0>;
218         };
219
220         pmu_a72 {
221                 compatible = "arm,cortex-a72-pmu";
222                 interrupts = <GIC_PPI 7 IRQ_TYPE_LEVEL_LOW &ppi_cluster1>;
223         };
224
225         psci {
226                 compatible = "arm,psci-1.0";
227                 method = "smc";
228         };
229
230         timer {
231                 compatible = "arm,armv8-timer";
232                 interrupts = <GIC_PPI 13 IRQ_TYPE_LEVEL_LOW 0>,
233                              <GIC_PPI 14 IRQ_TYPE_LEVEL_LOW 0>,
234                              <GIC_PPI 11 IRQ_TYPE_LEVEL_LOW 0>,
235                              <GIC_PPI 10 IRQ_TYPE_LEVEL_LOW 0>;
236         };
237
238         xin24m: xin24m {
239                 compatible = "fixed-clock";
240                 clock-frequency = <24000000>;
241                 clock-output-names = "xin24m";
242                 #clock-cells = <0>;
243         };
244
245         amba {
246                 compatible = "arm,amba-bus";
247                 #address-cells = <2>;
248                 #size-cells = <2>;
249                 ranges;
250
251                 dmac_bus: dma-controller@ff6d0000 {
252                         compatible = "arm,pl330", "arm,primecell";
253                         reg = <0x0 0xff6d0000 0x0 0x4000>;
254                         interrupts = <GIC_SPI 5 IRQ_TYPE_LEVEL_HIGH 0>,
255                                      <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH 0>;
256                         #dma-cells = <1>;
257                         clocks = <&cru ACLK_DMAC0_PERILP>;
258                         clock-names = "apb_pclk";
259                         peripherals-req-type-burst;
260                 };
261
262                 dmac_peri: dma-controller@ff6e0000 {
263                         compatible = "arm,pl330", "arm,primecell";
264                         reg = <0x0 0xff6e0000 0x0 0x4000>;
265                         interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH 0>,
266                                      <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH 0>;
267                         #dma-cells = <1>;
268                         clocks = <&cru ACLK_DMAC1_PERILP>;
269                         clock-names = "apb_pclk";
270                         peripherals-req-type-burst;
271                 };
272         };
273
274         gmac: eth@fe300000 {
275                 compatible = "rockchip,rk3399-gmac";
276                 reg = <0x0 0xfe300000 0x0 0x10000>;
277                 rockchip,grf = <&grf>;
278                 interrupts = <GIC_SPI 12 IRQ_TYPE_LEVEL_HIGH 0>;
279                 interrupt-names = "macirq";
280                 clocks = <&cru SCLK_MAC>, <&cru SCLK_MAC_RX>,
281                          <&cru SCLK_MAC_TX>, <&cru SCLK_MACREF>,
282                          <&cru SCLK_MACREF_OUT>, <&cru ACLK_GMAC>,
283                          <&cru PCLK_GMAC>;
284                 clock-names = "stmmaceth", "mac_clk_rx",
285                               "mac_clk_tx", "clk_mac_ref",
286                               "clk_mac_refout", "aclk_mac",
287                               "pclk_mac";
288                 resets = <&cru SRST_A_GMAC>;
289                 reset-names = "stmmaceth";
290                 power-domains = <&power RK3399_PD_GMAC>;
291                 status = "disabled";
292         };
293
294         sdio0: dwmmc@fe310000 {
295                 compatible = "rockchip,rk3399-dw-mshc",
296                              "rockchip,rk3288-dw-mshc";
297                 reg = <0x0 0xfe310000 0x0 0x4000>;
298                 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH 0>;
299                 clock-freq-min-max = <400000 150000000>;
300                 clocks = <&cru HCLK_SDIO>, <&cru SCLK_SDIO>,
301                          <&cru SCLK_SDIO_DRV>, <&cru SCLK_SDIO_SAMPLE>;
302                 clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
303                 fifo-depth = <0x100>;
304                 power-domains = <&power RK3399_PD_SDIOAUDIO>;
305                 status = "disabled";
306         };
307
308         sdmmc: dwmmc@fe320000 {
309                 compatible = "rockchip,rk3399-dw-mshc",
310                              "rockchip,rk3288-dw-mshc";
311                 reg = <0x0 0xfe320000 0x0 0x4000>;
312                 interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH 0>;
313                 clock-freq-min-max = <400000 150000000>;
314                 clocks = <&cru HCLK_SDMMC>, <&cru SCLK_SDMMC>,
315                          <&cru SCLK_SDMMC_DRV>, <&cru SCLK_SDMMC_SAMPLE>;
316                 clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
317                 fifo-depth = <0x100>;
318                 power-domains = <&power RK3399_PD_SD>;
319                 status = "disabled";
320         };
321
322         sdhci: sdhci@fe330000 {
323                 compatible = "rockchip,rk3399-sdhci-5.1", "arasan,sdhci-5.1";
324                 reg = <0x0 0xfe330000 0x0 0x10000>;
325                 interrupts = <GIC_SPI 11 IRQ_TYPE_LEVEL_HIGH 0>;
326                 arasan,soc-ctl-syscon = <&grf>;
327                 assigned-clocks = <&cru SCLK_EMMC>;
328                 assigned-clock-rates = <200000000>;
329                 clocks = <&cru SCLK_EMMC>, <&cru ACLK_EMMC>;
330                 clock-names = "clk_xin", "clk_ahb";
331                 clock-output-names = "emmc_cardclock";
332                 #clock-cells = <0>;
333                 phys = <&emmc_phy>;
334                 phy-names = "phy_arasan";
335                 power-domains = <&power RK3399_PD_EMMC>;
336                 status = "disabled";
337         };
338
339         usb_host0_ehci: usb@fe380000 {
340                 compatible = "generic-ehci";
341                 reg = <0x0 0xfe380000 0x0 0x20000>;
342                 interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH 0>;
343                 clocks = <&cru HCLK_HOST0>, <&cru HCLK_HOST0_ARB>,
344                          <&cru SCLK_USBPHY0_480M_SRC>;
345                 clock-names = "hclk_host0", "hclk_host0_arb", "usbphy0_480m";
346                 phys = <&u2phy0_host>;
347                 phy-names = "usb";
348                 power-domains = <&power RK3399_PD_PERIHP>;
349                 status = "disabled";
350         };
351
352         usb_host0_ohci: usb@fe3a0000 {
353                 compatible = "generic-ohci";
354                 reg = <0x0 0xfe3a0000 0x0 0x20000>;
355                 interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH 0>;
356                 clocks = <&cru HCLK_HOST0>, <&cru HCLK_HOST0_ARB>,
357                          <&cru SCLK_USBPHY0_480M_SRC>;
358                 clock-names = "hclk_host0", "hclk_host0_arb", "usbphy0_480m";
359                 phys = <&u2phy0_host>;
360                 phy-names = "usb";
361                 power-domains = <&power RK3399_PD_PERIHP>;
362                 status = "disabled";
363         };
364
365         usb_host1_ehci: usb@fe3c0000 {
366                 compatible = "generic-ehci";
367                 reg = <0x0 0xfe3c0000 0x0 0x20000>;
368                 interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH 0>;
369                 clocks = <&cru HCLK_HOST1>, <&cru HCLK_HOST1_ARB>,
370                          <&cru SCLK_USBPHY1_480M_SRC>;
371                 clock-names = "hclk_host1", "hclk_host1_arb", "usbphy1_480m";
372                 phys = <&u2phy1_host>;
373                 phy-names = "usb";
374                 power-domains = <&power RK3399_PD_PERIHP>;
375                 status = "disabled";
376         };
377
378         usb_host1_ohci: usb@fe3e0000 {
379                 compatible = "generic-ohci";
380                 reg = <0x0 0xfe3e0000 0x0 0x20000>;
381                 interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH 0>;
382                 clocks = <&cru HCLK_HOST1>, <&cru HCLK_HOST1_ARB>,
383                          <&cru SCLK_USBPHY1_480M_SRC>;
384                 clock-names = "hclk_host1", "hclk_host1_arb", "usbphy1_480m";
385                 phys = <&u2phy1_host>;
386                 phy-names = "usb";
387                 power-domains = <&power RK3399_PD_PERIHP>;
388                 status = "disabled";
389         };
390
391         usbdrd3_0: usb@fe800000 {
392                 compatible = "rockchip,rk3399-dwc3";
393                 clocks = <&cru SCLK_USB3OTG0_REF>, <&cru SCLK_USB3OTG0_SUSPEND>,
394                          <&cru ACLK_USB3OTG0>, <&cru ACLK_USB3_GRF>;
395                 clock-names = "ref_clk", "suspend_clk",
396                               "bus_clk", "grf_clk";
397                 power-domains = <&power RK3399_PD_USB3>;
398                 resets = <&cru SRST_A_USB3_OTG0>;
399                 reset-names = "usb3-otg";
400                 #address-cells = <2>;
401                 #size-cells = <2>;
402                 ranges;
403                 status = "disabled";
404                 usbdrd_dwc3_0: dwc3@fe800000 {
405                         compatible = "snps,dwc3";
406                         reg = <0x0 0xfe800000 0x0 0x100000>;
407                         interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH 0>;
408                         dr_mode = "otg";
409                         phys = <&u2phy0_otg>, <&tcphy0_usb3>;
410                         phy-names = "usb2-phy", "usb3-phy";
411                         phy_type = "utmi_wide";
412                         snps,dis_enblslpm_quirk;
413                         snps,dis-u2-freeclk-exists-quirk;
414                         snps,dis_u2_susphy_quirk;
415                         snps,dis-del-phy-power-chg-quirk;
416                         snps,xhci-slow-suspend-quirk;
417                         status = "disabled";
418                 };
419         };
420
421         usbdrd3_1: usb@fe900000 {
422                 compatible = "rockchip,rk3399-dwc3";
423                 clocks = <&cru SCLK_USB3OTG1_REF>, <&cru SCLK_USB3OTG1_SUSPEND>,
424                          <&cru ACLK_USB3OTG1>, <&cru ACLK_USB3_GRF>;
425                 clock-names = "ref_clk", "suspend_clk",
426                               "bus_clk", "grf_clk";
427                 power-domains = <&power RK3399_PD_USB3>;
428                 resets = <&cru SRST_A_USB3_OTG1>;
429                 reset-names = "usb3-otg";
430                 #address-cells = <2>;
431                 #size-cells = <2>;
432                 ranges;
433                 status = "disabled";
434                 usbdrd_dwc3_1: dwc3@fe900000 {
435                         compatible = "snps,dwc3";
436                         reg = <0x0 0xfe900000 0x0 0x100000>;
437                         interrupts = <GIC_SPI 110 IRQ_TYPE_LEVEL_HIGH 0>;
438                         dr_mode = "host";
439                         phys = <&u2phy1_otg>, <&tcphy1_usb3>;
440                         phy-names = "usb2-phy", "usb3-phy";
441                         phy_type = "utmi_wide";
442                         snps,dis_enblslpm_quirk;
443                         snps,dis-u2-freeclk-exists-quirk;
444                         snps,dis_u2_susphy_quirk;
445                         snps,dis-del-phy-power-chg-quirk;
446                         snps,xhci-slow-suspend-quirk;
447                         status = "disabled";
448                 };
449         };
450
451         cdn_dp: dp@fec00000 {
452                 compatible = "rockchip,rk3399-cdn-dp";
453                 reg = <0x0 0xfec00000 0x0 0x100000>;
454                 interrupts = <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
455                 clocks = <&cru SCLK_DP_CORE>, <&cru PCLK_DP_CTRL>,
456                          <&cru SCLK_SPDIF_REC_DPTX>, <&cru PCLK_VIO_GRF>;
457                 clock-names = "core-clk", "pclk", "spdif", "grf";
458                 assigned-clocks = <&cru SCLK_DP_CORE>;
459                 assigned-clock-rates = <100000000>;
460                 power-domains = <&power RK3399_PD_HDCP>;
461                 phys = <&tcphy0_dp>, <&tcphy1_dp>;
462                 resets = <&cru SRST_DPTX_SPDIF_REC>, <&cru SRST_P_UPHY0_DPTX>,
463                          <&cru SRST_P_UPHY0_APB>, <&cru SRST_DP_CORE>;
464                 reset-names = "spdif", "dptx", "apb", "core";
465                 rockchip,grf = <&grf>;
466                 #address-cells = <1>;
467                 #size-cells = <0>;
468                 #sound-dai-cells = <1>;
469                 status = "disabled";
470
471                 ports {
472                         #address-cells = <1>;
473                         #size-cells = <0>;
474
475                         dp_in: port {
476                                 #address-cells = <1>;
477                                 #size-cells = <0>;
478                                 dp_in_vopb: endpoint@0 {
479                                         reg = <0>;
480                                         remote-endpoint = <&vopb_out_dp>;
481                                 };
482
483                                 dp_in_vopl: endpoint@1 {
484                                         reg = <1>;
485                                         remote-endpoint = <&vopl_out_dp>;
486                                 };
487                         };
488                 };
489         };
490
491         gic: interrupt-controller@fee00000 {
492                 compatible = "arm,gic-v3";
493                 #interrupt-cells = <4>;
494                 #address-cells = <2>;
495                 #size-cells = <2>;
496                 ranges;
497                 interrupt-controller;
498
499                 reg = <0x0 0xfee00000 0 0x10000>, /* GICD */
500                       <0x0 0xfef00000 0 0xc0000>, /* GICR */
501                       <0x0 0xfff00000 0 0x10000>, /* GICC */
502                       <0x0 0xfff10000 0 0x10000>, /* GICH */
503                       <0x0 0xfff20000 0 0x10000>; /* GICV */
504                 interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH 0>;
505                 its: interrupt-controller@fee20000 {
506                         compatible = "arm,gic-v3-its";
507                         msi-controller;
508                         reg = <0x0 0xfee20000 0x0 0x20000>;
509                 };
510
511                 ppi-partitions {
512                         ppi_cluster0: interrupt-partition-0 {
513                                 affinity = <&cpu_l0 &cpu_l1 &cpu_l2 &cpu_l3>;
514                         };
515
516                         ppi_cluster1: interrupt-partition-1 {
517                                 affinity = <&cpu_b0 &cpu_b1>;
518                         };
519                 };
520         };
521
522         saradc: saradc@ff100000 {
523                 compatible = "rockchip,rk3399-saradc";
524                 reg = <0x0 0xff100000 0x0 0x100>;
525                 interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH 0>;
526                 #io-channel-cells = <1>;
527                 clocks = <&cru SCLK_SARADC>, <&cru PCLK_SARADC>;
528                 clock-names = "saradc", "apb_pclk";
529                 resets = <&cru SRST_P_SARADC>;
530                 reset-names = "saradc-apb";
531                 status = "disabled";
532         };
533
534         i2c0: i2c@ff3c0000 {
535                 compatible = "rockchip,rk3399-i2c";
536                 reg = <0x0 0xff3c0000 0x0 0x1000>;
537                 clocks =  <&pmucru SCLK_I2C0_PMU>, <&pmucru PCLK_I2C0_PMU>;
538                 clock-names = "i2c", "pclk";
539                 interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH 0>;
540                 pinctrl-names = "default";
541                 pinctrl-0 = <&i2c0_xfer>;
542                 #address-cells = <1>;
543                 #size-cells = <0>;
544                 status = "disabled";
545         };
546
547         i2c1: i2c@ff110000 {
548                 compatible = "rockchip,rk3399-i2c";
549                 reg = <0x0 0xff110000 0x0 0x1000>;
550                 clocks = <&cru SCLK_I2C1>, <&cru PCLK_I2C1>;
551                 clock-names = "i2c", "pclk";
552                 interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH 0>;
553                 pinctrl-names = "default";
554                 pinctrl-0 = <&i2c1_xfer>;
555                 #address-cells = <1>;
556                 #size-cells = <0>;
557                 status = "disabled";
558         };
559
560         i2c2: i2c@ff120000 {
561                 compatible = "rockchip,rk3399-i2c";
562                 reg = <0x0 0xff120000 0x0 0x1000>;
563                 clocks = <&cru SCLK_I2C2>, <&cru PCLK_I2C2>;
564                 clock-names = "i2c", "pclk";
565                 interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH 0>;
566                 pinctrl-names = "default";
567                 pinctrl-0 = <&i2c2_xfer>;
568                 #address-cells = <1>;
569                 #size-cells = <0>;
570                 status = "disabled";
571         };
572
573         i2c3: i2c@ff130000 {
574                 compatible = "rockchip,rk3399-i2c";
575                 reg = <0x0 0xff130000 0x0 0x1000>;
576                 clocks = <&cru SCLK_I2C3>, <&cru PCLK_I2C3>;
577                 clock-names = "i2c", "pclk";
578                 interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH 0>;
579                 pinctrl-names = "default";
580                 pinctrl-0 = <&i2c3_xfer>;
581                 #address-cells = <1>;
582                 #size-cells = <0>;
583                 status = "disabled";
584         };
585
586         i2c5: i2c@ff140000 {
587                 compatible = "rockchip,rk3399-i2c";
588                 reg = <0x0 0xff140000 0x0 0x1000>;
589                 clocks = <&cru SCLK_I2C5>, <&cru PCLK_I2C5>;
590                 clock-names = "i2c", "pclk";
591                 interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH 0>;
592                 pinctrl-names = "default";
593                 pinctrl-0 = <&i2c5_xfer>;
594                 #address-cells = <1>;
595                 #size-cells = <0>;
596                 status = "disabled";
597         };
598
599         i2c6: i2c@ff150000 {
600                 compatible = "rockchip,rk3399-i2c";
601                 reg = <0x0 0xff150000 0x0 0x1000>;
602                 clocks = <&cru SCLK_I2C6>, <&cru PCLK_I2C6>;
603                 clock-names = "i2c", "pclk";
604                 interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH 0>;
605                 pinctrl-names = "default";
606                 pinctrl-0 = <&i2c6_xfer>;
607                 #address-cells = <1>;
608                 #size-cells = <0>;
609                 status = "disabled";
610         };
611
612         i2c7: i2c@ff160000 {
613                 compatible = "rockchip,rk3399-i2c";
614                 reg = <0x0 0xff160000 0x0 0x1000>;
615                 clocks = <&cru SCLK_I2C7>, <&cru PCLK_I2C7>;
616                 clock-names = "i2c", "pclk";
617                 interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH 0>;
618                 pinctrl-names = "default";
619                 pinctrl-0 = <&i2c7_xfer>;
620                 #address-cells = <1>;
621                 #size-cells = <0>;
622                 status = "disabled";
623         };
624
625         uart0: serial@ff180000 {
626                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
627                 reg = <0x0 0xff180000 0x0 0x100>;
628                 clocks = <&cru SCLK_UART0>, <&cru PCLK_UART0>;
629                 clock-names = "baudclk", "apb_pclk";
630                 interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH 0>;
631                 reg-shift = <2>;
632                 reg-io-width = <4>;
633                 pinctrl-names = "default";
634                 pinctrl-0 = <&uart0_xfer &uart0_cts &uart0_rts>;
635                 status = "disabled";
636         };
637
638         uart1: serial@ff190000 {
639                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
640                 reg = <0x0 0xff190000 0x0 0x100>;
641                 clocks = <&cru SCLK_UART1>, <&cru PCLK_UART1>;
642                 clock-names = "baudclk", "apb_pclk";
643                 interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH 0>;
644                 reg-shift = <2>;
645                 reg-io-width = <4>;
646                 pinctrl-names = "default";
647                 pinctrl-0 = <&uart1_xfer>;
648                 status = "disabled";
649         };
650
651         uart2: serial@ff1a0000 {
652                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
653                 reg = <0x0 0xff1a0000 0x0 0x100>;
654                 clocks = <&cru SCLK_UART2>, <&cru PCLK_UART2>;
655                 clock-names = "baudclk", "apb_pclk";
656                 interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH 0>;
657                 reg-shift = <2>;
658                 reg-io-width = <4>;
659                 pinctrl-names = "default";
660                 pinctrl-0 = <&uart2c_xfer>;
661                 status = "disabled";
662         };
663
664         uart3: serial@ff1b0000 {
665                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
666                 reg = <0x0 0xff1b0000 0x0 0x100>;
667                 clocks = <&cru SCLK_UART3>, <&cru PCLK_UART3>;
668                 clock-names = "baudclk", "apb_pclk";
669                 interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH 0>;
670                 reg-shift = <2>;
671                 reg-io-width = <4>;
672                 pinctrl-names = "default";
673                 pinctrl-0 = <&uart3_xfer &uart3_cts &uart3_rts>;
674                 status = "disabled";
675         };
676
677         spi0: spi@ff1c0000 {
678                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
679                 reg = <0x0 0xff1c0000 0x0 0x1000>;
680                 clocks = <&cru SCLK_SPI0>, <&cru PCLK_SPI0>;
681                 clock-names = "spiclk", "apb_pclk";
682                 interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH 0>;
683                 pinctrl-names = "default";
684                 pinctrl-0 = <&spi0_clk &spi0_tx &spi0_rx &spi0_cs0>;
685                 #address-cells = <1>;
686                 #size-cells = <0>;
687                 status = "disabled";
688         };
689
690         spi1: spi@ff1d0000 {
691                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
692                 reg = <0x0 0xff1d0000 0x0 0x1000>;
693                 clocks = <&cru SCLK_SPI1>, <&cru PCLK_SPI1>;
694                 clock-names = "spiclk", "apb_pclk";
695                 interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH 0>;
696                 pinctrl-names = "default";
697                 pinctrl-0 = <&spi1_clk &spi1_tx &spi1_rx &spi1_cs0>;
698                 #address-cells = <1>;
699                 #size-cells = <0>;
700                 status = "disabled";
701         };
702
703         spi2: spi@ff1e0000 {
704                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
705                 reg = <0x0 0xff1e0000 0x0 0x1000>;
706                 clocks = <&cru SCLK_SPI2>, <&cru PCLK_SPI2>;
707                 clock-names = "spiclk", "apb_pclk";
708                 interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH 0>;
709                 pinctrl-names = "default";
710                 pinctrl-0 = <&spi2_clk &spi2_tx &spi2_rx &spi2_cs0>;
711                 #address-cells = <1>;
712                 #size-cells = <0>;
713                 status = "disabled";
714         };
715
716         spi4: spi@ff1f0000 {
717                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
718                 reg = <0x0 0xff1f0000 0x0 0x1000>;
719                 clocks = <&cru SCLK_SPI4>, <&cru PCLK_SPI4>;
720                 clock-names = "spiclk", "apb_pclk";
721                 interrupts = <GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH 0>;
722                 pinctrl-names = "default";
723                 pinctrl-0 = <&spi4_clk &spi4_tx &spi4_rx &spi4_cs0>;
724                 #address-cells = <1>;
725                 #size-cells = <0>;
726                 status = "disabled";
727         };
728
729         spi5: spi@ff200000 {
730                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
731                 reg = <0x0 0xff200000 0x0 0x1000>;
732                 clocks = <&cru SCLK_SPI5>, <&cru PCLK_SPI5>;
733                 clock-names = "spiclk", "apb_pclk";
734                 interrupts = <GIC_SPI 132 IRQ_TYPE_LEVEL_HIGH 0>;
735                 pinctrl-names = "default";
736                 pinctrl-0 = <&spi5_clk &spi5_tx &spi5_rx &spi5_cs0>;
737                 #address-cells = <1>;
738                 #size-cells = <0>;
739                 status = "disabled";
740         };
741
742         thermal_zones: thermal-zones {
743                 soc_thermal: soc-thermal {
744                         polling-delay-passive = <20>; /* milliseconds */
745                         polling-delay = <1000>; /* milliseconds */
746                         sustainable-power = <1000>; /* milliwatts */
747
748                         thermal-sensors = <&tsadc 0>;
749
750                         trips {
751                                 threshold: trip-point@0 {
752                                         temperature = <70000>; /* millicelsius */
753                                         hysteresis = <2000>; /* millicelsius */
754                                         type = "passive";
755                                 };
756                                 target: trip-point@1 {
757                                         temperature = <85000>; /* millicelsius */
758                                         hysteresis = <2000>; /* millicelsius */
759                                         type = "passive";
760                                 };
761                                 soc_crit: soc-crit {
762                                         temperature = <95000>; /* millicelsius */
763                                         hysteresis = <2000>; /* millicelsius */
764                                         type = "critical";
765                                 };
766                         };
767
768                         cooling-maps {
769                                 map0 {
770                                         trip = <&target>;
771                                         cooling-device =
772                                                 <&cpu_l0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
773                                         contribution = <4096>;
774                                 };
775                                 map1 {
776                                         trip = <&target>;
777                                         cooling-device =
778                                                 <&cpu_b0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
779                                         contribution = <1024>;
780                                 };
781                                 map2 {
782                                         trip = <&target>;
783                                         cooling-device =
784                                                 <&gpu THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
785                                         contribution = <4096>;
786                                 };
787                         };
788                 };
789
790                 gpu_thermal: gpu-thermal {
791                         polling-delay-passive = <100>; /* milliseconds */
792                         polling-delay = <1000>; /* milliseconds */
793
794                         thermal-sensors = <&tsadc 1>;
795                 };
796         };
797
798         tsadc: tsadc@ff260000 {
799                 compatible = "rockchip,rk3399-tsadc";
800                 reg = <0x0 0xff260000 0x0 0x100>;
801                 interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH 0>;
802                 rockchip,grf = <&grf>;
803                 clocks = <&cru SCLK_TSADC>, <&cru PCLK_TSADC>;
804                 clock-names = "tsadc", "apb_pclk";
805                 assigned-clocks = <&cru SCLK_TSADC>;
806                 assigned-clock-rates = <750000>;
807                 resets = <&cru SRST_TSADC>;
808                 reset-names = "tsadc-apb";
809                 pinctrl-names = "init", "default", "sleep";
810                 pinctrl-0 = <&otp_gpio>;
811                 pinctrl-1 = <&otp_out>;
812                 pinctrl-2 = <&otp_gpio>;
813                 #thermal-sensor-cells = <1>;
814                 rockchip,hw-tshut-temp = <95000>;
815                 status = "disabled";
816         };
817
818         qos_emmc: qos@ffa58000 {
819                 compatible = "syscon";
820                 reg = <0x0 0xffa58000 0x0 0x20>;
821         };
822
823         qos_gmac: qos@ffa5c000 {
824                 compatible = "syscon";
825                 reg = <0x0 0xffa5c000 0x0 0x20>;
826         };
827
828         qos_pcie: qos@ffa60080 {
829                 compatible = "syscon";
830                 reg = <0x0 0xffa60080 0x0 0x20>;
831         };
832
833         qos_usb_host0: qos@ffa60100 {
834                 compatible = "syscon";
835                 reg = <0x0 0xffa60100 0x0 0x20>;
836         };
837
838         qos_usb_host1: qos@ffa60180 {
839                 compatible = "syscon";
840                 reg = <0x0 0xffa60180 0x0 0x20>;
841         };
842
843         qos_usb_otg0: qos@ffa70000 {
844                 compatible = "syscon";
845                 reg = <0x0 0xffa70000 0x0 0x20>;
846         };
847
848         qos_usb_otg1: qos@ffa70080 {
849                 compatible = "syscon";
850                 reg = <0x0 0xffa70080 0x0 0x20>;
851         };
852
853         qos_sd: qos@ffa74000 {
854                 compatible = "syscon";
855                 reg = <0x0 0xffa74000 0x0 0x20>;
856         };
857
858         qos_sdioaudio: qos@ffa76000 {
859                 compatible = "syscon";
860                 reg = <0x0 0xffa76000 0x0 0x20>;
861         };
862
863         qos_hdcp: qos@ffa90000 {
864                 compatible = "syscon";
865                 reg = <0x0 0xffa90000 0x0 0x20>;
866         };
867
868         qos_iep: qos@ffa98000 {
869                 compatible = "syscon";
870                 reg = <0x0 0xffa98000 0x0 0x20>;
871         };
872
873         qos_isp0_m0: qos@ffaa0000 {
874                 compatible = "syscon";
875                 reg = <0x0 0xffaa0000 0x0 0x20>;
876         };
877
878         qos_isp0_m1: qos@ffaa0080 {
879                 compatible = "syscon";
880                 reg = <0x0 0xffaa0080 0x0 0x20>;
881         };
882
883         qos_isp1_m0: qos@ffaa8000 {
884                 compatible = "syscon";
885                 reg = <0x0 0xffaa8000 0x0 0x20>;
886         };
887
888         qos_isp1_m1: qos@ffaa8080 {
889                 compatible = "syscon";
890                 reg = <0x0 0xffaa8080 0x0 0x20>;
891         };
892
893         qos_rga_r: qos@ffab0000 {
894                 compatible = "syscon";
895                 reg = <0x0 0xffab0000 0x0 0x20>;
896         };
897
898         qos_rga_w: qos@ffab0080 {
899                 compatible = "syscon";
900                 reg = <0x0 0xffab0080 0x0 0x20>;
901         };
902
903         qos_video_m0: qos@ffab8000 {
904                 compatible = "syscon";
905                 reg = <0x0 0xffab8000 0x0 0x20>;
906         };
907
908         qos_video_m1_r: qos@ffac0000 {
909                 compatible = "syscon";
910                 reg = <0x0 0xffac0000 0x0 0x20>;
911         };
912
913         qos_video_m1_w: qos@ffac0080 {
914                 compatible = "syscon";
915                 reg = <0x0 0xffac0080 0x0 0x20>;
916         };
917
918         qos_vop_big_r: qos@ffac8000 {
919                 compatible = "syscon";
920                 reg = <0x0 0xffac8000 0x0 0x20>;
921         };
922
923         qos_vop_big_w: qos@ffac8080 {
924                 compatible = "syscon";
925                 reg = <0x0 0xffac8080 0x0 0x20>;
926         };
927
928         qos_vop_little: qos@ffad0000 {
929                 compatible = "syscon";
930                 reg = <0x0 0xffad0000 0x0 0x20>;
931         };
932
933         qos_perihp: qos@ffad8080 {
934                 compatible = "syscon";
935                 reg = <0x0 0xffad8080 0x0 0x20>;
936         };
937
938         qos_gpu: qos@ffae0000 {
939                 compatible = "syscon";
940                 reg = <0x0 0xffae0000 0x0 0x20>;
941         };
942
943         pmu: power-management@ff310000 {
944                 compatible = "rockchip,rk3399-pmu", "syscon", "simple-mfd";
945                 reg = <0x0 0xff310000 0x0 0x1000>;
946
947                 /*
948                  * Note: RK3399 supports 6 voltage domains including VD_CORE_L,
949                  * VD_CORE_B, VD_CENTER, VD_GPU, VD_LOGIC and VD_PMU.
950                  * Some of the power domains are grouped together for every
951                  * voltage domain.
952                  * The detail contents as below.
953                  */
954                 power: power-controller {
955                         compatible = "rockchip,rk3399-power-controller";
956                         #power-domain-cells = <1>;
957                         #address-cells = <1>;
958                         #size-cells = <0>;
959
960                         /* These power domains are grouped by VD_CENTER */
961                         pd_iep@RK3399_PD_IEP {
962                                 reg = <RK3399_PD_IEP>;
963                                 clocks = <&cru ACLK_IEP>,
964                                          <&cru HCLK_IEP>;
965                                 pm_qos = <&qos_iep>;
966                         };
967                         pd_rga@RK3399_PD_RGA {
968                                 reg = <RK3399_PD_RGA>;
969                                 clocks = <&cru ACLK_RGA>,
970                                          <&cru HCLK_RGA>;
971                                 pm_qos = <&qos_rga_r>,
972                                          <&qos_rga_w>;
973                         };
974                         pd_vcodec@RK3399_PD_VCODEC {
975                                 reg = <RK3399_PD_VCODEC>;
976                                 clocks = <&cru ACLK_VCODEC>,
977                                          <&cru HCLK_VCODEC>;
978                                 pm_qos = <&qos_video_m0>;
979                         };
980                         pd_vdu@RK3399_PD_VDU {
981                                 reg = <RK3399_PD_VDU>;
982                                 clocks = <&cru ACLK_VDU>,
983                                          <&cru HCLK_VDU>;
984                                 pm_qos = <&qos_video_m1_r>,
985                                          <&qos_video_m1_w>;
986                         };
987
988                         /* These power domains are grouped by VD_GPU */
989                         pd_gpu@RK3399_PD_GPU {
990                                 reg = <RK3399_PD_GPU>;
991                                 clocks = <&cru ACLK_GPU>;
992                                 pm_qos = <&qos_gpu>;
993                         };
994
995                         /* These power domains are grouped by VD_LOGIC */
996                         pd_edp@RK3399_PD_EDP {
997                                 reg = <RK3399_PD_EDP>;
998                                 clocks = <&cru PCLK_EDP_CTRL>;
999                         };
1000                         pd_emmc@RK3399_PD_EMMC {
1001                                 reg = <RK3399_PD_EMMC>;
1002                                 clocks = <&cru ACLK_EMMC>;
1003                                 pm_qos = <&qos_emmc>;
1004                         };
1005                         pd_gmac@RK3399_PD_GMAC {
1006                                 reg = <RK3399_PD_GMAC>;
1007                                 clocks = <&cru ACLK_GMAC>,
1008                                          <&cru PCLK_GMAC>;
1009                                 pm_qos = <&qos_gmac>;
1010                         };
1011                         pd_perihp@RK3399_PD_PERIHP {
1012                                 reg = <RK3399_PD_PERIHP>;
1013                                 #address-cells = <1>;
1014                                 #size-cells = <0>;
1015                                 clocks = <&cru ACLK_PERIHP>;
1016                                 pm_qos = <&qos_perihp>,
1017                                          <&qos_pcie>,
1018                                          <&qos_usb_host0>,
1019                                          <&qos_usb_host1>;
1020
1021                                 pd_sd@RK3399_PD_SD {
1022                                         reg = <RK3399_PD_SD>;
1023                                         clocks = <&cru HCLK_SDMMC>,
1024                                                  <&cru SCLK_SDMMC>;
1025                                         pm_qos = <&qos_sd>;
1026                                 };
1027                         };
1028                         pd_sdioaudio@RK3399_PD_SDIOAUDIO {
1029                                 reg = <RK3399_PD_SDIOAUDIO>;
1030                                 clocks = <&cru HCLK_SDIO>;
1031                                 pm_qos = <&qos_sdioaudio>;
1032                         };
1033                         pd_usb3@RK3399_PD_USB3 {
1034                                 reg = <RK3399_PD_USB3>;
1035                                 clocks = <&cru ACLK_USB3>;
1036                                 pm_qos = <&qos_usb_otg0>,
1037                                          <&qos_usb_otg1>;
1038                         };
1039                         pd_vio@RK3399_PD_VIO {
1040                                 reg = <RK3399_PD_VIO>;
1041                                 #address-cells = <1>;
1042                                 #size-cells = <0>;
1043
1044                                 pd_hdcp@RK3399_PD_HDCP {
1045                                         reg = <RK3399_PD_HDCP>;
1046                                         clocks = <&cru ACLK_HDCP>,
1047                                                  <&cru HCLK_HDCP>,
1048                                                  <&cru PCLK_HDCP>;
1049                                         pm_qos = <&qos_hdcp>;
1050                                 };
1051                                 pd_isp0@RK3399_PD_ISP0 {
1052                                         reg = <RK3399_PD_ISP0>;
1053                                         clocks = <&cru ACLK_ISP0>,
1054                                                  <&cru HCLK_ISP0>;
1055                                         pm_qos = <&qos_isp0_m0>,
1056                                                  <&qos_isp0_m1>;
1057                                 };
1058                                 pd_isp1@RK3399_PD_ISP1 {
1059                                         reg = <RK3399_PD_ISP1>;
1060                                         clocks = <&cru ACLK_ISP1>,
1061                                                  <&cru HCLK_ISP1>;
1062                                         pm_qos = <&qos_isp1_m0>,
1063                                                  <&qos_isp1_m1>;
1064                                 };
1065                                 pd_tcpc0@RK3399_PD_TCPC0 {
1066                                         reg = <RK3399_PD_TCPD0>;
1067                                         clocks = <&cru SCLK_UPHY0_TCPDCORE>,
1068                                                  <&cru SCLK_UPHY0_TCPDPHY_REF>;
1069                                 };
1070                                 pd_tcpc1@RK3399_PD_TCPC1 {
1071                                         reg = <RK3399_PD_TCPD1>;
1072                                         clocks = <&cru SCLK_UPHY1_TCPDCORE>,
1073                                                  <&cru SCLK_UPHY1_TCPDPHY_REF>;
1074                                 };
1075                                 pd_vo@RK3399_PD_VO {
1076                                         reg = <RK3399_PD_VO>;
1077                                         #address-cells = <1>;
1078                                         #size-cells = <0>;
1079
1080                                         pd_vopb@RK3399_PD_VOPB {
1081                                                 reg = <RK3399_PD_VOPB>;
1082                                                 clocks = <&cru ACLK_VOP0>,
1083                                                          <&cru HCLK_VOP0>;
1084                                                 pm_qos = <&qos_vop_big_r>,
1085                                                          <&qos_vop_big_w>;
1086                                         };
1087                                         pd_vopl@RK3399_PD_VOPL {
1088                                                 reg = <RK3399_PD_VOPL>;
1089                                                 clocks = <&cru ACLK_VOP1>,
1090                                                          <&cru HCLK_VOP1>;
1091                                                 pm_qos = <&qos_vop_little>;
1092                                         };
1093                                 };
1094                         };
1095                 };
1096         };
1097
1098         pmugrf: syscon@ff320000 {
1099                 compatible = "rockchip,rk3399-pmugrf", "syscon", "simple-mfd";
1100                 reg = <0x0 0xff320000 0x0 0x1000>;
1101
1102                 pmu_io_domains: pmu-io-domains {
1103                         compatible = "rockchip,rk3399-pmu-io-voltage-domain";
1104                         status = "disabled";
1105                 };
1106
1107                 reboot-mode {
1108                         compatible = "syscon-reboot-mode";
1109                         offset = <0x300>;
1110                         mode-bootloader = <BOOT_BL_DOWNLOAD>;
1111                         mode-charge = <BOOT_CHARGING>;
1112                         mode-fastboot = <BOOT_FASTBOOT>;
1113                         mode-loader = <BOOT_BL_DOWNLOAD>;
1114                         mode-normal = <BOOT_NORMAL>;
1115                         mode-recovery = <BOOT_RECOVERY>;
1116                         mode-ums = <BOOT_UMS>;
1117                 };
1118
1119                 pmu_pvtm: pmu-pvtm {
1120                         compatible = "rockchip,rk3399-pmu-pvtm";
1121                         clocks = <&pmucru SCLK_PVTM_PMU>;
1122                         clock-names = "pmu";
1123                         status = "disabled";
1124                 };
1125         };
1126
1127         spi3: spi@ff350000 {
1128                 compatible = "rockchip,rk3399-spi", "rockchip,rk3066-spi";
1129                 reg = <0x0 0xff350000 0x0 0x1000>;
1130                 clocks = <&pmucru SCLK_SPI3_PMU>, <&pmucru PCLK_SPI3_PMU>;
1131                 clock-names = "spiclk", "apb_pclk";
1132                 interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH 0>;
1133                 pinctrl-names = "default";
1134                 pinctrl-0 = <&spi3_clk &spi3_tx &spi3_rx &spi3_cs0>;
1135                 #address-cells = <1>;
1136                 #size-cells = <0>;
1137                 status = "disabled";
1138         };
1139
1140         uart4: serial@ff370000 {
1141                 compatible = "rockchip,rk3399-uart", "snps,dw-apb-uart";
1142                 reg = <0x0 0xff370000 0x0 0x100>;
1143                 clocks = <&pmucru SCLK_UART4_PMU>, <&pmucru PCLK_UART4_PMU>;
1144                 clock-names = "baudclk", "apb_pclk";
1145                 interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH 0>;
1146                 reg-shift = <2>;
1147                 reg-io-width = <4>;
1148                 pinctrl-names = "default";
1149                 pinctrl-0 = <&uart4_xfer>;
1150                 status = "disabled";
1151         };
1152
1153         i2c4: i2c@ff3d0000 {
1154                 compatible = "rockchip,rk3399-i2c";
1155                 reg = <0x0 0xff3d0000 0x0 0x1000>;
1156                 clocks = <&pmucru SCLK_I2C4_PMU>, <&pmucru PCLK_I2C4_PMU>;
1157                 clock-names = "i2c", "pclk";
1158                 interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH 0>;
1159                 pinctrl-names = "default";
1160                 pinctrl-0 = <&i2c4_xfer>;
1161                 #address-cells = <1>;
1162                 #size-cells = <0>;
1163                 status = "disabled";
1164         };
1165
1166         i2c8: i2c@ff3e0000 {
1167                 compatible = "rockchip,rk3399-i2c";
1168                 reg = <0x0 0xff3e0000 0x0 0x1000>;
1169                 clocks = <&pmucru SCLK_I2C8_PMU>, <&pmucru PCLK_I2C8_PMU>;
1170                 clock-names = "i2c", "pclk";
1171                 interrupts = <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH 0>;
1172                 pinctrl-names = "default";
1173                 pinctrl-0 = <&i2c8_xfer>;
1174                 #address-cells = <1>;
1175                 #size-cells = <0>;
1176                 status = "disabled";
1177         };
1178
1179         pcie_phy: phy@e220 {
1180                 compatible = "rockchip,rk3399-pcie-phy";
1181                 #phy-cells = <0>;
1182                 rockchip,grf = <&grf>;
1183                 clocks = <&cru SCLK_PCIEPHY_REF>;
1184                 clock-names = "refclk";
1185                 resets = <&cru SRST_PCIEPHY>;
1186                 reset-names = "phy";
1187                 status = "disabled";
1188         };
1189
1190         pcie0: pcie@f8000000 {
1191                 compatible = "rockchip,rk3399-pcie";
1192                 #address-cells = <3>;
1193                 #size-cells = <2>;
1194                 aspm-no-l0s;
1195                 clocks = <&cru ACLK_PCIE>, <&cru ACLK_PERF_PCIE>,
1196                          <&cru PCLK_PCIE>, <&cru SCLK_PCIE_PM>;
1197                 clock-names = "aclk", "aclk-perf",
1198                               "hclk", "pm";
1199                 bus-range = <0x0 0x1>;
1200                 max-link-speed = <1>;
1201                 msi-map = <0x0 &its 0x0 0x1000>;
1202                 interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH 0>,
1203                              <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH 0>,
1204                              <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH 0>;
1205                 interrupt-names = "sys", "legacy", "client";
1206                 #interrupt-cells = <1>;
1207                 interrupt-map-mask = <0 0 0 7>;
1208                 interrupt-map = <0 0 0 1 &pcie0_intc 0>,
1209                                 <0 0 0 2 &pcie0_intc 1>,
1210                                 <0 0 0 3 &pcie0_intc 2>,
1211                                 <0 0 0 4 &pcie0_intc 3>;
1212                 phys = <&pcie_phy>;
1213                 phy-names = "pcie-phy";
1214                 ranges = <0x82000000 0x0 0xfa000000 0x0 0xfa000000 0x0 0x600000
1215                           0x81000000 0x0 0xfa600000 0x0 0xfa600000 0x0 0x100000>;
1216                 reg = <0x0 0xf8000000 0x0 0x2000000>,
1217                       <0x0 0xfd000000 0x0 0x1000000>;
1218                 reg-names = "axi-base", "apb-base";
1219                 resets = <&cru SRST_PCIE_CORE>, <&cru SRST_PCIE_MGMT>,
1220                          <&cru SRST_PCIE_MGMT_STICKY>, <&cru SRST_PCIE_PIPE>,
1221                          <&cru SRST_PCIE_PM>, <&cru SRST_P_PCIE>,
1222                          <&cru SRST_A_PCIE>;
1223                 reset-names = "core", "mgmt", "mgmt-sticky", "pipe",
1224                               "pm", "pclk", "aclk";
1225                 status = "disabled";
1226                 pcie0_intc: interrupt-controller {
1227                         interrupt-controller;
1228                         #address-cells = <0>;
1229                         #interrupt-cells = <1>;
1230                 };
1231         };
1232
1233         pwm0: pwm@ff420000 {
1234                 compatible = "rockchip,rk3399-pwm", "rockchip,rk3288-pwm";
1235                 reg = <0x0 0xff420000 0x0 0x10>;
1236                 #pwm-cells = <3>;
1237                 pinctrl-names = "default";
1238                 pinctrl-0 = <&pwm0_pin>;
1239                 clocks = <&pmucru PCLK_RKPWM_PMU>;
1240                 clock-names = "pwm";
1241                 status = "disabled";
1242         };
1243
1244         pwm1: pwm@ff420010 {
1245                 compatible = "rockchip,rk3399-pwm", "rockchip,rk3288-pwm";
1246                 reg = <0x0 0xff420010 0x0 0x10>;
1247                 #pwm-cells = <3>;
1248                 pinctrl-names = "default";
1249                 pinctrl-0 = <&pwm1_pin>;
1250                 clocks = <&pmucru PCLK_RKPWM_PMU>;
1251                 clock-names = "pwm";
1252                 status = "disabled";
1253         };
1254
1255         pwm2: pwm@ff420020 {
1256                 compatible = "rockchip,rk3399-pwm", "rockchip,rk3288-pwm";
1257                 reg = <0x0 0xff420020 0x0 0x10>;
1258                 #pwm-cells = <3>;
1259                 pinctrl-names = "default";
1260                 pinctrl-0 = <&pwm2_pin>;
1261                 clocks = <&pmucru PCLK_RKPWM_PMU>;
1262                 clock-names = "pwm";
1263                 status = "disabled";
1264         };
1265
1266         pwm3: pwm@ff420030 {
1267                 compatible = "rockchip,rk3399-pwm", "rockchip,rk3288-pwm";
1268                 reg = <0x0 0xff420030 0x0 0x10>;
1269                 #pwm-cells = <3>;
1270                 pinctrl-names = "default";
1271                 pinctrl-0 = <&pwm3a_pin>;
1272                 clocks = <&pmucru PCLK_RKPWM_PMU>;
1273                 clock-names = "pwm";
1274                 status = "disabled";
1275         };
1276
1277         dfi: dfi@ff630000 {
1278                 reg = <0x00 0xff630000 0x00 0x4000>;
1279                 compatible = "rockchip,rk3399-dfi";
1280                 rockchip,pmu = <&pmugrf>;
1281                 clocks = <&cru PCLK_DDR_MON>;
1282                 clock-names = "pclk_ddr_mon";
1283                 status = "disabled";
1284         };
1285
1286         dmc: dmc {
1287                 compatible = "rockchip,rk3399-dmc";
1288                 devfreq-events = <&dfi>;
1289                 interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH 0>;
1290                 clocks = <&cru SCLK_DDRCLK>;
1291                 clock-names = "dmc_clk";
1292                 ddr_timing = <&ddr_timing>;
1293                 status = "disabled";
1294         };
1295
1296         vpu: vpu_service@ff650000 {
1297                 compatible = "rockchip,vpu_service";
1298                 rockchip,grf = <&grf>;
1299                 iommus = <&vpu_mmu>;
1300                 iommu_enabled = <1>;
1301                 reg = <0x0 0xff650000 0x0 0x800>;
1302                 interrupts = <GIC_SPI 113 IRQ_TYPE_LEVEL_HIGH 0>,
1303                              <GIC_SPI 114 IRQ_TYPE_LEVEL_HIGH 0>;
1304                 interrupt-names = "irq_dec", "irq_enc";
1305                 clocks = <&cru ACLK_VCODEC>, <&cru HCLK_VCODEC>;
1306                 clock-names = "aclk_vcodec", "hclk_vcodec";
1307                 resets = <&cru SRST_H_VCODEC>, <&cru SRST_A_VCODEC>;
1308                 reset-names = "video_h", "video_a";
1309                 power-domains = <&power RK3399_PD_VCODEC>;
1310                 name = "vpu_service";
1311                 dev_mode = <0>;
1312                 /* 0 means ion, 1 means drm */
1313                 allocator = <1>;
1314                 status = "disabled";
1315         };
1316
1317         vpu_mmu: iommu@ff650800 {
1318                 compatible = "rockchip,iommu";
1319                 reg = <0x0 0xff650800 0x0 0x40>;
1320                 interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH 0>;
1321                 interrupt-names = "vpu_mmu";
1322                 clocks = <&cru ACLK_VCODEC>, <&cru HCLK_VCODEC>;
1323                 clock-names = "aclk", "hclk";
1324                 power-domains = <&power RK3399_PD_VCODEC>;
1325                 #iommu-cells = <0>;
1326         };
1327
1328         rkvdec: rkvdec@ff660000 {
1329                 compatible = "rockchip,rkvdec";
1330                 rockchip,grf = <&grf>;
1331                 iommus = <&vdec_mmu>;
1332                 iommu_enabled = <1>;
1333                 reg = <0x0 0xff660000 0x0 0x400>;
1334                 interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH 0>;
1335                 interrupt-names = "irq_dec";
1336                 clocks = <&cru ACLK_VDU>, <&cru HCLK_VDU>,
1337                          <&cru SCLK_VDU_CA>, <&cru SCLK_VDU_CORE>;
1338                 clock-names = "aclk_vcodec", "hclk_vcodec",
1339                               "clk_cabac", "clk_core";
1340                 resets = <&cru SRST_H_VDU>, <&cru SRST_A_VDU>;
1341                 reset-names = "video_h", "video_a";
1342                 power-domains = <&power RK3399_PD_VDU>;
1343                 dev_mode = <2>;
1344                 name = "rkvdec";
1345                 /* 0 means ion, 1 means drm */
1346                 allocator = <1>;
1347                 status = "disabled";
1348         };
1349
1350         vdec_mmu: iommu@ff660480 {
1351                 compatible = "rockchip,iommu";
1352                 reg = <0x0 0xff660480 0x0 0x40>, <0x0 0xff6604c0 0x0 0x40>;
1353                 interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH 0>;
1354                 interrupt-names = "vdec_mmu";
1355                 clocks = <&cru ACLK_VDU>, <&cru HCLK_VDU>;
1356                 clock-names = "aclk", "hclk";
1357                 power-domains = <&power RK3399_PD_VDU>;
1358                 #iommu-cells = <0>;
1359         };
1360
1361         rga: rga@ff680000 {
1362                 compatible = "rockchip,rk3399-rga";
1363                 reg = <0x0 0xff680000 0x0 0x10000>;
1364                 interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH 0>;
1365                 interrupt-names = "rga";
1366                 clocks = <&cru ACLK_RGA>, <&cru HCLK_RGA>, <&cru SCLK_RGA_CORE>;
1367                 clock-names = "aclk", "hclk", "sclk";
1368                 resets = <&cru SRST_RGA_CORE>, <&cru SRST_A_RGA>, <&cru SRST_H_RGA>;
1369                 reset-names = "core", "axi", "ahb";
1370                 power-domains = <&power RK3399_PD_RGA>;
1371                 status = "disabled";
1372         };
1373
1374         efuse0: efuse@ff690000 {
1375                 compatible = "rockchip,rk3399-efuse";
1376                 reg = <0x0 0xff690000 0x0 0x80>;
1377                 #address-cells = <1>;
1378                 #size-cells = <1>;
1379                 clocks = <&cru PCLK_EFUSE1024NS>;
1380                 clock-names = "pclk_efuse";
1381
1382                 /* Data cells */
1383                 cpul_leakage: cpul-leakage {
1384                         reg = <0x1a 0x1>;
1385                 };
1386                 cpub_leakage: cpub-leakage {
1387                         reg = <0x17 0x1>;
1388                 };
1389                 gpu_leakage: gpu-leakage {
1390                         reg = <0x18 0x1>;
1391                 };
1392                 center_leakage: center-leakage {
1393                         reg = <0x19 0x1>;
1394                 };
1395                 logic_leakage: logic-leakage {
1396                         reg = <0x1b 0x1>;
1397                 };
1398                 wafer_info: wafer-info {
1399                         reg = <0x1c 0x1>;
1400                 };
1401         };
1402
1403         pmucru: pmu-clock-controller@ff750000 {
1404                 compatible = "rockchip,rk3399-pmucru";
1405                 reg = <0x0 0xff750000 0x0 0x1000>;
1406                 #clock-cells = <1>;
1407                 #reset-cells = <1>;
1408                 assigned-clocks = <&pmucru PLL_PPLL>;
1409                 assigned-clock-rates = <676000000>;
1410         };
1411
1412         cru: clock-controller@ff760000 {
1413                 compatible = "rockchip,rk3399-cru";
1414                 reg = <0x0 0xff760000 0x0 0x1000>;
1415                 #clock-cells = <1>;
1416                 #reset-cells = <1>;
1417                 assigned-clocks =
1418                         <&cru ACLK_VOP0>, <&cru HCLK_VOP0>,
1419                         <&cru ACLK_VOP1>, <&cru HCLK_VOP1>,
1420                         <&cru ARMCLKL>, <&cru ARMCLKB>,
1421                         <&cru PLL_GPLL>, <&cru PLL_CPLL>,
1422                         <&cru ACLK_GPU>, <&cru PLL_NPLL>,
1423                         <&cru ACLK_PERIHP>, <&cru HCLK_PERIHP>,
1424                         <&cru PCLK_PERIHP>,
1425                         <&cru ACLK_PERILP0>, <&cru HCLK_PERILP0>,
1426                         <&cru PCLK_PERILP0>,
1427                         <&cru HCLK_PERILP1>, <&cru PCLK_PERILP1>;
1428                 assigned-clock-rates =
1429                          <400000000>,  <200000000>,
1430                          <400000000>,  <200000000>,
1431                          <816000000>, <816000000>,
1432                          <594000000>,  <800000000>,
1433                          <200000000>, <1000000000>,
1434                          <150000000>,   <75000000>,
1435                           <37500000>,
1436                          <100000000>,  <100000000>,
1437                           <50000000>,
1438                          <100000000>,   <50000000>;
1439         };
1440
1441         grf: syscon@ff770000 {
1442                 compatible = "rockchip,rk3399-grf", "syscon", "simple-mfd";
1443                 reg = <0x0 0xff770000 0x0 0x10000>;
1444                 #address-cells = <1>;
1445                 #size-cells = <1>;
1446
1447                 io_domains: io-domains {
1448                         compatible = "rockchip,rk3399-io-voltage-domain";
1449                         status = "disabled";
1450                 };
1451
1452                 emmc_phy: phy@f780 {
1453                         compatible = "rockchip,rk3399-emmc-phy";
1454                         reg = <0xf780 0x24>;
1455                         clocks = <&sdhci>;
1456                         clock-names = "emmcclk";
1457                         #phy-cells = <0>;
1458                         status = "disabled";
1459                 };
1460
1461                 u2phy0: usb2-phy@e450 {
1462                         compatible = "rockchip,rk3399-usb2phy";
1463                         reg = <0xe450 0x10>;
1464                         clocks = <&cru SCLK_USB2PHY0_REF>;
1465                         clock-names = "phyclk";
1466                         #clock-cells = <0>;
1467                         clock-output-names = "clk_usbphy0_480m";
1468                         status = "disabled";
1469
1470                         u2phy0_otg: otg-port {
1471                                 #phy-cells = <0>;
1472                                 interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH 0>,
1473                                              <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH 0>,
1474                                              <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH 0>;
1475                                 interrupt-names = "otg-bvalid", "otg-id",
1476                                                   "linestate";
1477                                 status = "disabled";
1478                         };
1479
1480                         u2phy0_host: host-port {
1481                                 #phy-cells = <0>;
1482                                 interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH 0>;
1483                                 interrupt-names = "linestate";
1484                                 status = "disabled";
1485                         };
1486                 };
1487
1488                 u2phy1: usb2-phy@e460 {
1489                         compatible = "rockchip,rk3399-usb2phy";
1490                         reg = <0xe460 0x10>;
1491                         clocks = <&cru SCLK_USB2PHY1_REF>;
1492                         clock-names = "phyclk";
1493                         #clock-cells = <0>;
1494                         clock-output-names = "clk_usbphy1_480m";
1495                         status = "disabled";
1496
1497                         u2phy1_otg: otg-port {
1498                                 #phy-cells = <0>;
1499                                 interrupts = <GIC_SPI 108 IRQ_TYPE_LEVEL_HIGH 0>,
1500                                              <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH 0>,
1501                                              <GIC_SPI 111 IRQ_TYPE_LEVEL_HIGH 0>;
1502                                 interrupt-names = "otg-bvalid", "otg-id",
1503                                                   "linestate";
1504                                 status = "disabled";
1505                         };
1506
1507                         u2phy1_host: host-port {
1508                                 #phy-cells = <0>;
1509                                 interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH 0>;
1510                                 interrupt-names = "linestate";
1511                                 status = "disabled";
1512                         };
1513                 };
1514
1515                 pvtm: pvtm {
1516                         compatible = "rockchip,rk3399-pvtm";
1517                         clocks = <&cru SCLK_PVTM_CORE_L>,
1518                                  <&cru SCLK_PVTM_CORE_B>,
1519                                  <&cru SCLK_PVTM_GPU>,
1520                                  <&cru SCLK_PVTM_DDR>;
1521                         clock-names = "core_l", "core_b", "gpu", "ddr";
1522                         status = "disabled";
1523                 };
1524         };
1525
1526         tcphy0: phy@ff7c0000 {
1527                 compatible = "rockchip,rk3399-typec-phy";
1528                 reg = <0x0 0xff7c0000 0x0 0x40000>;
1529                 rockchip,grf = <&grf>;
1530                 #phy-cells = <1>;
1531                 clocks = <&cru SCLK_UPHY0_TCPDCORE>,
1532                          <&cru SCLK_UPHY0_TCPDPHY_REF>;
1533                 clock-names = "tcpdcore", "tcpdphy-ref";
1534                 assigned-clocks = <&cru SCLK_UPHY0_TCPDCORE>;
1535                 assigned-clock-rates = <50000000>;
1536                 power-domains = <&power RK3399_PD_TCPD0>;
1537                 resets = <&cru SRST_UPHY0>,
1538                          <&cru SRST_UPHY0_PIPE_L00>,
1539                          <&cru SRST_P_UPHY0_TCPHY>;
1540                 reset-names = "uphy", "uphy-pipe", "uphy-tcphy";
1541                 rockchip,typec-conn-dir = <0xe580 0 16>;
1542                 rockchip,usb3tousb2-en = <0xe580 3 19>;
1543                 rockchip,usb3-host-disable = <0x2434 0 16>;
1544                 rockchip,usb3-host-port = <0x2434 12 28>;
1545                 rockchip,external-psm = <0xe588 14 30>;
1546                 rockchip,pipe-status = <0xe5c0 0 0>;
1547                 rockchip,uphy-dp-sel = <0x6268 19 19>;
1548                 status = "disabled";
1549
1550                 tcphy0_dp: dp-port {
1551                         #phy-cells = <0>;
1552                 };
1553
1554                 tcphy0_usb3: usb3-port {
1555                         #phy-cells = <0>;
1556                 };
1557         };
1558
1559         tcphy1: phy@ff800000 {
1560                 compatible = "rockchip,rk3399-typec-phy";
1561                 reg = <0x0 0xff800000 0x0 0x40000>;
1562                 rockchip,grf = <&grf>;
1563                 #phy-cells = <1>;
1564                 clocks = <&cru SCLK_UPHY1_TCPDCORE>,
1565                          <&cru SCLK_UPHY1_TCPDPHY_REF>;
1566                 clock-names = "tcpdcore", "tcpdphy-ref";
1567                 assigned-clocks = <&cru SCLK_UPHY1_TCPDCORE>;
1568                 assigned-clock-rates = <50000000>;
1569                 power-domains = <&power RK3399_PD_TCPD1>;
1570                 resets = <&cru SRST_UPHY1>,
1571                          <&cru SRST_UPHY1_PIPE_L00>,
1572                          <&cru SRST_P_UPHY1_TCPHY>;
1573                 reset-names = "uphy", "uphy-pipe", "uphy-tcphy";
1574                 rockchip,typec-conn-dir = <0xe58c 0 16>;
1575                 rockchip,usb3tousb2-en = <0xe58c 3 19>;
1576                 rockchip,usb3-host-disable = <0x2444 0 16>;
1577                 rockchip,usb3-host-port = <0x2444 12 28>;
1578                 rockchip,external-psm = <0xe594 14 30>;
1579                 rockchip,pipe-status = <0xe5c0 16 16>;
1580                 rockchip,uphy-dp-sel = <0x6268 3 19>;
1581                 status = "disabled";
1582
1583                 tcphy1_dp: dp-port {
1584                         #phy-cells = <0>;
1585                 };
1586
1587                 tcphy1_usb3: usb3-port {
1588                         #phy-cells = <0>;
1589                 };
1590         };
1591
1592         watchdog@ff848000 {
1593                 compatible = "snps,dw-wdt";
1594                 reg = <0x0 0xff848000 0x0 0x100>;
1595                 clocks = <&cru PCLK_WDT>;
1596                 interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH 0>;
1597         };
1598
1599         rktimer: rktimer@ff850000 {
1600                 compatible = "rockchip,rk3399-timer";
1601                 reg = <0x0 0xff850000 0x0 0x1000>;
1602                 interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH 0>;
1603                 clocks = <&cru PCLK_TIMER0>, <&cru SCLK_TIMER00>;
1604                 clock-names = "pclk", "timer";
1605         };
1606
1607         spdif: spdif@ff870000 {
1608                 compatible = "rockchip,rk3399-spdif";
1609                 reg = <0x0 0xff870000 0x0 0x1000>;
1610                 interrupts = <GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH 0>;
1611                 dmas = <&dmac_bus 7>;
1612                 dma-names = "tx";
1613                 clock-names = "mclk", "hclk";
1614                 clocks = <&cru SCLK_SPDIF_8CH>, <&cru HCLK_SPDIF>;
1615                 pinctrl-names = "default";
1616                 pinctrl-0 = <&spdif_bus>;
1617                 power-domains = <&power RK3399_PD_SDIOAUDIO>;
1618                 status = "disabled";
1619         };
1620
1621         i2s0: i2s@ff880000 {
1622                 compatible = "rockchip,rk3399-i2s", "rockchip,rk3066-i2s";
1623                 reg = <0x0 0xff880000 0x0 0x1000>;
1624                 rockchip,grf = <&grf>;
1625                 interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH 0>;
1626                 dmas = <&dmac_bus 0>, <&dmac_bus 1>;
1627                 dma-names = "tx", "rx";
1628                 clock-names = "i2s_clk", "i2s_hclk";
1629                 clocks = <&cru SCLK_I2S0_8CH>, <&cru HCLK_I2S0_8CH>;
1630                 pinctrl-names = "default";
1631                 pinctrl-0 = <&i2s0_8ch_bus>;
1632                 power-domains = <&power RK3399_PD_SDIOAUDIO>;
1633                 status = "disabled";
1634         };
1635
1636         i2s1: i2s@ff890000 {
1637                 compatible = "rockchip,rk3399-i2s", "rockchip,rk3066-i2s";
1638                 reg = <0x0 0xff890000 0x0 0x1000>;
1639                 interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH 0>;
1640                 dmas = <&dmac_bus 2>, <&dmac_bus 3>;
1641                 dma-names = "tx", "rx";
1642                 clock-names = "i2s_clk", "i2s_hclk";
1643                 clocks = <&cru SCLK_I2S1_8CH>, <&cru HCLK_I2S1_8CH>;
1644                 pinctrl-names = "default";
1645                 pinctrl-0 = <&i2s1_2ch_bus>;
1646                 power-domains = <&power RK3399_PD_SDIOAUDIO>;
1647                 status = "disabled";
1648         };
1649
1650         i2s2: i2s@ff8a0000 {
1651                 compatible = "rockchip,rk3399-i2s", "rockchip,rk3066-i2s";
1652                 reg = <0x0 0xff8a0000 0x0 0x1000>;
1653                 interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH 0>;
1654                 dmas = <&dmac_bus 4>, <&dmac_bus 5>;
1655                 dma-names = "tx", "rx";
1656                 clock-names = "i2s_clk", "i2s_hclk";
1657                 clocks = <&cru SCLK_I2S2_8CH>, <&cru HCLK_I2S2_8CH>;
1658                 power-domains = <&power RK3399_PD_SDIOAUDIO>;
1659                 status = "disabled";
1660         };
1661
1662         gpu: gpu@ff9a0000 {
1663                 compatible = "arm,malit860",
1664                              "arm,malit86x",
1665                              "arm,malit8xx",
1666                              "arm,mali-midgard";
1667
1668                 reg = <0x0 0xff9a0000 0x0 0x10000>;
1669
1670                 interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH 0>,
1671                              <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH 0>,
1672                              <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH 0>;
1673                 interrupt-names = "GPU", "JOB", "MMU";
1674
1675                 clocks = <&cru ACLK_GPU>;
1676                 clock-names = "clk_mali";
1677                 #cooling-cells = <2>; /* min followed by max */
1678                 power-domains = <&power RK3399_PD_GPU>;
1679                 power-off-delay-ms = <200>;
1680                 status = "disabled";
1681
1682                 gpu_power_model: power_model {
1683                         compatible = "arm,mali-simple-power-model";
1684                         voltage = <900>;
1685                         frequency = <500>;
1686                         static-power = <300>;
1687                         dynamic-power = <396>;
1688                         ts = <32000 4700 (-80) 2>;
1689                         thermal-zone = "gpu-thermal";
1690                 };
1691         };
1692
1693         vopl: vop@ff8f0000 {
1694                 compatible = "rockchip,rk3399-vop-lit";
1695                 reg = <0x0 0xff8f0000 0x0 0x3efc>;
1696                 interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH 0>;
1697                 clocks = <&cru ACLK_VOP1>, <&cru DCLK_VOP1>, <&cru HCLK_VOP1>;
1698                 clock-names = "aclk_vop", "dclk_vop", "hclk_vop";
1699                 resets = <&cru SRST_A_VOP1>, <&cru SRST_H_VOP1>, <&cru SRST_D_VOP1>;
1700                 reset-names = "axi", "ahb", "dclk";
1701                 power-domains = <&power RK3399_PD_VOPL>;
1702                 iommus = <&vopl_mmu>;
1703                 status = "disabled";
1704
1705                 vopl_out: port {
1706                         #address-cells = <1>;
1707                         #size-cells = <0>;
1708
1709                         vopl_out_mipi: endpoint@0 {
1710                                 reg = <0>;
1711                                 remote-endpoint = <&mipi_in_vopl>;
1712                         };
1713
1714                         vopl_out_edp: endpoint@1 {
1715                                 reg = <1>;
1716                                 remote-endpoint = <&edp_in_vopl>;
1717                         };
1718
1719                         vopl_out_hdmi: endpoint@2 {
1720                                 reg = <2>;
1721                                 remote-endpoint = <&hdmi_in_vopl>;
1722                         };
1723
1724                         vopl_out_dp: endpoint@3 {
1725                                 reg = <3>;
1726                                 remote-endpoint = <&dp_in_vopl>;
1727                         };
1728                 };
1729         };
1730
1731         vop1_pwm: voppwm@ff8f01a0 {
1732                 compatible = "rockchip,vop-pwm";
1733                 reg = <0x0 0xff8f01a0 0x0 0x10>;
1734                 #pwm-cells = <3>;
1735                 pinctrl-names = "default";
1736                 pinctrl-0 = <&vop1_pwm_pin>;
1737                 clocks = <&cru SCLK_VOP1_PWM>;
1738                 clock-names = "pwm";
1739                 status = "disabled";
1740         };
1741
1742         vopl_mmu: iommu@ff8f3f00 {
1743                 compatible = "rockchip,iommu";
1744                 reg = <0x0 0xff8f3f00 0x0 0x100>;
1745                 interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH 0>;
1746                 interrupt-names = "vopl_mmu";
1747                 clocks = <&cru ACLK_VOP1>, <&cru HCLK_VOP1>;
1748                 clock-names = "aclk", "hclk";
1749                 power-domains = <&power RK3399_PD_VOPL>;
1750                 #iommu-cells = <0>;
1751                 status = "disabled";
1752         };
1753
1754         vopb: vop@ff900000 {
1755                 compatible = "rockchip,rk3399-vop-big";
1756                 reg = <0x0 0xff900000 0x0 0x3efc>;
1757                 interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH 0>;
1758                 clocks = <&cru ACLK_VOP0>, <&cru DCLK_VOP0>, <&cru HCLK_VOP0>;
1759                 clock-names = "aclk_vop", "dclk_vop", "hclk_vop";
1760                 resets = <&cru SRST_A_VOP0>, <&cru SRST_H_VOP0>, <&cru SRST_D_VOP0>;
1761                 reset-names = "axi", "ahb", "dclk";
1762                 power-domains = <&power RK3399_PD_VOPB>;
1763                 iommus = <&vopb_mmu>;
1764                 status = "disabled";
1765
1766                 vopb_out: port {
1767                         #address-cells = <1>;
1768                         #size-cells = <0>;
1769
1770                         vopb_out_edp: endpoint@0 {
1771                                 reg = <0>;
1772                                 remote-endpoint = <&edp_in_vopb>;
1773                         };
1774
1775                         vopb_out_mipi: endpoint@1 {
1776                                 reg = <1>;
1777                                 remote-endpoint = <&mipi_in_vopb>;
1778                         };
1779
1780                         vopb_out_hdmi: endpoint@2 {
1781                                 reg = <2>;
1782                                 remote-endpoint = <&hdmi_in_vopb>;
1783                         };
1784
1785                         vopb_out_dp: endpoint@3 {
1786                                 reg = <3>;
1787                                 remote-endpoint = <&dp_in_vopb>;
1788                         };
1789                 };
1790         };
1791
1792         vop0_pwm: voppwm@ff9001a0 {
1793                 compatible = "rockchip,vop-pwm";
1794                 reg = <0x0 0xff9001a0 0x0 0x10>;
1795                 #pwm-cells = <3>;
1796                 pinctrl-names = "default";
1797                 pinctrl-0 = <&vop0_pwm_pin>;
1798                 clocks = <&cru SCLK_VOP0_PWM>;
1799                 clock-names = "pwm";
1800                 status = "disabled";
1801         };
1802
1803         vopb_mmu: iommu@ff903f00 {
1804                 compatible = "rockchip,iommu";
1805                 reg = <0x0 0xff903f00 0x0 0x100>;
1806                 interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH 0>;
1807                 interrupt-names = "vopb_mmu";
1808                 clocks = <&cru ACLK_VOP0>, <&cru HCLK_VOP0>;
1809                 clock-names = "aclk", "hclk";
1810                 power-domains = <&power RK3399_PD_VOPB>;
1811                 #iommu-cells = <0>;
1812                 status = "disabled";
1813         };
1814
1815         isp0_mmu: iommu@ff914000 {
1816                 compatible = "rockchip,iommu";
1817                 reg = <0x0 0xff914000 0x0 0x100>, <0x0 0xff915000 0x0 0x100>;
1818                 interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH 0>;
1819                 interrupt-names = "isp0_mmu";
1820                 #iommu-cells = <0>;
1821                 clocks = <&cru ACLK_ISP0_NOC>, <&cru HCLK_ISP0_NOC>;
1822                 clock-names = "aclk", "hclk";
1823                 power-domains = <&power RK3399_PD_ISP0>;
1824                 rk_iommu,disable_reset_quirk;
1825                 status = "disabled";
1826         };
1827
1828         isp1_mmu: iommu@ff924000 {
1829                 compatible = "rockchip,iommu";
1830                 reg = <0x0 0xff924000 0x0 0x100>, <0x0 0xff925000 0x0 0x100>;
1831                 interrupts = <GIC_SPI 44 IRQ_TYPE_LEVEL_HIGH 0>;
1832                 interrupt-names = "isp1_mmu";
1833                 #iommu-cells = <0>;
1834                 clocks = <&cru ACLK_ISP1_NOC>, <&cru HCLK_ISP1_NOC>;
1835                 clock-names = "aclk", "hclk";
1836                 power-domains = <&power RK3399_PD_ISP1>;
1837                 rk_iommu,disable_reset_quirk;
1838                 status = "disabled";
1839         };
1840
1841         hdmi: hdmi@ff940000 {
1842                 compatible = "rockchip,rk3399-dw-hdmi";
1843                 reg = <0x0 0xff940000 0x0 0x20000>;
1844                 reg-io-width = <4>;
1845                 rockchip,grf = <&grf>;
1846                 power-domains = <&power RK3399_PD_HDCP>;
1847                 interrupts = <GIC_SPI 23 IRQ_TYPE_LEVEL_HIGH 0>;
1848                 clocks = <&cru PCLK_HDMI_CTRL>, <&cru SCLK_HDMI_SFR>, <&cru PLL_VPLL>, <&cru PCLK_VIO_GRF>;
1849                 clock-names = "iahb", "isfr", "vpll", "grf";
1850                 status = "disabled";
1851
1852                 ports {
1853                         hdmi_in: port {
1854                                 #address-cells = <1>;
1855                                 #size-cells = <0>;
1856                                 hdmi_in_vopb: endpoint@0 {
1857                                         reg = <0>;
1858                                         remote-endpoint = <&vopb_out_hdmi>;
1859                                 };
1860                                 hdmi_in_vopl: endpoint@1 {
1861                                         reg = <1>;
1862                                         remote-endpoint = <&vopl_out_hdmi>;
1863                                 };
1864                         };
1865                 };
1866         };
1867
1868         mipi_dsi: mipi@ff960000 {
1869                 compatible = "rockchip,rk3399-mipi-dsi", "snps,dw-mipi-dsi";
1870                 reg = <0x0 0xff960000 0x0 0x8000>;
1871                 interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH 0>;
1872                 clocks = <&cru SCLK_MIPIDPHY_REF>, <&cru PCLK_MIPI_DSI0>,
1873                          <&cru SCLK_DPHY_TX0_CFG>;
1874                 clock-names = "ref", "pclk", "phy_cfg";
1875                 power-domains = <&power RK3399_PD_VIO>;
1876                 rockchip,grf = <&grf>;
1877                 #address-cells = <1>;
1878                 #size-cells = <0>;
1879                 status = "disabled";
1880
1881                 ports {
1882                         #address-cells = <1>;
1883                         #size-cells = <0>;
1884                         reg = <1>;
1885
1886                         mipi_in: port {
1887                                 #address-cells = <1>;
1888                                 #size-cells = <0>;
1889
1890                                 mipi_in_vopb: endpoint@0 {
1891                                         reg = <0>;
1892                                         remote-endpoint = <&vopb_out_mipi>;
1893                                 };
1894                                 mipi_in_vopl: endpoint@1 {
1895                                         reg = <1>;
1896                                         remote-endpoint = <&vopl_out_mipi>;
1897                                 };
1898                         };
1899                 };
1900         };
1901
1902         edp: edp@ff970000 {
1903                 compatible = "rockchip,rk3399-edp";
1904                 reg = <0x0 0xff970000 0x0 0x8000>;
1905                 interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH 0>;
1906                 clocks = <&cru PCLK_EDP>, <&cru PCLK_EDP_CTRL>;
1907                 clock-names = "dp", "pclk";
1908                 power-domains = <&power RK3399_PD_EDP>;
1909                 resets = <&cru SRST_P_EDP_CTRL>;
1910                 reset-names = "dp";
1911                 rockchip,grf = <&grf>;
1912                 status = "disabled";
1913                 pinctrl-names = "default";
1914                 pinctrl-0 = <&edp_hpd>;
1915
1916                 ports {
1917                         #address-cells = <1>;
1918                         #size-cells = <0>;
1919
1920                         edp_in: port@0 {
1921                                 reg = <0>;
1922                                 #address-cells = <1>;
1923                                 #size-cells = <0>;
1924
1925                                 edp_in_vopb: endpoint@0 {
1926                                         reg = <0>;
1927                                         remote-endpoint = <&vopb_out_edp>;
1928                                 };
1929
1930                                 edp_in_vopl: endpoint@1 {
1931                                         reg = <1>;
1932                                         remote-endpoint = <&vopl_out_edp>;
1933                                 };
1934                         };
1935                 };
1936         };
1937
1938         display_subsystem: display-subsystem {
1939                 compatible = "rockchip,display-subsystem";
1940                 ports = <&vopl_out>, <&vopb_out>;
1941                 status = "disabled";
1942         };
1943
1944         pinctrl: pinctrl {
1945                 compatible = "rockchip,rk3399-pinctrl";
1946                 rockchip,grf = <&grf>;
1947                 rockchip,pmu = <&pmugrf>;
1948                 #address-cells = <0x2>;
1949                 #size-cells = <0x2>;
1950                 ranges;
1951
1952                 gpio0: gpio0@ff720000 {
1953                         compatible = "rockchip,gpio-bank";
1954                         reg = <0x0 0xff720000 0x0 0x100>;
1955                         clocks = <&pmucru PCLK_GPIO0_PMU>;
1956                         interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH 0>;
1957
1958                         gpio-controller;
1959                         #gpio-cells = <0x2>;
1960
1961                         interrupt-controller;
1962                         #interrupt-cells = <0x2>;
1963                 };
1964
1965                 gpio1: gpio1@ff730000 {
1966                         compatible = "rockchip,gpio-bank";
1967                         reg = <0x0 0xff730000 0x0 0x100>;
1968                         clocks = <&pmucru PCLK_GPIO1_PMU>;
1969                         interrupts = <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH 0>;
1970
1971                         gpio-controller;
1972                         #gpio-cells = <0x2>;
1973
1974                         interrupt-controller;
1975                         #interrupt-cells = <0x2>;
1976                 };
1977
1978                 gpio2: gpio2@ff780000 {
1979                         compatible = "rockchip,gpio-bank";
1980                         reg = <0x0 0xff780000 0x0 0x100>;
1981                         clocks = <&cru PCLK_GPIO2>;
1982                         interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH 0>;
1983
1984                         gpio-controller;
1985                         #gpio-cells = <0x2>;
1986
1987                         interrupt-controller;
1988                         #interrupt-cells = <0x2>;
1989                 };
1990
1991                 gpio3: gpio3@ff788000 {
1992                         compatible = "rockchip,gpio-bank";
1993                         reg = <0x0 0xff788000 0x0 0x100>;
1994                         clocks = <&cru PCLK_GPIO3>;
1995                         interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH 0>;
1996
1997                         gpio-controller;
1998                         #gpio-cells = <0x2>;
1999
2000                         interrupt-controller;
2001                         #interrupt-cells = <0x2>;
2002                 };
2003
2004                 gpio4: gpio4@ff790000 {
2005                         compatible = "rockchip,gpio-bank";
2006                         reg = <0x0 0xff790000 0x0 0x100>;
2007                         clocks = <&cru PCLK_GPIO4>;
2008                         interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH 0>;
2009
2010                         gpio-controller;
2011                         #gpio-cells = <0x2>;
2012
2013                         interrupt-controller;
2014                         #interrupt-cells = <0x2>;
2015                 };
2016
2017                 pcfg_pull_up: pcfg-pull-up {
2018                         bias-pull-up;
2019                 };
2020
2021                 pcfg_pull_down: pcfg-pull-down {
2022                         bias-pull-down;
2023                 };
2024
2025                 pcfg_pull_none: pcfg-pull-none {
2026                         bias-disable;
2027                 };
2028
2029                 pcfg_pull_up_20ma: pcfg-pull-up-20ma {
2030                         bias-pull-up;
2031                         drive-strength = <20>;
2032                 };
2033
2034                 pcfg_pull_none_20ma: pcfg-pull-none-20ma {
2035                         bias-disable;
2036                         drive-strength = <20>;
2037                 };
2038
2039                 pcfg_pull_none_18ma: pcfg-pull-none-18ma {
2040                         bias-disable;
2041                         drive-strength = <18>;
2042                 };
2043
2044                 pcfg_pull_none_12ma: pcfg-pull-none-12ma {
2045                         bias-disable;
2046                         drive-strength = <12>;
2047                 };
2048
2049                 pcfg_pull_up_8ma: pcfg-pull-up-8ma {
2050                         bias-pull-up;
2051                         drive-strength = <8>;
2052                 };
2053
2054                 pcfg_pull_down_4ma: pcfg-pull-down-4ma {
2055                         bias-pull-down;
2056                         drive-strength = <4>;
2057                 };
2058
2059                 pcfg_pull_up_2ma: pcfg-pull-up-2ma {
2060                         bias-pull-up;
2061                         drive-strength = <2>;
2062                 };
2063
2064                 pcfg_pull_down_12ma: pcfg-pull-down-12ma {
2065                         bias-pull-down;
2066                         drive-strength = <12>;
2067                 };
2068
2069                 pcfg_pull_none_13ma: pcfg-pull-none-13ma {
2070                         bias-disable;
2071                         drive-strength = <13>;
2072                 };
2073
2074                 pcfg_output_high: pcfg-output-high {
2075                         output-high;
2076                 };
2077
2078                 pcfg_output_low: pcfg-output-low {
2079                         output-low;
2080                 };
2081
2082                 pcfg_input: pcfg-input {
2083                         input-enable;
2084                 };
2085
2086                 emmc {
2087                         emmc_pwr: emmc-pwr {
2088                                 rockchip,pins =
2089                                         <0 5 RK_FUNC_1 &pcfg_pull_up>;
2090                         };
2091                 };
2092
2093                 gmac {
2094                         rgmii_pins: rgmii-pins {
2095                                 rockchip,pins =
2096                                         /* mac_txclk */
2097                                         <3 17 RK_FUNC_1 &pcfg_pull_none_13ma>,
2098                                         /* mac_rxclk */
2099                                         <3 14 RK_FUNC_1 &pcfg_pull_none>,
2100                                         /* mac_mdio */
2101                                         <3 13 RK_FUNC_1 &pcfg_pull_none>,
2102                                         /* mac_txen */
2103                                         <3 12 RK_FUNC_1 &pcfg_pull_none_13ma>,
2104                                         /* mac_clk */
2105                                         <3 11 RK_FUNC_1 &pcfg_pull_none>,
2106                                         /* mac_rxdv */
2107                                         <3 9 RK_FUNC_1 &pcfg_pull_none>,
2108                                         /* mac_mdc */
2109                                         <3 8 RK_FUNC_1 &pcfg_pull_none>,
2110                                         /* mac_rxd1 */
2111                                         <3 7 RK_FUNC_1 &pcfg_pull_none>,
2112                                         /* mac_rxd0 */
2113                                         <3 6 RK_FUNC_1 &pcfg_pull_none>,
2114                                         /* mac_txd1 */
2115                                         <3 5 RK_FUNC_1 &pcfg_pull_none_13ma>,
2116                                         /* mac_txd0 */
2117                                         <3 4 RK_FUNC_1 &pcfg_pull_none_13ma>,
2118                                         /* mac_rxd3 */
2119                                         <3 3 RK_FUNC_1 &pcfg_pull_none>,
2120                                         /* mac_rxd2 */
2121                                         <3 2 RK_FUNC_1 &pcfg_pull_none>,
2122                                         /* mac_txd3 */
2123                                         <3 1 RK_FUNC_1 &pcfg_pull_none_13ma>,
2124                                         /* mac_txd2 */
2125                                         <3 0 RK_FUNC_1 &pcfg_pull_none_13ma>;
2126                         };
2127
2128                         rmii_pins: rmii-pins {
2129                                 rockchip,pins =
2130                                         /* mac_mdio */
2131                                         <3 13 RK_FUNC_1 &pcfg_pull_none>,
2132                                         /* mac_txen */
2133                                         <3 12 RK_FUNC_1 &pcfg_pull_none_13ma>,
2134                                         /* mac_clk */
2135                                         <3 11 RK_FUNC_1 &pcfg_pull_none>,
2136                                         /* mac_rxer */
2137                                         <3 10 RK_FUNC_1 &pcfg_pull_none>,
2138                                         /* mac_rxdv */
2139                                         <3 9 RK_FUNC_1 &pcfg_pull_none>,
2140                                         /* mac_mdc */
2141                                         <3 8 RK_FUNC_1 &pcfg_pull_none>,
2142                                         /* mac_rxd1 */
2143                                         <3 7 RK_FUNC_1 &pcfg_pull_none>,
2144                                         /* mac_rxd0 */
2145                                         <3 6 RK_FUNC_1 &pcfg_pull_none>,
2146                                         /* mac_txd1 */
2147                                         <3 5 RK_FUNC_1 &pcfg_pull_none_13ma>,
2148                                         /* mac_txd0 */
2149                                         <3 4 RK_FUNC_1 &pcfg_pull_none_13ma>;
2150                         };
2151                 };
2152
2153                 i2c0 {
2154                         i2c0_xfer: i2c0-xfer {
2155                                 rockchip,pins =
2156                                         <1 15 RK_FUNC_2 &pcfg_pull_none>,
2157                                         <1 16 RK_FUNC_2 &pcfg_pull_none>;
2158                         };
2159                 };
2160
2161                 i2c1 {
2162                         i2c1_xfer: i2c1-xfer {
2163                                 rockchip,pins =
2164                                         <4 2 RK_FUNC_1 &pcfg_pull_none>,
2165                                         <4 1 RK_FUNC_1 &pcfg_pull_none>;
2166                         };
2167                 };
2168
2169                 i2c2 {
2170                         i2c2_xfer: i2c2-xfer {
2171                                 rockchip,pins =
2172                                         <2 1 RK_FUNC_2 &pcfg_pull_none_12ma>,
2173                                         <2 0 RK_FUNC_2 &pcfg_pull_none_12ma>;
2174                         };
2175                 };
2176
2177                 i2c3 {
2178                         i2c3_xfer: i2c3-xfer {
2179                                 rockchip,pins =
2180                                         <4 17 RK_FUNC_1 &pcfg_pull_none>,
2181                                         <4 16 RK_FUNC_1 &pcfg_pull_none>;
2182                         };
2183
2184                         i2c3_gpio: i2c3_gpio {
2185                                 rockchip,pins =
2186                                         <4 17 RK_FUNC_GPIO &pcfg_pull_none>,
2187                                         <4 16 RK_FUNC_GPIO &pcfg_pull_none>;
2188                         };
2189
2190                 };
2191
2192                 i2c4 {
2193                         i2c4_xfer: i2c4-xfer {
2194                                 rockchip,pins =
2195                                         <1 12 RK_FUNC_1 &pcfg_pull_none>,
2196                                         <1 11 RK_FUNC_1 &pcfg_pull_none>;
2197                         };
2198                 };
2199
2200                 i2c5 {
2201                         i2c5_xfer: i2c5-xfer {
2202                                 rockchip,pins =
2203                                         <3 11 RK_FUNC_2 &pcfg_pull_none>,
2204                                         <3 10 RK_FUNC_2 &pcfg_pull_none>;
2205                         };
2206                 };
2207
2208                 i2c6 {
2209                         i2c6_xfer: i2c6-xfer {
2210                                 rockchip,pins =
2211                                         <2 10 RK_FUNC_2 &pcfg_pull_none>,
2212                                         <2 9 RK_FUNC_2 &pcfg_pull_none>;
2213                         };
2214                 };
2215
2216                 i2c7 {
2217                         i2c7_xfer: i2c7-xfer {
2218                                 rockchip,pins =
2219                                         <2 8 RK_FUNC_2 &pcfg_pull_none>,
2220                                         <2 7 RK_FUNC_2 &pcfg_pull_none>;
2221                         };
2222                 };
2223
2224                 i2c8 {
2225                         i2c8_xfer: i2c8-xfer {
2226                                 rockchip,pins =
2227                                         <1 21 RK_FUNC_1 &pcfg_pull_none>,
2228                                         <1 20 RK_FUNC_1 &pcfg_pull_none>;
2229                         };
2230                 };
2231
2232                 i2s0 {
2233                         i2s0_8ch_bus: i2s0-8ch-bus {
2234                                 rockchip,pins =
2235                                         <3 24 RK_FUNC_1 &pcfg_pull_none>,
2236                                         <3 25 RK_FUNC_1 &pcfg_pull_none>,
2237                                         <3 26 RK_FUNC_1 &pcfg_pull_none>,
2238                                         <3 27 RK_FUNC_1 &pcfg_pull_none>,
2239                                         <3 28 RK_FUNC_1 &pcfg_pull_none>,
2240                                         <3 29 RK_FUNC_1 &pcfg_pull_none>,
2241                                         <3 30 RK_FUNC_1 &pcfg_pull_none>,
2242                                         <3 31 RK_FUNC_1 &pcfg_pull_none>,
2243                                         <4 0 RK_FUNC_1 &pcfg_pull_none>;
2244                         };
2245                 };
2246
2247                 i2s1 {
2248                         i2s1_2ch_bus: i2s1-2ch-bus {
2249                                 rockchip,pins =
2250                                         <4 3 RK_FUNC_1 &pcfg_pull_none>,
2251                                         <4 4 RK_FUNC_1 &pcfg_pull_none>,
2252                                         <4 5 RK_FUNC_1 &pcfg_pull_none>,
2253                                         <4 6 RK_FUNC_1 &pcfg_pull_none>,
2254                                         <4 7 RK_FUNC_1 &pcfg_pull_none>;
2255                         };
2256                 };
2257
2258                 sdio0 {
2259                         sdio0_bus1: sdio0-bus1 {
2260                                 rockchip,pins =
2261                                         <2 20 RK_FUNC_1 &pcfg_pull_up>;
2262                         };
2263
2264                         sdio0_bus4: sdio0-bus4 {
2265                                 rockchip,pins =
2266                                         <2 20 RK_FUNC_1 &pcfg_pull_up>,
2267                                         <2 21 RK_FUNC_1 &pcfg_pull_up>,
2268                                         <2 22 RK_FUNC_1 &pcfg_pull_up>,
2269                                         <2 23 RK_FUNC_1 &pcfg_pull_up>;
2270                         };
2271
2272                         sdio0_cmd: sdio0-cmd {
2273                                 rockchip,pins =
2274                                         <2 24 RK_FUNC_1 &pcfg_pull_up>;
2275                         };
2276
2277                         sdio0_clk: sdio0-clk {
2278                                 rockchip,pins =
2279                                         <2 25 RK_FUNC_1 &pcfg_pull_none>;
2280                         };
2281
2282                         sdio0_cd: sdio0-cd {
2283                                 rockchip,pins =
2284                                         <2 26 RK_FUNC_1 &pcfg_pull_up>;
2285                         };
2286
2287                         sdio0_pwr: sdio0-pwr {
2288                                 rockchip,pins =
2289                                         <2 27 RK_FUNC_1 &pcfg_pull_up>;
2290                         };
2291
2292                         sdio0_bkpwr: sdio0-bkpwr {
2293                                 rockchip,pins =
2294                                         <2 28 RK_FUNC_1 &pcfg_pull_up>;
2295                         };
2296
2297                         sdio0_wp: sdio0-wp {
2298                                 rockchip,pins =
2299                                         <0 3 RK_FUNC_1 &pcfg_pull_up>;
2300                         };
2301
2302                         sdio0_int: sdio0-int {
2303                                 rockchip,pins =
2304                                         <0 4 RK_FUNC_1 &pcfg_pull_up>;
2305                         };
2306                 };
2307
2308                 sdmmc {
2309                         sdmmc_bus1: sdmmc-bus1 {
2310                                 rockchip,pins =
2311                                         <4 8 RK_FUNC_1 &pcfg_pull_up>;
2312                         };
2313
2314                         sdmmc_bus4: sdmmc-bus4 {
2315                                 rockchip,pins =
2316                                         <4 8 RK_FUNC_1 &pcfg_pull_up>,
2317                                         <4 9 RK_FUNC_1 &pcfg_pull_up>,
2318                                         <4 10 RK_FUNC_1 &pcfg_pull_up>,
2319                                         <4 11 RK_FUNC_1 &pcfg_pull_up>;
2320                         };
2321
2322                         sdmmc_clk: sdmmc-clk {
2323                                 rockchip,pins =
2324                                         <4 12 RK_FUNC_1 &pcfg_pull_none>;
2325                         };
2326
2327                         sdmmc_cmd: sdmmc-cmd {
2328                                 rockchip,pins =
2329                                         <4 13 RK_FUNC_1 &pcfg_pull_up>;
2330                         };
2331
2332                         sdmmc_cd: sdmcc-cd {
2333                                 rockchip,pins =
2334                                         <0 7 RK_FUNC_1 &pcfg_pull_up>;
2335                         };
2336
2337                         sdmmc_wp: sdmmc-wp {
2338                                 rockchip,pins =
2339                                         <0 8 RK_FUNC_1 &pcfg_pull_up>;
2340                         };
2341                 };
2342
2343                 spdif {
2344                         spdif_bus: spdif-bus {
2345                                 rockchip,pins =
2346                                         <4 21 RK_FUNC_1 &pcfg_pull_none>;
2347                         };
2348
2349                         spdif_bus_1: spdif-bus-1 {
2350                                 rockchip,pins =
2351                                         <3 16 RK_FUNC_3 &pcfg_pull_none>;
2352                         };
2353                 };
2354
2355                 spi0 {
2356                         spi0_clk: spi0-clk {
2357                                 rockchip,pins =
2358                                         <3 6 RK_FUNC_2 &pcfg_pull_up>;
2359                         };
2360                         spi0_cs0: spi0-cs0 {
2361                                 rockchip,pins =
2362                                         <3 7 RK_FUNC_2 &pcfg_pull_up>;
2363                         };
2364                         spi0_cs1: spi0-cs1 {
2365                                 rockchip,pins =
2366                                         <3 8 RK_FUNC_2 &pcfg_pull_up>;
2367                         };
2368                         spi0_tx: spi0-tx {
2369                                 rockchip,pins =
2370                                         <3 5 RK_FUNC_2 &pcfg_pull_up>;
2371                         };
2372                         spi0_rx: spi0-rx {
2373                                 rockchip,pins =
2374                                         <3 4 RK_FUNC_2 &pcfg_pull_up>;
2375                         };
2376                 };
2377
2378                 spi1 {
2379                         spi1_clk: spi1-clk {
2380                                 rockchip,pins =
2381                                         <1 9 RK_FUNC_2 &pcfg_pull_up>;
2382                         };
2383                         spi1_cs0: spi1-cs0 {
2384                                 rockchip,pins =
2385                                         <1 10 RK_FUNC_2 &pcfg_pull_up>;
2386                         };
2387                         spi1_rx: spi1-rx {
2388                                 rockchip,pins =
2389                                         <1 7 RK_FUNC_2 &pcfg_pull_up>;
2390                         };
2391                         spi1_tx: spi1-tx {
2392                                 rockchip,pins =
2393                                         <1 8 RK_FUNC_2 &pcfg_pull_up>;
2394                         };
2395                 };
2396
2397                 spi2 {
2398                         spi2_clk: spi2-clk {
2399                                 rockchip,pins =
2400                                         <2 11 RK_FUNC_1 &pcfg_pull_up>;
2401                         };
2402                         spi2_cs0: spi2-cs0 {
2403                                 rockchip,pins =
2404                                         <2 12 RK_FUNC_1 &pcfg_pull_up>;
2405                         };
2406                         spi2_rx: spi2-rx {
2407                                 rockchip,pins =
2408                                         <2 9 RK_FUNC_1 &pcfg_pull_up>;
2409                         };
2410                         spi2_tx: spi2-tx {
2411                                 rockchip,pins =
2412                                         <2 10 RK_FUNC_1 &pcfg_pull_up>;
2413                         };
2414                 };
2415
2416                 spi3 {
2417                         spi3_clk: spi3-clk {
2418                                 rockchip,pins =
2419                                         <1 17 RK_FUNC_1 &pcfg_pull_up>;
2420                         };
2421                         spi3_cs0: spi3-cs0 {
2422                                 rockchip,pins =
2423                                         <1 18 RK_FUNC_1 &pcfg_pull_up>;
2424                         };
2425                         spi3_rx: spi3-rx {
2426                                 rockchip,pins =
2427                                         <1 15 RK_FUNC_1 &pcfg_pull_up>;
2428                         };
2429                         spi3_tx: spi3-tx {
2430                                 rockchip,pins =
2431                                         <1 16 RK_FUNC_1 &pcfg_pull_up>;
2432                         };
2433                 };
2434
2435                 spi4 {
2436                         spi4_clk: spi4-clk {
2437                                 rockchip,pins =
2438                                         <3 2 RK_FUNC_2 &pcfg_pull_up>;
2439                         };
2440                         spi4_cs0: spi4-cs0 {
2441                                 rockchip,pins =
2442                                         <3 3 RK_FUNC_2 &pcfg_pull_up>;
2443                         };
2444                         spi4_rx: spi4-rx {
2445                                 rockchip,pins =
2446                                         <3 0 RK_FUNC_2 &pcfg_pull_up>;
2447                         };
2448                         spi4_tx: spi4-tx {
2449                                 rockchip,pins =
2450                                         <3 1 RK_FUNC_2 &pcfg_pull_up>;
2451                         };
2452                 };
2453
2454                 spi5 {
2455                         spi5_clk: spi5-clk {
2456                                 rockchip,pins =
2457                                         <2 22 RK_FUNC_2 &pcfg_pull_up>;
2458                         };
2459                         spi5_cs0: spi5-cs0 {
2460                                 rockchip,pins =
2461                                         <2 23 RK_FUNC_2 &pcfg_pull_up>;
2462                         };
2463                         spi5_rx: spi5-rx {
2464                                 rockchip,pins =
2465                                         <2 20 RK_FUNC_2 &pcfg_pull_up>;
2466                         };
2467                         spi5_tx: spi5-tx {
2468                                 rockchip,pins =
2469                                         <2 21 RK_FUNC_2 &pcfg_pull_up>;
2470                         };
2471                 };
2472
2473                 tsadc {
2474                         otp_gpio: otp-gpio {
2475                                 rockchip,pins = <1 6 RK_FUNC_GPIO &pcfg_pull_none>;
2476                         };
2477
2478                         otp_out: otp-out {
2479                                 rockchip,pins = <1 6 RK_FUNC_1 &pcfg_pull_none>;
2480                         };
2481                 };
2482
2483                 uart0 {
2484                         uart0_xfer: uart0-xfer {
2485                                 rockchip,pins =
2486                                         <2 16 RK_FUNC_1 &pcfg_pull_up>,
2487                                         <2 17 RK_FUNC_1 &pcfg_pull_none>;
2488                         };
2489
2490                         uart0_cts: uart0-cts {
2491                                 rockchip,pins =
2492                                         <2 18 RK_FUNC_1 &pcfg_pull_none>;
2493                         };
2494
2495                         uart0_rts: uart0-rts {
2496                                 rockchip,pins =
2497                                         <2 19 RK_FUNC_1 &pcfg_pull_none>;
2498                         };
2499                 };
2500
2501                 uart1 {
2502                         uart1_xfer: uart1-xfer {
2503                                 rockchip,pins =
2504                                         <3 12 RK_FUNC_2 &pcfg_pull_up>,
2505                                         <3 13 RK_FUNC_2 &pcfg_pull_none>;
2506                         };
2507                 };
2508
2509                 uart2a {
2510                         uart2a_xfer: uart2a-xfer {
2511                                 rockchip,pins =
2512                                         <4 8 RK_FUNC_2 &pcfg_pull_up>,
2513                                         <4 9 RK_FUNC_2 &pcfg_pull_none>;
2514                         };
2515                 };
2516
2517                 uart2b {
2518                         uart2b_xfer: uart2b-xfer {
2519                                 rockchip,pins =
2520                                         <4 16 RK_FUNC_2 &pcfg_pull_up>,
2521                                         <4 17 RK_FUNC_2 &pcfg_pull_none>;
2522                         };
2523                 };
2524
2525                 uart2c {
2526                         uart2c_xfer: uart2c-xfer {
2527                                 rockchip,pins =
2528                                         <4 19 RK_FUNC_1 &pcfg_pull_up>,
2529                                         <4 20 RK_FUNC_1 &pcfg_pull_none>;
2530                         };
2531                 };
2532
2533                 uart3 {
2534                         uart3_xfer: uart3-xfer {
2535                                 rockchip,pins =
2536                                         <3 14 RK_FUNC_2 &pcfg_pull_up>,
2537                                         <3 15 RK_FUNC_2 &pcfg_pull_none>;
2538                         };
2539
2540                         uart3_cts: uart3-cts {
2541                                 rockchip,pins =
2542                                         <3 18 RK_FUNC_2 &pcfg_pull_none>;
2543                         };
2544
2545                         uart3_rts: uart3-rts {
2546                                 rockchip,pins =
2547                                         <3 19 RK_FUNC_2 &pcfg_pull_none>;
2548                         };
2549                 };
2550
2551                 uart4 {
2552                         uart4_xfer: uart4-xfer {
2553                                 rockchip,pins =
2554                                         <1 7 RK_FUNC_1 &pcfg_pull_up>,
2555                                         <1 8 RK_FUNC_1 &pcfg_pull_none>;
2556                         };
2557                 };
2558
2559                 uarthdcp {
2560                         uarthdcp_xfer: uarthdcp-xfer {
2561                                 rockchip,pins =
2562                                         <4 21 RK_FUNC_2 &pcfg_pull_up>,
2563                                         <4 22 RK_FUNC_2 &pcfg_pull_none>;
2564                         };
2565                 };
2566
2567                 pwm0 {
2568                         pwm0_pin: pwm0-pin {
2569                                 rockchip,pins =
2570                                         <4 18 RK_FUNC_1 &pcfg_pull_none>;
2571                         };
2572
2573                         vop0_pwm_pin: vop0-pwm-pin {
2574                                 rockchip,pins =
2575                                         <4 18 RK_FUNC_2 &pcfg_pull_none>;
2576                         };
2577                 };
2578
2579                 pwm1 {
2580                         pwm1_pin: pwm1-pin {
2581                                 rockchip,pins =
2582                                         <4 22 RK_FUNC_1 &pcfg_pull_none>;
2583                         };
2584
2585                         vop1_pwm_pin: vop1-pwm-pin {
2586                                 rockchip,pins =
2587                                         <4 18 RK_FUNC_3 &pcfg_pull_none>;
2588                         };
2589                 };
2590
2591                 pwm2 {
2592                         pwm2_pin: pwm2-pin {
2593                                 rockchip,pins =
2594                                         <1 19 RK_FUNC_1 &pcfg_pull_none>;
2595                         };
2596                 };
2597
2598                 pwm3a {
2599                         pwm3a_pin: pwm3a-pin {
2600                                 rockchip,pins =
2601                                         <0 6 RK_FUNC_1 &pcfg_pull_none>;
2602                         };
2603                 };
2604
2605                 pwm3b {
2606                         pwm3b_pin: pwm3b-pin {
2607                                 rockchip,pins =
2608                                         <1 14 RK_FUNC_1 &pcfg_pull_none>;
2609                         };
2610                 };
2611
2612                 edp {
2613                         edp_hpd: edp-hpd {
2614                                 rockchip,pins =
2615                                         <4 23 RK_FUNC_2 &pcfg_pull_none>;
2616                         };
2617                 };
2618
2619                 hdmi {
2620                         hdmi_i2c_xfer: hdmi-i2c-xfer {
2621                                 rockchip,pins =
2622                                         <4 17 RK_FUNC_3 &pcfg_pull_none>,
2623                                         <4 16 RK_FUNC_3 &pcfg_pull_none>;
2624                         };
2625
2626                         hdmi_cec: hdmi-cec {
2627                                 rockchip,pins =
2628                                         <4 23 RK_FUNC_1 &pcfg_pull_none>;
2629                         };
2630                 };
2631
2632                 pcie {
2633                         pcie_clkreqn: pci-clkreqn {
2634                                 rockchip,pins =
2635                                         <2 26 RK_FUNC_2 &pcfg_pull_none>;
2636                         };
2637
2638                         pcie_clkreqnb: pci-clkreqnb {
2639                                 rockchip,pins =
2640                                         <4 24 RK_FUNC_1 &pcfg_pull_none>;
2641                         };
2642
2643                         pcie_clkreqn_cpm: pci-clkreqn-cpm {
2644                                 /*
2645                                  * Since our pcie doesn't support
2646                                  * ClockPM(CPM), we want to hack this as
2647                                  * gpio, so the EP could be able to
2648                                  * de-assert it along and make ClockPM(CPM)
2649                                  * work.
2650                                  */
2651                                 rockchip,pins =
2652                                         <2 26 RK_FUNC_GPIO &pcfg_pull_none>;
2653                         };
2654
2655                         pcie_clkreqnb_cpm: pci-clkreqnb-cpm {
2656                                 rockchip,pins =
2657                                         <4 24 RK_FUNC_GPIO &pcfg_pull_none>;
2658                         };
2659                 };
2660         };
2661
2662         rockchip_suspend: rockchip-suspend {
2663                 compatible = "rockchip,pm-rk3399";
2664                 status = "disabled";
2665                 rockchip,sleep-debug-en = <0>;
2666                 rockchip,virtual-poweroff = <0>;
2667                 rockchip,sleep-mode-config = <
2668                         (0
2669                         | RKPM_SLP_ARMPD
2670                         | RKPM_SLP_PERILPPD
2671                         | RKPM_SLP_DDR_RET
2672                         | RKPM_SLP_PLLPD
2673                         | RKPM_SLP_OSC_DIS
2674                         | RKPM_SLP_CENTER_PD
2675                         | RKPM_SLP_AP_PWROFF
2676                         )
2677                 >;
2678                 rockchip,wakeup-config = <
2679                         (0
2680                         | RKPM_GPIO_WKUP_EN
2681                         )
2682                 >;
2683         };
2684 };