hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2020 Rockchip Electronics Co., Ltd.
 */
 
#include <dt-bindings/clock/rk3568-cru.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/pinctrl/rockchip.h>
#include <dt-bindings/soc/rockchip,boot-mode.h>
#include <dt-bindings/phy/phy.h>
#include <dt-bindings/power/rk3568-power.h>
#include <dt-bindings/soc/rockchip-system-status.h>
#include <dt-bindings/suspend/rockchip-rk3568.h>
#include <dt-bindings/thermal/thermal.h>
#include "rk3568-dram-default-timing.dtsi"
 
/ {
   compatible = "rockchip,rk3568";
 
   interrupt-parent = <&gic>;
   #address-cells = <2>;
   #size-cells = <2>;
 
   aliases {
       csi2dphy0 = &csi2_dphy0;
       csi2dphy1 = &csi2_dphy1;
       csi2dphy2 = &csi2_dphy2;
       dsi0 = &dsi0;
       dsi1 = &dsi1;
       ethernet0 = &gmac0;
       ethernet1 = &gmac1;
       gpio0 = &gpio0;
       gpio1 = &gpio1;
       gpio2 = &gpio2;
       gpio3 = &gpio3;
       gpio4 = &gpio4;
       i2c0 = &i2c0;
       i2c1 = &i2c1;
       i2c2 = &i2c2;
       i2c3 = &i2c3;
       i2c4 = &i2c4;
       i2c5 = &i2c5;
       mmc0 = &sdhci;
       mmc1 = &sdmmc0;
       mmc2 = &sdmmc1;
       mmc3 = &sdmmc2;
       serial0 = &uart0;
       serial1 = &uart1;
       serial2 = &uart2;
       serial3 = &uart3;
       serial4 = &uart4;
       serial5 = &uart5;
       serial6 = &uart6;
       serial7 = &uart7;
       serial8 = &uart8;
       serial9 = &uart9;
       spi0 = &spi0;
       spi1 = &spi1;
       spi2 = &spi2;
       spi3 = &spi3;
       lvds0 = &lvds;
       lvds1 = &lvds1;
   };
 
   cpus {
       #address-cells = <2>;
       #size-cells = <0>;
 
       cpu0: cpu@0 {
           device_type = "cpu";
           compatible = "arm,cortex-a55";
           reg = <0x0 0x0>;
           enable-method = "psci";
           clocks = <&scmi_clk 0>;
           operating-points-v2 = <&cpu0_opp_table>;
           cpu-idle-states = <&CPU_SLEEP>;
           #cooling-cells = <2>;
           dynamic-power-coefficient = <187>;
       };
 
       cpu1: cpu@100 {
           device_type = "cpu";
           compatible = "arm,cortex-a55";
           reg = <0x0 0x100>;
           enable-method = "psci";
           clocks = <&scmi_clk 0>;
           operating-points-v2 = <&cpu0_opp_table>;
           cpu-idle-states = <&CPU_SLEEP>;
       };
 
       cpu2: cpu@200 {
           device_type = "cpu";
           compatible = "arm,cortex-a55";
           reg = <0x0 0x200>;
           enable-method = "psci";
           clocks = <&scmi_clk 0>;
           operating-points-v2 = <&cpu0_opp_table>;
           cpu-idle-states = <&CPU_SLEEP>;
       };
 
       cpu3: cpu@300 {
           device_type = "cpu";
           compatible = "arm,cortex-a55";
           reg = <0x0 0x300>;
           enable-method = "psci";
           clocks = <&scmi_clk 0>;
           operating-points-v2 = <&cpu0_opp_table>;
           cpu-idle-states = <&CPU_SLEEP>;
       };
 
       idle-states {
           entry-method = "psci";
           CPU_SLEEP: cpu-sleep {
               compatible = "arm,idle-state";
               local-timer-stop;
               arm,psci-suspend-param = <0x0010000>;
               entry-latency-us = <100>;
               exit-latency-us = <120>;
               min-residency-us = <1000>;
           };
       };
   };
 
   cpu0_opp_table: cpu0-opp-table {
       compatible = "operating-points-v2";
       opp-shared;
 
       mbist-vmin = <825000 900000 950000>;
       nvmem-cells = <&cpu_leakage>, <&core_pvtm>, <&mbist_vmin>, <&cpu_opp_info>,
                 <&specification_serial_number>, <&remark_spec_serial_number>;
       nvmem-cell-names = "leakage", "pvtm", "mbist-vmin", "opp-info",
                  "specification_serial_number", "remark_spec_serial_number";
       rockchip,supported-hw;
       rockchip,max-volt = <1150000>;
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    87000   1
           87001    91000   2
           91001    100000  3
       >;
       rockchip,pvtm-freq = <408000>;
       rockchip,pvtm-volt = <900000>;
       rockchip,pvtm-ch = <0 5>;
       rockchip,pvtm-sample-time = <1000>;
       rockchip,pvtm-number = <10>;
       rockchip,pvtm-error = <1000>;
       rockchip,pvtm-ref-temp = <40>;
       rockchip,pvtm-temp-prop = <26 26>;
       rockchip,thermal-zone = "soc-thermal";
       rockchip,temp-hysteresis = <5000>;
       rockchip,low-temp = <0>;
       rockchip,low-temp-adjust-volt = <
           /* MHz    MHz    uV */
              0      1992   75000
       >;
 
       /* RK3568 && RK3568M cpu OPPs */
       opp-408000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <408000000>;
           opp-microvolt = <850000 850000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-600000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <600000000>;
           opp-microvolt = <850000 850000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-816000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <816000000>;
           opp-microvolt = <850000 850000 1150000>;
           clock-latency-ns = <40000>;
           opp-suspend;
       };
       opp-1104000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <1104000000>;
           opp-microvolt = <900000 900000 1150000>;
           opp-microvolt-L0 = <900000 900000 1150000>;
           opp-microvolt-L1 = <850000 850000 1150000>;
           opp-microvolt-L2 = <850000 850000 1150000>;
           opp-microvolt-L3 = <850000 850000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-1416000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <1416000000>;
           opp-microvolt = <1025000 1025000 1150000>;
           opp-microvolt-L0 = <1025000 1025000 1150000>;
           opp-microvolt-L1 = <975000 975000 1150000>;
           opp-microvolt-L2 = <950000 950000 1150000>;
           opp-microvolt-L3 = <925000 925000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-1608000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <1608000000>;
           opp-microvolt = <1100000 1100000 1150000>;
           opp-microvolt-L0 = <1100000 1100000 1150000>;
           opp-microvolt-L1 = <1050000 1050000 1150000>;
           opp-microvolt-L2 = <1025000 1025000 1150000>;
           opp-microvolt-L3 = <1000000 1000000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-1800000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <1800000000>;
           opp-microvolt = <1150000 1150000 1150000>;
           opp-microvolt-L0 = <1150000 1150000 1150000>;
           opp-microvolt-L1 = <1100000 1100000 1150000>;
           opp-microvolt-L2 = <1075000 1075000 1150000>;
           opp-microvolt-L3 = <1050000 1050000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-1992000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <1992000000>;
           opp-microvolt = <1150000 1150000 1150000>;
           opp-microvolt-L0 = <1150000 1150000 1150000>;
           opp-microvolt-L1 = <1150000 1150000 1150000>;
           opp-microvolt-L2 = <1125000 1125000 1150000>;
           opp-microvolt-L3 = <1100000 1100000 1150000>;
           clock-latency-ns = <40000>;
       };
 
       /* RK3568J cpu OPPs */
       opp-j-1008000000 {
           opp-supported-hw = <0x04 0xffff>;
           opp-hz = /bits/ 64 <1008000000>;
           opp-microvolt = <850000 850000 1150000>;
           clock-latency-ns = <40000>;
       };
       opp-j-1416000000 {
           opp-supported-hw = <0x04 0xffff>;
           opp-hz = /bits/ 64 <1416000000>;
           opp-microvolt = <900000 900000 1150000>;
           clock-latency-ns = <40000>;
       };
 
       /* RK3568M cpu OPPs */
       opp-m-1608000000 {
           opp-supported-hw = <0x02 0xffff>;
           opp-hz = /bits/ 64 <1608000000>;
           opp-microvolt = <1000000 1000000 1150000>;
           clock-latency-ns = <40000>;
       };
   };
 
   arm_pmu: arm-pmu {
       compatible = "arm,cortex-a55-pmu", "arm,armv8-pmuv3";
       interrupts = <GIC_SPI 228 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 229 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 230 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 231 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-affinity = <&cpu0>, <&cpu1>, <&cpu2>, <&cpu3>;
   };
 
   cpuinfo {
       compatible = "rockchip,cpuinfo";
       nvmem-cells = <&otp_id>, <&otp_cpu_version>, <&cpu_code>;
       nvmem-cell-names = "id", "cpu-version", "cpu-code";
   };
 
   display_subsystem: display-subsystem {
       compatible = "rockchip,display-subsystem";
       memory-region = <&drm_logo>, <&drm_cubic_lut>;
       memory-region-names = "drm-logo", "drm-cubic-lut";
       ports = <&vop_out>;
       devfreq = <&dmc>;
 
       route {
           route_dsi0: route-dsi0 {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp0_out_dsi0>;
           };
           route_dsi1: route-dsi1 {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp1_out_dsi1>;
           };
           route_edp: route-edp {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp1_out_edp>;
           };
           route_hdmi: route-hdmi {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp0_out_hdmi>;
           };
           route_lvds: route-lvds {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp1_out_lvds>;
           };
           route_rgb: route-rgb {
               status = "disabled";
               logo,uboot = "logo.bmp";
               logo,kernel = "logo_kernel.bmp";
               logo,mode = "center";
               charge_logo,mode = "center";
               connect = <&vp2_out_rgb>;
           };
       };
   };
 
   edac: edac {
       compatible = "rockchip,rk3568-edac";
       interrupts = <GIC_SPI 173 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 175 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "ce", "ue";
       status = "disabled";
   };
 
   firmware {
       scmi: scmi {
           compatible = "arm,scmi-smc";
           shmem = <&scmi_shmem>;
           arm,smc-id = <0x82000010>;
           #address-cells = <1>;
           #size-cells = <0>;
 
           scmi_clk: protocol@14 {
               reg = <0x14>;
               #clock-cells = <1>;
 
               rockchip,clk-init = <1104000000>;
           };
       };
 
       sdei: sdei {
           compatible = "arm,sdei-1.0";
           method = "smc";
       };
   };
 
   mipi_csi2: mipi-csi2 {
       compatible = "rockchip,rk3568-mipi-csi2";
       rockchip,hw = <&mipi_csi2_hw>;
       status = "disabled";
   };
 
   mpp_srv: mpp-srv {
       compatible = "rockchip,mpp-service";
       rockchip,taskqueue-count = <6>;
       rockchip,resetgroup-count = <6>;
       status = "disabled";
   };
 
   psci {
       compatible = "arm,psci-1.0";
       method = "smc";
   };
 
   reserved_memory: reserved-memory {
       #address-cells = <2>;
       #size-cells = <2>;
       ranges;
 
       drm_logo: drm-logo@00000000 {
           compatible = "rockchip,drm-logo";
           reg = <0x0 0x0 0x0 0x0>;
       };
 
       drm_cubic_lut: drm-cubic-lut@00000000 {
           compatible = "rockchip,drm-cubic-lut";
           reg = <0x0 0x0 0x0 0x0>;
       };
   };
 
   rockchip_suspend: rockchip-suspend {
       compatible = "rockchip,pm-rk3568";
       status = "disabled";
       rockchip,sleep-debug-en = <1>;
       rockchip,sleep-mode-config = <
           (0
           | RKPM_SLP_ARMOFF_LOGOFF
           | RKPM_SLP_CENTER_OFF
           | RKPM_SLP_HW_PLLS_OFF
           | RKPM_SLP_PMUALIVE_32K
           | RKPM_SLP_OSC_DIS
           | RKPM_SLP_PMIC_LP
           | RKPM_SLP_32K_PVTM
           )
       >;
       rockchip,wakeup-config = <
           (0
           | RKPM_GPIO_WKUP_EN
           )
       >;
   };
 
   rockchip_system_monitor: rockchip-system-monitor {
       compatible = "rockchip,system-monitor";
 
       rockchip,thermal-zone = "soc-thermal";
   };
 
   thermal_zones: thermal-zones {
       soc_thermal: soc-thermal {
           polling-delay-passive = <20>; /* milliseconds */
           polling-delay = <1000>; /* milliseconds */
           sustainable-power = <905>; /* milliwatts */
 
           thermal-sensors = <&tsadc 0>;
           trips {
               threshold: trip-point-0 {
                   temperature = <75000>;
                   hysteresis = <2000>;
                   type = "passive";
               };
               target: trip-point-1 {
                   temperature = <85000>;
                   hysteresis = <2000>;
                   type = "passive";
               };
               soc_crit: soc-crit {
                   /* millicelsius */
                   temperature = <115000>;
                   /* millicelsius */
                   hysteresis = <2000>;
                   type = "critical";
               };
           };
           cooling-maps {
               map0 {
                   trip = <&target>;
                   cooling-device = <&cpu0 THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
                   contribution = <1024>;
               };
               map1 {
                   trip = <&target>;
                   cooling-device = <&gpu THERMAL_NO_LIMIT THERMAL_NO_LIMIT>;
                   contribution = <1024>;
               };
           };
       };
 
       gpu_thermal: gpu-thermal {
           polling-delay-passive = <20>; /* milliseconds */
           polling-delay = <1000>; /* milliseconds */
 
           thermal-sensors = <&tsadc 1>;
       };
   };
 
   timer {
       compatible = "arm,armv8-timer";
       interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
                <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
                <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>,
                <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(4) | IRQ_TYPE_LEVEL_HIGH)>;
       arm,no-tick-in-suspend;
   };
 
   gmac0_clkin: external-gmac0-clock {
       compatible = "fixed-clock";
       clock-frequency = <125000000>;
       clock-output-names = "gmac0_clkin";
       #clock-cells = <0>;
   };
 
   gmac1_clkin: external-gmac1-clock {
       compatible = "fixed-clock";
       clock-frequency = <125000000>;
       clock-output-names = "gmac1_clkin";
       #clock-cells = <0>;
   };
 
   gmac0_xpcsclk: xpcs-gmac0-clock {
       compatible = "fixed-clock";
       clock-frequency = <125000000>;
       clock-output-names = "clk_gmac0_xpcs_mii";
       #clock-cells = <0>;
   };
 
   gmac1_xpcsclk: xpcs-gmac1-clock {
       compatible = "fixed-clock";
       clock-frequency = <125000000>;
       clock-output-names = "clk_gmac1_xpcs_mii";
       #clock-cells = <0>;
   };
 
   i2s1_mclkin_rx: i2s1-mclkin-rx {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <12288000>;
       clock-output-names = "i2s1_mclkin_rx";
   };
 
   i2s1_mclkin_tx: i2s1-mclkin-tx {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <12288000>;
       clock-output-names = "i2s1_mclkin_tx";
   };
 
   i2s2_mclkin: i2s2-mclkin {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <12288000>;
       clock-output-names = "i2s2_mclkin";
   };
 
   i2s3_mclkin: i2s3-mclkin {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <12288000>;
       clock-output-names = "i2s3_mclkin";
   };
 
   mpll: mpll {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <800000000>;
       clock-output-names = "mpll";
   };
 
   xin24m: xin24m {
       compatible = "fixed-clock";
       #clock-cells = <0>;
       clock-frequency = <24000000>;
       clock-output-names = "xin24m";
   };
 
   xin32k: xin32k {
       compatible = "fixed-clock";
       clock-frequency = <32768>;
       clock-output-names = "xin32k";
       #clock-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&clk32k_out0>;
   };
 
   scmi_shmem: scmi-shmem@10f000 {
       compatible = "arm,scmi-shmem";
       reg = <0x0 0x0010f000 0x0 0x100>;
   };
 
   sata0: sata@fc000000 {
       compatible = "snps,dwc-ahci";
       reg = <0 0xfc000000 0 0x1000>;
       clocks = <&cru ACLK_SATA0>, <&cru CLK_SATA0_PMALIVE>,
            <&cru CLK_SATA0_RXOOB>;
       clock-names = "sata", "pmalive", "rxoob";
       interrupts = <GIC_SPI 94 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "hostc";
       phys = <&combphy0_us PHY_TYPE_SATA>;
       phy-names = "sata-phy";
       ports-implemented = <0x1>;
       power-domains = <&power RK3568_PD_PIPE>;
       status = "disabled";
   };
 
   sata1: sata@fc400000 {
       compatible = "snps,dwc-ahci";
       reg = <0 0xfc400000 0 0x1000>;
       clocks = <&cru ACLK_SATA1>, <&cru CLK_SATA1_PMALIVE>,
            <&cru CLK_SATA1_RXOOB>;
       clock-names = "sata", "pmalive", "rxoob";
       interrupts = <GIC_SPI 95 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "hostc";
       phys = <&combphy1_usq PHY_TYPE_SATA>;
       phy-names = "sata-phy";
       ports-implemented = <0x1>;
       power-domains = <&power RK3568_PD_PIPE>;
       status = "disabled";
   };
 
   sata2: sata@fc800000 {
       compatible = "snps,dwc-ahci";
       reg = <0 0xfc800000 0 0x1000>;
       clocks = <&cru ACLK_SATA2>, <&cru CLK_SATA2_PMALIVE>,
            <&cru CLK_SATA2_RXOOB>;
       clock-names = "sata", "pmalive", "rxoob";
       interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "hostc";
       phys = <&combphy2_psq PHY_TYPE_SATA>;
       phy-names = "sata-phy";
       ports-implemented = <0x1>;
       power-domains = <&power RK3568_PD_PIPE>;
       status = "disabled";
   };
 
   usbdrd30: usbdrd {
       compatible = "rockchip,rk3568-dwc3", "rockchip,rk3399-dwc3";
       clocks = <&cru CLK_USB3OTG0_REF>, <&cru CLK_USB3OTG0_SUSPEND>,
            <&cru ACLK_USB3OTG0>, <&cru PCLK_PIPE>;
       clock-names = "ref_clk", "suspend_clk",
                 "bus_clk", "pipe_clk";
       #address-cells = <2>;
       #size-cells = <2>;
       ranges;
       status = "disabled";
 
       usbdrd_dwc3: dwc3@fcc00000 {
           compatible = "snps,dwc3";
           reg = <0x0 0xfcc00000 0x0 0x400000>;
           interrupts = <GIC_SPI 169 IRQ_TYPE_LEVEL_HIGH>;
           dr_mode = "otg";
           phys = <&u2phy0_otg>, <&combphy0_us PHY_TYPE_USB3>;
           phy-names = "usb2-phy", "usb3-phy";
           phy_type = "utmi_wide";
           power-domains = <&power RK3568_PD_PIPE>;
           resets = <&cru SRST_USB3OTG0>;
           reset-names = "usb3-otg";
           snps,dis_enblslpm_quirk;
           snps,dis-u1-entry-quirk;
           snps,dis-u2-entry-quirk;
           snps,dis-u2-freeclk-exists-quirk;
           snps,dis-del-phy-power-chg-quirk;
           snps,dis-tx-ipgap-linecheck-quirk;
           snps,dis_rxdet_inp3_quirk;
           snps,xhci-trb-ent-quirk;
           snps,parkmode-disable-hs-quirk;
           snps,parkmode-disable-ss-quirk;
           quirk-skip-phy-init;
           status = "disabled";
       };
   };
 
   usbhost30: usbhost {
       compatible = "rockchip,rk3568-dwc3", "rockchip,rk3399-dwc3";
       clocks = <&cru CLK_USB3OTG1_REF>, <&cru CLK_USB3OTG1_SUSPEND>,
            <&cru ACLK_USB3OTG1>, <&cru PCLK_PIPE>;
       clock-names = "ref_clk", "suspend_clk",
                 "bus_clk", "pipe_clk";
       #address-cells = <2>;
       #size-cells = <2>;
       ranges;
       status = "disabled";
 
       usbhost_dwc3: dwc3@fd000000 {
           compatible = "snps,dwc3";
           reg = <0x0 0xfd000000 0x0 0x400000>;
           interrupts = <GIC_SPI 170 IRQ_TYPE_LEVEL_HIGH>;
           dr_mode = "host";
           phys = <&u2phy0_host>, <&combphy1_usq PHY_TYPE_USB3>;
           phy-names = "usb2-phy", "usb3-phy";
           phy_type = "utmi_wide";
           power-domains = <&power RK3568_PD_PIPE>;
           resets = <&cru SRST_USB3OTG1>;
           reset-names = "usb3-host";
           snps,dis_enblslpm_quirk;
           snps,dis-u2-freeclk-exists-quirk;
           snps,dis-del-phy-power-chg-quirk;
           snps,dis-tx-ipgap-linecheck-quirk;
           snps,dis_rxdet_inp3_quirk;
           snps,xhci-trb-ent-quirk;
           snps,parkmode-disable-hs-quirk;
           snps,parkmode-disable-ss-quirk;
           status = "disabled";
       };
   };
 
   gic: interrupt-controller@fd400000 {
       compatible = "arm,gic-v3";
       #interrupt-cells = <3>;
       #address-cells = <2>;
       #size-cells = <2>;
       ranges;
       interrupt-controller;
 
       reg = <0x0 0xfd400000 0 0x10000>, /* GICD */
             <0x0 0xfd460000 0 0xc0000>; /* GICR */
       interrupts = <GIC_PPI 9 IRQ_TYPE_LEVEL_HIGH>;
       its: interrupt-controller@fd440000 {
           compatible = "arm,gic-v3-its";
           msi-controller;
           #msi-cells = <1>;
           reg = <0x0 0xfd440000 0x0 0x20000>;
       };
   };
 
   usb_host0_ehci: usb@fd800000 {
       compatible = "generic-ehci";
       reg = <0x0 0xfd800000 0x0 0x40000>;
       interrupts = <GIC_SPI 130 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru HCLK_USB2HOST0>, <&cru HCLK_USB2HOST0_ARB>,
            <&cru PCLK_USB>, <&usb2phy1>;
       clock-names = "usbhost", "arbiter", "pclk", "utmi";
       phys = <&u2phy1_otg>;
       phy-names = "usb2-phy";
       status = "disabled";
   };
 
   usb_host0_ohci: usb@fd840000 {
       compatible = "generic-ohci";
       reg = <0x0 0xfd840000 0x0 0x40000>;
       interrupts = <GIC_SPI 131 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru HCLK_USB2HOST0>, <&cru HCLK_USB2HOST0_ARB>,
            <&cru PCLK_USB>, <&usb2phy1>;
       clock-names = "usbhost", "arbiter", "pclk", "utmi";
       phys = <&u2phy1_otg>;
       phy-names = "usb2-phy";
       status = "disabled";
   };
 
   usb_host1_ehci: usb@fd880000 {
       compatible = "generic-ehci";
       reg = <0x0 0xfd880000 0x0 0x40000>;
       interrupts = <GIC_SPI 133 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru HCLK_USB2HOST1>, <&cru HCLK_USB2HOST1_ARB>,
            <&cru PCLK_USB>, <&usb2phy1>;
       clock-names = "usbhost", "arbiter", "pclk", "utmi";
       phys = <&u2phy1_host>;
       phy-names = "usb2-phy";
       status = "disabled";
   };
 
   usb_host1_ohci: usb@fd8c0000 {
       compatible = "generic-ohci";
       reg = <0x0 0xfd8c0000 0x0 0x40000>;
       interrupts = <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru HCLK_USB2HOST1>, <&cru HCLK_USB2HOST1_ARB>,
            <&cru PCLK_USB>, <&usb2phy1>;
       clock-names = "usbhost", "arbiter", "pclk", "utmi";
       phys = <&u2phy1_host>;
       phy-names = "usb2-phy";
       status = "disabled";
   };
 
   xpcs: syscon@fda00000 {
       compatible = "rockchip,rk3568-xpcs", "syscon";
       reg = <0x0 0xfda00000 0x0 0x200000>;
       status = "disabled";
   };
 
   pmugrf: syscon@fdc20000 {
       compatible = "rockchip,rk3568-pmugrf", "syscon", "simple-mfd";
       reg = <0x0 0xfdc20000 0x0 0x10000>;
 
       pmu_io_domains: io-domains {
           compatible = "rockchip,rk3568-pmu-io-voltage-domain";
           status = "disabled";
       };
 
       reboot_mode: reboot-mode {
           compatible = "syscon-reboot-mode";
           offset = <0x200>;
           mode-bootloader = <BOOT_BL_DOWNLOAD>;
           mode-charge = <BOOT_CHARGING>;
           mode-fastboot = <BOOT_FASTBOOT>;
           mode-loader = <BOOT_BL_DOWNLOAD>;
           mode-normal = <BOOT_NORMAL>;
           mode-recovery = <BOOT_RECOVERY>;
           mode-ums = <BOOT_UMS>;
           mode-panic = <BOOT_PANIC>;
           mode-watchdog = <BOOT_WATCHDOG>;
       };
   };
 
   pipegrf: syscon@fdc50000 {
       compatible = "rockchip,rk3568-pipegrf", "syscon";
       reg = <0x0 0xfdc50000 0x0 0x1000>;
   };
 
   grf: syscon@fdc60000 {
       compatible = "rockchip,rk3568-grf", "syscon", "simple-mfd";
       reg = <0x0 0xfdc60000 0x0 0x10000>;
 
       io_domains: io-domains {
           compatible = "rockchip,rk3568-io-voltage-domain";
           status = "disabled";
       };
 
       lvds: lvds {
           compatible = "rockchip,rk3568-lvds";
           phys = <&video_phy0>;
           phy-names = "phy";
           status = "disabled";
 
           ports {
               #address-cells = <1>;
               #size-cells = <0>;
 
               port@0 {
                   reg = <0>;
                   #address-cells = <1>;
                   #size-cells = <0>;
 
                   lvds_in_vp1: endpoint@1 {
                       reg = <1>;
                       remote-endpoint = <&vp1_out_lvds>;
                       status = "disabled";
                   };
 
                   lvds_in_vp2: endpoint@2 {
                       reg = <2>;
                       remote-endpoint = <&vp2_out_lvds>;
                       status = "disabled";
                   };
               };
           };
       };
 
       lvds1: lvds1 {
           compatible = "rockchip,rk3568-lvds";
           phys = <&video_phy1>;
           phy-names = "phy";
           status = "disabled";
 
           ports {
               #address-cells = <1>;
               #size-cells = <0>;
 
               port@0 {
                   reg = <0>;
                   #address-cells = <1>;
                   #size-cells = <0>;
 
                   lvds1_in_vp1: endpoint@0 {
                       reg = <0>;
                       remote-endpoint = <&vp1_out_lvds1>;
                   };
 
                   lvds1_in_vp2: endpoint@1 {
                       reg = <1>;
                       remote-endpoint = <&vp2_out_lvds1>;
                   };
               };
           };
       };
 
       rgb: rgb {
           compatible = "rockchip,rk3568-rgb";
           pinctrl-names = "default";
           pinctrl-0 = <&lcdc_ctl>;
           status = "disabled";
 
           ports {
               #address-cells = <1>;
               #size-cells = <0>;
 
               port@0 {
                   reg = <0>;
                   #address-cells = <1>;
                   #size-cells = <0>;
 
                   rgb_in_vp2: endpoint@2 {
                       reg = <2>;
                       remote-endpoint = <&vp2_out_rgb>;
                       status = "disabled";
                   };
               };
           };
       };
 
   };
 
   pipe_phy_grf0: syscon@fdc70000 {
       compatible = "rockchip,pipe-phy-grf", "syscon";
       reg = <0x0 0xfdc70000 0x0 0x1000>;
   };
 
   pipe_phy_grf1: syscon@fdc80000 {
       compatible = "rockchip,pipe-phy-grf", "syscon";
       reg = <0x0 0xfdc80000 0x0 0x1000>;
   };
 
   pipe_phy_grf2: syscon@fdc90000 {
       compatible = "rockchip,pipe-phy-grf", "syscon";
       reg = <0x0 0xfdc90000 0x0 0x1000>;
   };
 
   usb2phy0_grf: syscon@fdca0000 {
       compatible = "rockchip,rk3568-usb2phy-grf", "syscon";
       reg = <0x0 0xfdca0000 0x0 0x8000>;
   };
 
   usb2phy1_grf: syscon@fdca8000 {
       compatible = "rockchip,rk3568-usb2phy-grf", "syscon";
       reg = <0x0 0xfdca8000 0x0 0x8000>;
   };
 
   edp_phy_grf: syscon@fdcb0000 {
       compatible = "rockchip,rk3568-edp-phy-grf", "syscon", "simple-mfd";
       reg = <0x0 0xfdcb0000 0x0 0x100>;
       clocks = <&cru PCLK_EDPPHY_GRF>;
 
       edp_phy: edp-phy {
           compatible = "rockchip,rk3568-edp-phy";
           clocks = <&pmucru XIN_OSC0_EDPPHY_G>;
           clock-names = "refclk";
           #phy-cells = <0>;
           status = "disabled";
       };
   };
 
   pcie30_phy_grf: syscon@fdcb8000 {
       compatible = "rockchip,pcie30-phy-grf", "syscon";
       reg = <0x0 0xfdcb8000 0x0 0x10000>;
   };
 
   sram: sram@fdcc0000 {
       compatible = "mmio-sram";
       reg = <0x0 0xfdcc0000 0x0 0xb000>;
 
       #address-cells = <1>;
       #size-cells = <1>;
       ranges = <0x0 0x0 0xfdcc0000 0xb000>;
 
       /* start address and size should be 4k algin */
       rkvdec_sram: rkvdec-sram@0 {
           reg = <0x0 0xb000>;
       };
   };
 
   pmucru: clock-controller@fdd00000 {
       compatible = "rockchip,rk3568-pmucru";
       reg = <0x0 0xfdd00000 0x0 0x1000>;
       rockchip,grf = <&grf>;
       rockchip,pmugrf = <&pmugrf>;
       #clock-cells = <1>;
       #reset-cells = <1>;
 
       assigned-clocks = <&pmucru SCLK_32K_IOE>;
       assigned-clock-parents = <&pmucru CLK_RTC_32K>;
   };
 
   cru: clock-controller@fdd20000 {
       compatible = "rockchip,rk3568-cru";
       reg = <0x0 0xfdd20000 0x0 0x1000>;
       rockchip,grf = <&grf>;
       #clock-cells = <1>;
       #reset-cells = <1>;
 
       assigned-clocks =
           <&pmucru CLK_RTC_32K>, <&cru ACLK_RKVDEC_PRE>,
           <&cru CLK_RKVDEC_CORE>, <&pmucru PLL_PPLL>,
           <&pmucru PCLK_PMU>, <&cru PLL_CPLL>,
           <&cru CPLL_500M>, <&cru CPLL_333M>,
           <&cru CPLL_250M>, <&cru CPLL_125M>,
           <&cru CPLL_100M>, <&cru CPLL_62P5M>,
           <&cru CPLL_50M>, <&cru CPLL_25M>,
           <&cru PLL_GPLL>,
           <&cru ACLK_BUS>, <&cru PCLK_BUS>,
           <&cru ACLK_TOP_HIGH>, <&cru ACLK_TOP_LOW>,
           <&cru HCLK_TOP>, <&cru PCLK_TOP>,
           <&cru ACLK_PERIMID>, <&cru HCLK_PERIMID>,
           <&cru PLL_NPLL>, <&cru ACLK_PIPE>,
           <&cru PCLK_PIPE>, <&cru CLK_I2S0_8CH_TX_SRC>,
           <&cru CLK_I2S0_8CH_RX_SRC>, <&cru CLK_I2S1_8CH_TX_SRC>,
           <&cru CLK_I2S1_8CH_RX_SRC>, <&cru CLK_I2S2_2CH_SRC>,
           <&cru CLK_I2S2_2CH_SRC>, <&cru CLK_I2S3_2CH_RX_SRC>,
           <&cru CLK_I2S3_2CH_TX_SRC>, <&cru MCLK_SPDIF_8CH_SRC>,
           <&cru ACLK_VOP>;
       assigned-clock-rates =
           <32768>, <300000000>,
           <300000000>, <200000000>,
           <100000000>, <1000000000>,
           <500000000>, <333000000>,
           <250000000>, <125000000>,
           <100000000>, <62500000>,
           <50000000>, <25000000>,
           <1188000000>,
           <150000000>, <100000000>,
           <500000000>, <400000000>,
           <150000000>, <100000000>,
           <300000000>, <150000000>,
           <1200000000>, <400000000>,
           <100000000>, <1188000000>,
           <1188000000>, <1188000000>,
           <1188000000>, <1188000000>,
           <1188000000>, <1188000000>,
           <1188000000>, <1188000000>,
           <500000000>;
       assigned-clock-parents =
           <&pmucru CLK_RTC32K_FRAC>, <&cru PLL_GPLL>,
           <&cru PLL_GPLL>;
   };
 
   i2c0: i2c@fdd40000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfdd40000 0x0 0x1000>;
       clocks = <&pmucru CLK_I2C0>, <&pmucru PCLK_I2C0>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 46 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c0_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   uart0: serial@fdd50000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfdd50000 0x0 0x100>;
       interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&pmucru SCLK_UART0>, <&pmucru PCLK_UART0>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 0>, <&dmac0 1>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart0_xfer>;
       status = "disabled";
   };
 
   pwm0: pwm@fdd70000 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfdd70000 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm0m0_pins>;
       clocks = <&pmucru CLK_PWM0>, <&pmucru PCLK_PWM0>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm1: pwm@fdd70010 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfdd70010 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm1m0_pins>;
       clocks = <&pmucru CLK_PWM0>, <&pmucru PCLK_PWM0>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm2: pwm@fdd70020 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfdd70020 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm2m0_pins>;
       clocks = <&pmucru CLK_PWM0>, <&pmucru PCLK_PWM0>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm3: pwm@fdd70030 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfdd70030 0x0 0x10>;
       interrupts = <GIC_SPI 82 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm3_pins>;
       clocks = <&pmucru CLK_PWM0>, <&pmucru PCLK_PWM0>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pmu: power-management@fdd90000 {
       compatible = "rockchip,rk3568-pmu", "syscon", "simple-mfd";
       reg = <0x0 0xfdd90000 0x0 0x1000>;
 
       power: power-controller {
           compatible = "rockchip,rk3568-power-controller";
           #power-domain-cells = <1>;
           #address-cells = <1>;
           #size-cells = <0>;
           status = "okay";
 
           /* These power domains are grouped by VD_NPU */
           pd_npu@RK3568_PD_NPU {
               reg = <RK3568_PD_NPU>;
               clocks = <&cru ACLK_NPU_PRE>,
                    <&cru HCLK_NPU_PRE>,
                    <&cru PCLK_NPU_PRE>;
               pm_qos = <&qos_npu>;
           };
           /* These power domains are grouped by VD_GPU */
           pd_gpu@RK3568_PD_GPU {
               reg = <RK3568_PD_GPU>;
               clocks = <&cru ACLK_GPU_PRE>,
                    <&cru PCLK_GPU_PRE>;
               pm_qos = <&qos_gpu>;
           };
           /* These power domains are grouped by VD_LOGIC */
           pd_vi@RK3568_PD_VI {
               reg = <RK3568_PD_VI>;
               clocks = <&cru HCLK_VI>,
                    <&cru PCLK_VI>;
               pm_qos = <&qos_isp>,
                    <&qos_vicap0>,
                    <&qos_vicap1>;
           };
           pd_vo@RK3568_PD_VO {
               reg = <RK3568_PD_VO>;
               clocks = <&cru HCLK_VO>,
                    <&cru PCLK_VO>,
                    <&cru ACLK_VOP_PRE>;
               pm_qos = <&qos_hdcp>,
                    <&qos_vop_m0>,
                    <&qos_vop_m1>;
           };
           pd_rga@RK3568_PD_RGA {
               reg = <RK3568_PD_RGA>;
               clocks = <&cru HCLK_RGA_PRE>,
                    <&cru PCLK_RGA_PRE>;
               pm_qos = <&qos_ebc>,
                    <&qos_iep>,
                    <&qos_jpeg_dec>,
                    <&qos_jpeg_enc>,
                    <&qos_rga_rd>,
                    <&qos_rga_wr>;
           };
           pd_vpu@RK3568_PD_VPU {
               reg = <RK3568_PD_VPU>;
               clocks = <&cru HCLK_VPU_PRE>;
               pm_qos = <&qos_vpu>;
           };
           pd_rkvdec@RK3568_PD_RKVDEC {
               clocks = <&cru HCLK_RKVDEC_PRE>;
               reg = <RK3568_PD_RKVDEC>;
               pm_qos = <&qos_rkvdec>;
           };
           pd_rkvenc@RK3568_PD_RKVENC {
               reg = <RK3568_PD_RKVENC>;
               clocks = <&cru HCLK_RKVENC_PRE>;
               pm_qos = <&qos_rkvenc_rd_m0>,
                    <&qos_rkvenc_rd_m1>,
                    <&qos_rkvenc_wr_m0>;
           };
           pd_pipe@RK3568_PD_PIPE {
               reg = <RK3568_PD_PIPE>;
               clocks = <&cru PCLK_PIPE>;
               pm_qos = <&qos_pcie2x1>,
                    <&qos_pcie3x1>,
                    <&qos_pcie3x2>,
                    <&qos_sata0>,
                    <&qos_sata1>,
                    <&qos_sata2>,
                    <&qos_usb3_0>,
                    <&qos_usb3_1>;
           };
       };
   };
 
   pvtm@fde00000 {
       compatible = "rockchip,rk3568-core-pvtm";
       reg = <0x0 0xfde00000 0x0 0x100>;
       #address-cells = <1>;
       #size-cells = <0>;
       pvtm@0 {
           reg = <0>;
           clocks = <&cru CLK_CORE_PVTM>, <&cru PCLK_CORE_PVTM>;
           clock-names = "clk", "pclk";
           resets = <&cru SRST_CORE_PVTM>, <&cru SRST_P_CORE_PVTM>;
           reset-names = "rts", "rst-p";
           thermal-zone = "soc-thermal";
       };
   };
 
   rknpu: npu@fde40000 {
       compatible = "rockchip,rk3568-rknpu", "rockchip,rknpu";
       reg = <0x0 0xfde40000 0x0 0x10000>;
       interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&scmi_clk 2>, <&cru CLK_NPU>, <&cru ACLK_NPU>, <&cru HCLK_NPU>;
       clock-names = "scmi_clk", "clk", "aclk", "hclk";
       assigned-clocks = <&cru CLK_NPU>;
       assigned-clock-rates = <600000000>;
       resets = <&cru SRST_A_NPU>, <&cru SRST_H_NPU>;
       reset-names = "srst_a", "srst_h";
       power-domains = <&power RK3568_PD_NPU>;
       operating-points-v2 = <&npu_opp_table>;
       iommus = <&rknpu_mmu>;
       status = "disabled";
   };
 
   npu_opp_table: npu-opp-table {
       compatible = "operating-points-v2";
 
       mbist-vmin = <825000 900000 950000>;
       nvmem-cells = <&npu_leakage>, <&core_pvtm>, <&mbist_vmin>, <&npu_opp_info>,
                 <&specification_serial_number>, <&remark_spec_serial_number>;
       nvmem-cell-names = "leakage", "pvtm", "mbist-vmin", "opp-info",
                  "specification_serial_number", "remark_spec_serial_number";
       rockchip,supported-hw;
       rockchip,max-volt = <1000000>;
       rockchip,temp-hysteresis = <5000>;
       rockchip,low-temp = <0>;
       rockchip,low-temp-adjust-volt = <
           /* MHz    MHz    uV */
              0      1000    50000
       >;
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    87000   1
           87001    91000   2
           91001    100000  3
       >;
       rockchip,pvtm-ch = <0 5>;
 
       /* RK3568 && RK3568M npu OPPs */
       opp-200000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <200000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-300000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <297000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-400000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <400000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-600000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <600000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-700000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <700000000>;
           opp-microvolt = <875000 875000 1000000>;
           opp-microvolt-L0 = <875000 875000 1000000>;
           opp-microvolt-L1 = <850000 850000 1000000>;
           opp-microvolt-L2 = <850000 850000 1000000>;
           opp-microvolt-L3 = <850000 850000 1000000>;
       };
       opp-800000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <800000000>;
           opp-microvolt = <925000 925000 1000000>;
           opp-microvolt-L0 = <925000 925000 1000000>;
           opp-microvolt-L1 = <900000 900000 1000000>;
           opp-microvolt-L2 = <875000 875000 1000000>;
           opp-microvolt-L3 = <875000 875000 1000000>;
       };
       opp-900000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <900000000>;
           opp-microvolt = <975000 975000 1000000>;
           opp-microvolt-L0 = <975000 975000 1000000>;
           opp-microvolt-L1 = <950000 950000 1000000>;
           opp-microvolt-L2 = <925000 925000 1000000>;
           opp-microvolt-L3 = <900000 900000 1000000>;
       };
       opp-1000000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <1000000000>;
           opp-microvolt = <1000000 1000000 1000000>;
           opp-microvolt-L0 = <1000000 1000000 1000000>;
           opp-microvolt-L1 = <975000 975000 1000000>;
           opp-microvolt-L2 = <950000 950000 1000000>;
           opp-microvolt-L3 = <925000 925000 1000000>;
           status = "disabled";
       };
 
       /* RK3568J npu OPPs */
       opp-j-600000000 {
           opp-supported-hw = <0x04 0xffff>;
           opp-hz = /bits/ 64 <600000000>;
           opp-microvolt = <900000 900000 1000000>;
       };
 
       /* RK3568M npu OPPs */
       opp-m-900000000 {
           opp-supported-hw = <0x02 0xffff>;
           opp-hz = /bits/ 64 <900000000>;
           opp-microvolt = <925000 925000 1000000>;
       };
   };
 
   bus_npu: bus-npu {
       compatible = "rockchip,rk3568-bus";
       rockchip,busfreq-policy = "clkfreq";
       clocks = <&scmi_clk 2>;
       clock-names = "bus";
       operating-points-v2 = <&bus_npu_opp_table>;
       status = "disabled";
   };
 
   bus_npu_opp_table: bus-npu-opp-table {
       compatible = "operating-points-v2";
       opp-shared;
 
       nvmem-cells = <&core_pvtm>;
       nvmem-cell-names = "pvtm";
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    91000   1
           91001    100000  2
       >;
       rockchip,pvtm-ch = <0 5>;
 
       opp-700000000 {
           opp-hz = /bits/ 64 <700000000>;
           opp-microvolt = <900000>;
           opp-microvolt-L0 = <900000>;
           opp-microvolt-L1 = <875000>;
           opp-microvolt-L2 = <875000>;
       };
       opp-900000000 {
           opp-hz = /bits/ 64 <900000000>;
           opp-microvolt = <900000>;
       };
       opp-1000000000 {
           opp-hz = /bits/ 64 <1000000000>;
           opp-microvolt = <950000>;
           opp-microvolt-L0 = <950000>;
           opp-microvolt-L1 = <925000>;
           opp-microvolt-L2 = <900000>;
       };
   };
 
   rknpu_mmu: iommu@fde4b000 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfde4b000 0x0 0x40>;
       interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "rknpu_mmu";
       clocks = <&cru ACLK_NPU>, <&cru HCLK_NPU>;
       clock-names = "aclk", "iface";
       power-domains = <&power RK3568_PD_NPU>;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   gpu: gpu@fde60000 {
       compatible = "arm,mali-bifrost";
       reg = <0x0 0xfde60000 0x0 0x4000>;
 
       interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "GPU", "MMU", "JOB";
 
       upthreshold = <40>;
       downdifferential = <10>;
 
       clocks = <&scmi_clk 1>, <&cru CLK_GPU>;
       clock-names = "clk_mali", "clk_gpu";
       power-domains = <&power RK3568_PD_GPU>;
       #cooling-cells = <2>;
       operating-points-v2 = <&gpu_opp_table>;
 
       status = "disabled";
       gpu_power_model: power-model {
           compatible = "simple-power-model";
           leakage-range= <5 15>;
           ls = <(-24002) 22823 0>;
           static-coefficient = <100000>;
           dynamic-coefficient = <953>;
           ts = <(-108890) 63610 (-1355) 20>;
           thermal-zone = "gpu-thermal";
       };
   };
 
   gpu_opp_table: opp-table2 {
       compatible = "operating-points-v2";
 
       mbist-vmin = <825000 900000 950000>;
       nvmem-cells = <&gpu_leakage>, <&core_pvtm>, <&mbist_vmin>, <&gpu_opp_info>,
                 <&specification_serial_number>, <&remark_spec_serial_number>;
       nvmem-cell-names = "leakage", "pvtm", "mbist-vmin", "opp-info",
                  "specification_serial_number", "remark_spec_serial_number";
       rockchip,supported-hw;
       rockchip,max-volt = <1000000>;
       rockchip,temp-hysteresis = <5000>;
       rockchip,low-temp = <0>;
       rockchip,low-temp-adjust-volt = <
           /* MHz    MHz    uV */
              0      800    50000
       >;
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    87000   1
           87001    91000   2
           91001    100000  3
       >;
       rockchip,pvtm-ch = <0 5>;
 
       /* RK3568 && RK3568M gpu OPPs */
       opp-200000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <200000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-300000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <300000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-400000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <400000000>;
           opp-microvolt = <850000 850000 1000000>;
       };
       opp-600000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <600000000>;
           opp-microvolt = <900000 900000 1000000>;
           opp-microvolt-L0 = <900000 900000 1000000>;
           opp-microvolt-L1 = <875000 875000 1000000>;
           opp-microvolt-L2 = <850000 850000 1000000>;
           opp-microvolt-L3 = <850000 850000 1000000>;
       };
       opp-700000000 {
           opp-supported-hw = <0xfb 0xffff>;
           opp-hz = /bits/ 64 <700000000>;
           opp-microvolt = <950000 950000 1000000>;
           opp-microvolt-L0 = <950000 950000 1000000>;
           opp-microvolt-L1 = <925000 925000 1000000>;
           opp-microvolt-L2 = <900000 900000 1000000>;
           opp-microvolt-L3 = <875000 875000 1000000>;
       };
       opp-800000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <800000000>;
           opp-microvolt = <1000000 1000000 1000000>;
           opp-microvolt-L0 = <1000000 1000000 1000000>;
           opp-microvolt-L1 = <975000 975000 1000000>;
           opp-microvolt-L2 = <950000 950000 1000000>;
           opp-microvolt-L3 = <925000 925000 1000000>;
       };
 
       /* RK3568J gpu OPPs */
       opp-j-600000000 {
           opp-supported-hw = <0x04 0xffff>;
           opp-hz = /bits/ 64 <600000000>;
           opp-microvolt = <900000 900000 1000000>;
       };
 
       /* RK3568M gpu OPPs */
       opp-m-800000000 {
           opp-supported-hw = <0x02 0xffff>;
           opp-hz = /bits/ 64 <800000000>;
           opp-microvolt = <950000 950000 1000000>;
       };
 
   };
 
   pvtm@fde80000 {
       compatible = "rockchip,rk3568-gpu-pvtm";
       reg = <0x0 0xfde80000 0x0 0x100>;
       #address-cells = <1>;
       #size-cells = <0>;
       pvtm@1 {
           reg = <1>;
           clocks = <&cru CLK_GPU_PVTM>, <&cru PCLK_GPU_PVTM>;
           clock-names = "clk", "pclk";
           resets = <&cru SRST_GPU_PVTM>, <&cru SRST_P_GPU_PVTM>;
           reset-names = "rts", "rst-p";
           thermal-zone = "gpu-thermal";
       };
   };
 
   pvtm@fde90000 {
       compatible = "rockchip,rk3568-npu-pvtm";
       reg = <0x0 0xfde90000 0x0 0x100>;
       #address-cells = <1>;
       #size-cells = <0>;
       pvtm@2 {
           reg = <2>;
           clocks = <&cru CLK_NPU_PVTM>, <&cru PCLK_NPU_PVTM>,
                <&cru HCLK_NPU_PRE>;
           clock-names = "clk", "pclk", "hclk";
           resets = <&cru SRST_NPU_PVTM>, <&cru SRST_P_NPU_PVTM>;
           reset-names = "rts", "rst-p";
           thermal-zone = "soc-thermal";
       };
   };
 
   vdpu: vdpu@fdea0400 {
       compatible = "rockchip,vpu-decoder-v2";
       reg = <0x0 0xfdea0400 0x0 0x400>;
       interrupts = <GIC_SPI 139 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "irq_dec";
       clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
       clock-names = "aclk_vcodec", "hclk_vcodec";
       resets = <&cru SRST_A_VPU>, <&cru SRST_H_VPU>;
       reset-names = "video_a", "video_h";
       iommus = <&vdpu_mmu>;
       power-domains = <&power RK3568_PD_VPU>;
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <0>;
       rockchip,resetgroup-node = <0>;
       status = "disabled";
   };
 
   vdpu_mmu: iommu@fdea0800 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdea0800 0x0 0x40>;
       interrupts = <GIC_SPI 138 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "vdpu_mmu";
       clock-names = "aclk", "iface";
       clocks = <&cru ACLK_VPU>, <&cru HCLK_VPU>;
       power-domains = <&power RK3568_PD_VPU>;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   rk_rga: rk_rga@fdeb0000 {
       compatible = "rockchip,rga2";
       reg = <0x0 0xfdeb0000 0x0 0x1000>;
       interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_RGA>, <&cru HCLK_RGA>, <&cru CLK_RGA_CORE>;
       clock-names = "aclk_rga", "hclk_rga", "clk_rga";
       power-domains = <&power RK3568_PD_RGA>;
       status = "disabled";
   };
 
   ebc: ebc@fdec0000 {
       compatible = "rockchip,rk3568-ebc-tcon";
       reg = <0x0 0xfdec0000 0x0 0x5000>;
       interrupts = <GIC_SPI 17 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru HCLK_EBC>, <&cru DCLK_EBC>;
       clock-names = "hclk", "dclk";
       power-domains = <&power RK3568_PD_RGA>;
       rockchip,grf = <&grf>;
       pinctrl-names = "default";
       pinctrl-0 = <&ebc_pins>;
       status = "disabled";
   };
 
   jpegd: jpegd@fded0000 {
       compatible = "rockchip,rkv-jpeg-decoder-v1";
       reg = <0x0 0xfded0000 0x0 0x400>;
       interrupts = <GIC_SPI 62 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_JDEC>, <&cru HCLK_JDEC>;
       clock-names = "aclk_vcodec", "hclk_vcodec";
       rockchip,disable-auto-freq;
       resets = <&cru SRST_A_JDEC>, <&cru SRST_H_JDEC>;
       reset-names = "video_a", "video_h";
       iommus = <&jpegd_mmu>;
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <1>;
       rockchip,resetgroup-node = <1>;
       power-domains = <&power RK3568_PD_RGA>;
       status = "disabled";
   };
 
   jpegd_mmu: iommu@fded0480 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfded0480 0x0 0x40>;
       interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "jpegd_mmu";
       clock-names = "aclk", "iface";
       clocks = <&cru ACLK_JDEC>, <&cru HCLK_JDEC>;
       power-domains = <&power RK3568_PD_RGA>;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   vepu: vepu@fdee0000 {
       compatible = "rockchip,vpu-encoder-v2";
       reg = <0x0 0xfdee0000 0x0 0x400>;
       interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_JENC>, <&cru HCLK_JENC>;
       clock-names = "aclk_vcodec", "hclk_vcodec";
       rockchip,disable-auto-freq;
       resets = <&cru SRST_A_JENC>, <&cru SRST_H_JENC>;
       reset-names = "video_a", "video_h";
       iommus = <&vepu_mmu>;
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <2>;
       rockchip,resetgroup-node = <2>;
       power-domains = <&power RK3568_PD_RGA>;
       status = "disabled";
   };
 
   vepu_mmu: iommu@fdee0800 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdee0800 0x0 0x40>;
       interrupts = <GIC_SPI 63 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "vepu_mmu";
       clock-names = "aclk", "iface";
       clocks = <&cru ACLK_JENC>, <&cru HCLK_JENC>;
       power-domains = <&power RK3568_PD_RGA>;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   iep: iep@fdef0000 {
       compatible = "rockchip,iep-v2";
       reg = <0x0 0xfdef0000 0x0 0x500>;
       interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_IEP>, <&cru HCLK_IEP>, <&cru CLK_IEP_CORE>;
       clock-names = "aclk", "hclk", "sclk";
       resets = <&cru SRST_A_IEP>, <&cru SRST_H_IEP>,
           <&cru SRST_IEP_CORE>;
       reset-names = "rst_a", "rst_h", "rst_s";
       power-domains = <&power RK3568_PD_RGA>;
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <5>;
       rockchip,resetgroup-node = <5>;
       iommus = <&iep_mmu>;
       status = "disabled";
   };
 
   iep_mmu: iommu@fdef0800 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdef0800 0x0 0x100>;
       interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "iep_mmu";
       clocks = <&cru ACLK_IEP>, <&cru HCLK_IEP>;
       clock-names = "aclk", "iface";
       #iommu-cells = <0>;
       power-domains = <&power RK3568_PD_RGA>;
       //rockchip,disable-device-link-resume;
       status = "disabled";
   };
 
   eink: eink@fdf00000 {
       compatible = "rockchip,rk3568-eink-tcon";
       reg = <0x0 0xfdf00000 0x0 0x74>;
       interrupts = <GIC_SPI 178 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_EINK>, <&cru HCLK_EINK>;
       clock-names = "pclk", "hclk";
       status = "disabled";
   };
 
   rkvenc: rkvenc@fdf40000 {
       compatible = "rockchip,rkv-encoder-v1";
       reg = <0x0 0xfdf40000 0x0 0x400>;
       interrupts = <GIC_SPI 140 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "irq_enc";
       clocks = <&cru ACLK_RKVENC>, <&cru HCLK_RKVENC>,
           <&cru CLK_RKVENC_CORE>;
       clock-names = "aclk_vcodec", "hclk_vcodec", "clk_core";
       rockchip,normal-rates = <297000000>, <0>, <297000000>;
       resets = <&cru SRST_A_RKVENC>, <&cru SRST_H_RKVENC>,
           <&cru SRST_RKVENC_CORE>;
       reset-names = "video_a", "video_h", "video_core";
       assigned-clocks = <&cru ACLK_RKVENC>, <&cru CLK_RKVENC_CORE>;
       assigned-clock-rates = <297000000>, <297000000>;
       iommus = <&rkvenc_mmu>;
       node-name = "rkvenc";
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <3>;
       rockchip,resetgroup-node = <3>;
       power-domains = <&power RK3568_PD_RKVENC>;
       operating-points-v2 = <&rkvenc_opp_table>;
       status = "disabled";
   };
 
   rkvenc_opp_table: rkvenc-opp-table {
       compatible = "operating-points-v2";
 
       nvmem-cells = <&core_pvtm>;
       nvmem-cell-names = "pvtm";
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    91000   1
           91001    100000  2
       >;
       rockchip,pvtm-ch = <0 5>;
 
       opp-297000000 {
           opp-hz = /bits/ 64 <297000000>;
           opp-microvolt = <900000>;
           opp-microvolt-L0 = <900000>;
           opp-microvolt-L1 = <875000>;
           opp-microvolt-L2 = <875000>;
       };
       opp-400000000 {
           opp-hz = /bits/ 64 <400000000>;
           opp-microvolt = <950000>;
           opp-microvolt-L0 = <950000>;
           opp-microvolt-L1 = <925000>;
           opp-microvolt-L2 = <900000>;
       };
   };
 
   rkvenc_mmu: iommu@fdf40f00 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdf40f00 0x0 0x40>, <0x0 0xfdf40f40 0x0 0x40>;
       interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_HIGH>,
           <GIC_SPI 142 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "rkvenc_mmu0", "rkvenc_mmu1";
       clocks = <&cru ACLK_RKVENC>, <&cru HCLK_RKVENC>;
       clock-names = "aclk", "iface";
       rockchip,disable-mmu-reset;
       rockchip,enable-cmd-retry;
       #iommu-cells = <0>;
       power-domains = <&power RK3568_PD_RKVENC>;
       status = "disabled";
   };
 
   rkvdec: rkvdec@fdf80200 {
       compatible = "rockchip,rkv-decoder-rk3568", "rockchip,rkv-decoder-v2";
       reg = <0x0 0xfdf80200 0x0 0x400>, <0x0 0xfdf80100 0x0 0x100>;
       reg-names = "regs", "link";
       interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "irq_dec";
       clocks = <&cru ACLK_RKVDEC>, <&cru HCLK_RKVDEC>,
            <&cru CLK_RKVDEC_CA>, <&cru CLK_RKVDEC_CORE>,
            <&cru CLK_RKVDEC_HEVC_CA>;
       clock-names = "aclk_vcodec", "hclk_vcodec","clk_cabac",
                 "clk_core", "clk_hevc_cabac";
       rockchip,normal-rates = <297000000>, <0>, <297000000>,
                   <297000000>, <600000000>;
       rockchip,advanced-rates = <396000000>, <0>, <396000000>,
                   <396000000>, <600000000>;
       rockchip,default-max-load = <2088960>;
       resets = <&cru SRST_A_RKVDEC>, <&cru SRST_H_RKVDEC>,
            <&cru SRST_RKVDEC_CA>, <&cru SRST_RKVDEC_CORE>,
            <&cru SRST_RKVDEC_HEVC_CA>;
       assigned-clocks = <&cru ACLK_RKVDEC>, <&cru CLK_RKVDEC_CA>,
                 <&cru CLK_RKVDEC_CORE>, <&cru CLK_RKVDEC_HEVC_CA>;
       assigned-clock-rates = <297000000>, <297000000>, <297000000>, <297000000>;
       reset-names = "video_a", "video_h", "video_cabac",
                 "video_core", "video_hevc_cabac";
       power-domains = <&power RK3568_PD_RKVDEC>;
       operating-points-v2 = <&rkvdec_opp_table>;
       vdec-supply = <&vdd_logic>;
       iommus = <&rkvdec_mmu>;
       rockchip,srv = <&mpp_srv>;
       rockchip,taskqueue-node = <4>;
       rockchip,resetgroup-node = <4>;
       rockchip,sram = <&rkvdec_sram>;
       /* rcb_iova: start and size */
       rockchip,rcb-iova = <0x10000000 65536>;
       rockchip,rcb-min-width = <512>;
       rockchip,task-capacity = <16>;
       status = "disabled";
   };
 
   rkvdec_opp_table: rkvdec-opp-table {
       compatible = "operating-points-v2";
 
       nvmem-cells = <&log_leakage>, <&core_pvtm>;
       nvmem-cell-names = "leakage", "pvtm";
       rockchip,leakage-voltage-sel = <
           1   80    0
           81  254   1
       >;
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    100000  1
       >;
       rockchip,pvtm-ch = <0 5>;
 
       opp-297000000 {
           opp-hz = /bits/ 64 <297000000>;
           opp-microvolt = <900000>;
           opp-microvolt-L0 = <900000>;
           opp-microvolt-L1 = <875000>;
       };
       opp-400000000 {
           opp-hz = /bits/ 64 <400000000>;
           opp-microvolt = <900000>;
       };
   };
 
   rkvdec_mmu: iommu@fdf80800 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdf80800 0x0 0x40>, <0x0 0xfdf80840 0x0 0x40>;
       interrupts = <GIC_SPI 92 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "rkvdec_mmu";
       clocks = <&cru ACLK_RKVDEC>, <&cru HCLK_RKVDEC>;
       clock-names = "aclk", "iface";
       power-domains = <&power RK3568_PD_RKVDEC>;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   mipi_csi2_hw: mipi-csi2-hw@fdfb0000 {
       compatible = "rockchip,rk3568-mipi-csi2-hw";
       reg = <0x0 0xfdfb0000 0x0 0x10000>;
       reg-names = "csihost_regs";
       interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "csi-intr1", "csi-intr2";
       clocks = <&cru PCLK_CSI2HOST1>;
       clock-names = "pclk_csi2host";
       resets = <&cru SRST_P_CSI2HOST1>;
       reset-names = "srst_csihost_p";
       status = "disabled";
   };
 
   rkcif: rkcif@fdfe0000 {
       compatible = "rockchip,rk3568-cif";
       reg = <0x0 0xfdfe0000 0x0 0x8000>;
       reg-names = "cif_regs";
       interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "cif-intr";
 
       clocks = <&cru ACLK_VICAP>, <&cru HCLK_VICAP>,
            <&cru DCLK_VICAP>, <&cru ICLK_VICAP_G>;
       clock-names = "aclk_cif", "hclk_cif",
                 "dclk_cif", "iclk_cif_g";
       resets = <&cru SRST_A_VICAP>, <&cru SRST_H_VICAP>,
            <&cru SRST_D_VICAP>, <&cru SRST_P_VICAP>,
            <&cru SRST_I_VICAP>;
       reset-names = "rst_cif_a", "rst_cif_h",
                 "rst_cif_d", "rst_cif_p",
                 "rst_cif_i";
       assigned-clocks = <&cru DCLK_VICAP>;
       assigned-clock-rates = <300000000>;
       power-domains = <&power RK3568_PD_VI>;
       rockchip,grf = <&grf>;
       iommus = <&rkcif_mmu>;
       status = "disabled";
   };
 
   rkcif_mmu: iommu@fdfe0800 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdfe0800 0x0 0x100>;
       interrupts = <GIC_SPI 146 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "cif_mmu";
       clocks = <&cru ACLK_VICAP>, <&cru HCLK_VICAP>;
       clock-names = "aclk", "iface";
       power-domains = <&power RK3568_PD_VI>;
       rockchip,disable-mmu-reset;
       #iommu-cells = <0>;
       status = "disabled";
   };
 
   rkcif_dvp: rkcif_dvp {
       compatible = "rockchip,rkcif-dvp";
       rockchip,hw = <&rkcif>;
       status = "disabled";
   };
 
   rkcif_dvp_sditf: rkcif_dvp_sditf {
       compatible = "rockchip,rkcif-sditf";
       rockchip,cif = <&rkcif_dvp>;
       status = "disabled";
   };
 
   rkcif_mipi_lvds: rkcif_mipi_lvds {
       compatible = "rockchip,rkcif-mipi-lvds";
       rockchip,hw = <&rkcif>;
       status = "disabled";
   };
 
   rkcif_mipi_lvds_sditf: rkcif_mipi_lvds_sditf {
       compatible = "rockchip,rkcif-sditf";
       rockchip,cif = <&rkcif_mipi_lvds>;
       status = "disabled";
   };
 
   rkisp: rkisp@fdff0000 {
       compatible = "rockchip,rk3568-rkisp";
       reg = <0x0 0xfdff0000 0x0 0x10000>;
       interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 58 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "mipi_irq", "mi_irq", "isp_irq";
       clocks = <&cru ACLK_ISP>, <&cru HCLK_ISP>, <&cru CLK_ISP>;
       clock-names = "aclk_isp", "hclk_isp", "clk_isp";
       resets = <&cru SRST_ISP>, <&cru SRST_H_ISP>;
       reset-names = "isp", "isp-h";
       rockchip,grf = <&grf>;
       power-domains = <&power RK3568_PD_VI>;
       iommus = <&rkisp_mmu>;
       rockchip,iq-feature = /bits/ 64 <0x1BFBFFFE67FF>;
       status = "disabled";
   };
 
   rkisp_mmu: iommu@fdff1a00 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfdff1a00 0x0 0x100>;
       interrupts = <GIC_SPI 59 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "isp_mmu";
       clocks = <&cru ACLK_ISP>, <&cru HCLK_ISP>;
       clock-names = "aclk", "iface";
       power-domains = <&power RK3568_PD_VI>;
       #iommu-cells = <0>;
       rockchip,disable-mmu-reset;
       status = "disabled";
   };
 
   rkisp_vir0: rkisp-vir0 {
       compatible = "rockchip,rkisp-vir";
       rockchip,hw = <&rkisp>;
       status = "disabled";
   };
 
   rkisp_vir1: rkisp-vir1 {
       compatible = "rockchip,rkisp-vir";
       rockchip,hw = <&rkisp>;
       status = "disabled";
   };
 
   gmac_uio1: uio@fe010000 {
       compatible = "rockchip,uio-gmac";
       reg = <0x0 0xfe010000 0x0 0x10000>;
       rockchip,ethernet = <&gmac1>;
       status = "disabled";
   };
 
   gmac1: ethernet@fe010000 {
       compatible = "rockchip,rk3568-gmac", "snps,dwmac-4.20a";
       reg = <0x0 0xfe010000 0x0 0x10000>;
       interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "macirq", "eth_wake_irq";
       rockchip,grf = <&grf>;
       clocks = <&cru SCLK_GMAC1>, <&cru SCLK_GMAC1_RX_TX>,
            <&cru SCLK_GMAC1_RX_TX>, <&cru CLK_MAC1_REFOUT>,
            <&cru ACLK_GMAC1>, <&cru PCLK_GMAC1>,
            <&cru SCLK_GMAC1_RX_TX>, <&cru CLK_GMAC1_PTP_REF>,
            <&cru PCLK_XPCS>, <&cru CLK_XPCS_EEE>;
       clock-names = "stmmaceth", "mac_clk_rx",
                 "mac_clk_tx", "clk_mac_refout",
                 "aclk_mac", "pclk_mac",
                 "clk_mac_speed", "ptp_ref",
                 "pclk_xpcs", "clk_xpcs_eee";
       resets = <&cru SRST_A_GMAC1>;
       reset-names = "stmmaceth";
 
       snps,mixed-burst;
       snps,tso;
 
       snps,axi-config = <&gmac1_stmmac_axi_setup>;
       snps,mtl-rx-config = <&gmac1_mtl_rx_setup>;
       snps,mtl-tx-config = <&gmac1_mtl_tx_setup>;
       status = "disabled";
 
       mdio1: mdio {
           compatible = "snps,dwmac-mdio";
           #address-cells = <0x1>;
           #size-cells = <0x0>;
       };
 
       gmac1_stmmac_axi_setup: stmmac-axi-config {
           snps,wr_osr_lmt = <4>;
           snps,rd_osr_lmt = <8>;
           snps,blen = <0 0 0 0 16 8 4>;
       };
 
       gmac1_mtl_rx_setup: rx-queues-config {
           snps,rx-queues-to-use = <1>;
           queue0 {};
       };
 
       gmac1_mtl_tx_setup: tx-queues-config {
           snps,tx-queues-to-use = <1>;
           queue0 {};
       };
   };
 
   vop: vop@fe040000 {
       compatible = "rockchip,rk3568-vop";
       reg = <0x0 0xfe040000 0x0 0x3000>, <0x0 0xfe044000 0x0 0x1000>;
       reg-names = "regs", "gamma_lut";
       rockchip,grf = <&grf>;
       interrupts = <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_VOP>, <&cru HCLK_VOP>, <&cru DCLK_VOP0>, <&cru DCLK_VOP1>, <&cru DCLK_VOP2>;
       clock-names = "aclk_vop", "hclk_vop", "dclk_vp0", "dclk_vp1", "dclk_vp2";
       iommus = <&vop_mmu>;
       power-domains = <&power RK3568_PD_VO>;
       status = "disabled";
 
       vop_out: ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           vp0: port@0 {
               #address-cells = <1>;
               #size-cells = <0>;
               reg = <0>;
 
               vp0_out_dsi0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&dsi0_in_vp0>;
               };
 
               vp0_out_dsi1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&dsi1_in_vp0>;
               };
 
               vp0_out_edp: endpoint@2 {
                   reg = <2>;
                   remote-endpoint = <&edp_in_vp0>;
               };
 
               vp0_out_hdmi: endpoint@3 {
                   reg = <3>;
                   remote-endpoint = <&hdmi_in_vp0>;
               };
           };
 
           vp1: port@1 {
               #address-cells = <1>;
               #size-cells = <0>;
               reg = <1>;
 
               vp1_out_dsi0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&dsi0_in_vp1>;
               };
 
               vp1_out_dsi1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&dsi1_in_vp1>;
               };
 
               vp1_out_edp: endpoint@2 {
                   reg = <2>;
                   remote-endpoint = <&edp_in_vp1>;
               };
 
               vp1_out_hdmi: endpoint@3 {
                   reg = <3>;
                   remote-endpoint = <&hdmi_in_vp1>;
               };
 
               vp1_out_lvds: endpoint@4 {
                   reg = <4>;
                   remote-endpoint = <&lvds_in_vp1>;
               };
 
               vp1_out_lvds1: endpoint@5 {
                   reg = <5>;
                   remote-endpoint = <&lvds1_in_vp1>;
               };
           };
 
           vp2: port@2 {
               #address-cells = <1>;
               #size-cells = <0>;
 
               reg = <2>;
 
               vp2_out_lvds: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&lvds_in_vp2>;
               };
 
               vp2_out_rgb: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&rgb_in_vp2>;
               };
 
               vp2_out_lvds1: endpoint@2 {
                   reg = <2>;
                   remote-endpoint = <&lvds1_in_vp2>;
               };
           };
       };
   };
 
   vop_mmu: iommu@fe043e00 {
       compatible = "rockchip,iommu-v2";
       reg = <0x0 0xfe043e00 0x0 0x100>, <0x0 0xfe043f00 0x0 0x100>;
       interrupts = <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "vop_mmu";
       clocks = <&cru ACLK_VOP>, <&cru HCLK_VOP>;
       clock-names = "aclk", "iface";
       #iommu-cells = <0>;
       rockchip,disable-device-link-resume;
       status = "disabled";
   };
 
   dsi0: dsi@fe060000 {
       compatible = "rockchip,rk3568-mipi-dsi";
       reg = <0x0 0xfe060000 0x0 0x10000>;
       interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_DSITX_0>, <&cru HCLK_VO>;
       clock-names = "pclk", "hclk";
       resets = <&cru SRST_P_DSITX_0>;
       reset-names = "apb";
       phys = <&video_phy0>;
       phy-names = "dphy";
       power-domains = <&power RK3568_PD_VO>;
       rockchip,grf = <&grf>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           dsi0_in: port@0 {
               reg = <0>;
               #address-cells = <1>;
               #size-cells = <0>;
 
               dsi0_in_vp0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&vp0_out_dsi0>;
                   status = "disabled";
               };
 
               dsi0_in_vp1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&vp1_out_dsi0>;
                   status = "disabled";
               };
           };
       };
   };
 
   dsi1: dsi@fe070000 {
       compatible = "rockchip,rk3568-mipi-dsi";
       reg = <0x0 0xfe070000 0x0 0x10000>;
       interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_DSITX_1>, <&cru HCLK_VO>;
       clock-names = "pclk", "hclk";
       resets = <&cru SRST_P_DSITX_1>;
       reset-names = "apb";
       phys = <&video_phy1>;
       phy-names = "dphy";
       power-domains = <&power RK3568_PD_VO>;
       rockchip,grf = <&grf>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           dsi1_in: port@0 {
               reg = <0>;
               #address-cells = <1>;
               #size-cells = <0>;
 
               dsi1_in_vp0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&vp0_out_dsi1>;
                   status = "disabled";
               };
 
               dsi1_in_vp1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&vp1_out_dsi1>;
                   status = "disabled";
               };
           };
       };
   };
 
   hdmi: hdmi@fe0a0000 {
       compatible = "rockchip,rk3568-dw-hdmi";
       reg = <0x0 0xfe0a0000 0x0 0x20000>;
       interrupts = <GIC_SPI 45 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_HDMI_HOST>,
            <&cru CLK_HDMI_SFR>,
            <&cru CLK_HDMI_CEC>,
            <&pmucru PLL_HPLL>,
            <&cru HCLK_VOP>;
       clock-names = "iahb", "isfr", "cec", "ref", "hclk";
       power-domains = <&power RK3568_PD_VO>;
       reg-io-width = <4>;
       rockchip,grf = <&grf>;
       #sound-dai-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&hdmitx_scl &hdmitx_sda &hdmitxm0_cec>;
       status = "disabled";
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           port@0 {
               reg = <0>;
               #address-cells = <1>;
               #size-cells = <0>;
 
               hdmi_in_vp0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&vp0_out_hdmi>;
                   status = "disabled";
               };
 
               hdmi_in_vp1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&vp1_out_hdmi>;
                   status = "disabled";
               };
           };
       };
   };
 
   edp: edp@fe0c0000 {
       compatible = "rockchip,rk3568-edp";
       reg = <0x0 0xfe0c0000 0x0 0x10000>;
       interrupts = <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&pmucru XIN_OSC0_EDPPHY_G>, <&cru PCLK_EDP_CTRL>,
            <&cru CLK_EDP_200M>, <&cru HCLK_VO>;
       clock-names = "dp", "pclk", "spdif", "hclk";
       resets = <&cru SRST_EDP_24M>, <&cru SRST_P_EDP_CTRL>;
       reset-names = "dp", "apb";
       phys = <&edp_phy>;
       phy-names = "dp";
       power-domains = <&power RK3568_PD_VO>;
       status = "disabled";
 
       ports {
           #address-cells = <1>;
           #size-cells = <0>;
 
           edp_in: port@0 {
               reg = <0>;
               #address-cells = <1>;
               #size-cells = <0>;
 
               edp_in_vp0: endpoint@0 {
                   reg = <0>;
                   remote-endpoint = <&vp0_out_edp>;
                   status = "disabled";
               };
 
               edp_in_vp1: endpoint@1 {
                   reg = <1>;
                   remote-endpoint = <&vp1_out_edp>;
                   status = "disabled";
               };
           };
       };
   };
 
   nocp_cpu: nocp-cpu@fe102000 {
       compatible = "rockchip,rk3568-nocp";
       reg = <0x0 0xfe102000 0x0 0x400>;
   };
 
   nocp_gpu_vpu_rga_venc: nocp-gpu-vpu-rga-venc@fe102400 {
       compatible = "rockchip,rk3568-nocp";
       reg = <0x0 0xfe102400 0x0 0x400>;
   };
 
   nocp_npu_vdec: nocp-vdec@fe102800 {
       compatible = "rockchip,rk3568-nocp";
       reg = <0x0 0xfe102800 0x0 0x400>;
   };
 
   nocp_vi_usb_peri_pipe: nocp-vi-usb-peri-pipe@fe102c00 {
       compatible = "rockchip,rk3568-nocp";
       reg = <0x0 0xfe102c00 0x0 0x400>;
   };
 
   nocp_vo: nocp-vo@fe103000 {
       compatible = "rockchip,rk3568-nocp";
       reg = <0x0 0xfe103000 0x0 0x400>;
   };
 
   qos_gpu: qos@fe128000 {
       compatible = "syscon";
       reg = <0x0 0xfe128000 0x0 0x20>;
   };
 
   qos_rkvenc_rd_m0: qos@fe138080 {
       compatible = "syscon";
       reg = <0x0 0xfe138080 0x0 0x20>;
   };
 
   qos_rkvenc_rd_m1: qos@fe138100 {
       compatible = "syscon";
       reg = <0x0 0xfe138100 0x0 0x20>;
   };
 
   qos_rkvenc_wr_m0: qos@fe138180 {
       compatible = "syscon";
       reg = <0x0 0xfe138180 0x0 0x20>;
   };
 
   qos_isp: qos@fe148000 {
       compatible = "syscon";
       reg = <0x0 0xfe148000 0x0 0x20>;
   };
 
   qos_vicap0: qos@fe148080 {
       compatible = "syscon";
       reg = <0x0 0xfe148080 0x0 0x20>;
   };
 
   qos_vicap1: qos@fe148100 {
       compatible = "syscon";
       reg = <0x0 0xfe148100 0x0 0x20>;
   };
 
   qos_vpu: qos@fe150000 {
       compatible = "syscon";
       reg = <0x0 0xfe150000 0x0 0x20>;
   };
 
   qos_ebc: qos@fe158000 {
       compatible = "syscon";
       reg = <0x0 0xfe158000 0x0 0x20>;
   };
 
   qos_iep: qos@fe158100 {
       compatible = "syscon";
       reg = <0x0 0xfe158100 0x0 0x20>;
   };
 
   qos_jpeg_dec: qos@fe158180 {
       compatible = "syscon";
       reg = <0x0 0xfe158180 0x0 0x20>;
   };
 
   qos_jpeg_enc: qos@fe158200 {
       compatible = "syscon";
       reg = <0x0 0xfe158200 0x0 0x20>;
   };
 
   qos_rga_rd: qos@fe158280 {
       compatible = "syscon";
       reg = <0x0 0xfe158280 0x0 0x20>;
   };
 
   qos_rga_wr: qos@fe158300 {
       compatible = "syscon";
       reg = <0x0 0xfe158300 0x0 0x20>;
   };
 
   qos_npu: qos@fe180000 {
       compatible = "syscon";
       reg = <0x0 0xfe180000 0x0 0x20>;
   };
 
   qos_pcie2x1: qos@fe190000 {
       compatible = "syscon";
       reg = <0x0 0xfe190000 0x0 0x20>;
   };
 
   qos_pcie3x1: qos@fe190080 {
       compatible = "syscon";
       reg = <0x0 0xfe190080 0x0 0x20>;
   };
 
   qos_pcie3x2: qos@fe190100 {
       compatible = "syscon";
       reg = <0x0 0xfe190100 0x0 0x20>;
   };
 
   qos_sata0: qos@fe190200 {
       compatible = "syscon";
       reg = <0x0 0xfe190200 0x0 0x20>;
   };
 
   qos_sata1: qos@fe190280 {
       compatible = "syscon";
       reg = <0x0 0xfe190280 0x0 0x20>;
   };
 
   qos_sata2: qos@fe190300 {
       compatible = "syscon";
       reg = <0x0 0xfe190300 0x0 0x20>;
   };
 
   qos_usb3_0: qos@fe190380 {
       compatible = "syscon";
       reg = <0x0 0xfe190380 0x0 0x20>;
   };
 
   qos_usb3_1: qos@fe190400 {
       compatible = "syscon";
       reg = <0x0 0xfe190400 0x0 0x20>;
   };
 
   qos_rkvdec: qos@fe198000 {
       compatible = "syscon";
       reg = <0x0 0xfe198000 0x0 0x20>;
   };
 
   qos_hdcp: qos@fe1a8000 {
       compatible = "syscon";
       reg = <0x0 0xfe1a8000 0x0 0x20>;
   };
 
   qos_vop_m0: qos@fe1a8080 {
       compatible = "syscon";
       reg = <0x0 0xfe1a8080 0x0 0x20>;
   };
 
   qos_vop_m1: qos@fe1a8100 {
       compatible = "syscon";
       reg = <0x0 0xfe1a8100 0x0 0x20>;
   };
 
   sdmmc2: dwmmc@fe000000 {
       compatible = "rockchip,rk3568-dw-mshc",
                "rockchip,rk3288-dw-mshc";
       reg = <0x0 0xfe000000 0x0 0x4000>;
       interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
       max-frequency = <150000000>;
       clocks = <&cru HCLK_SDMMC2>, <&cru CLK_SDMMC2>,
            <&cru SCLK_SDMMC2_DRV>, <&cru SCLK_SDMMC2_SAMPLE>;
       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
       fifo-depth = <0x100>;
       resets = <&cru SRST_SDMMC2>;
       reset-names = "reset";
       status = "disabled";
   };
 
   dfi: dfi@fe230000 {
       reg = <0x00 0xfe230000 0x00 0x400>;
       compatible = "rockchip,rk3568-dfi";
       rockchip,pmugrf = <&pmugrf>;
       status = "disabled";
   };
 
   dmc: dmc {
       compatible = "rockchip,rk3568-dmc";
       interrupts = <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "complete";
       devfreq-events = <&dfi>, <&nocp_cpu>;
       clocks = <&scmi_clk 3>;
       clock-names = "dmc_clk";
       operating-points-v2 = <&dmc_opp_table>;
       vop-bw-dmc-freq = <
       /* min_bw(MB/s) max_bw(MB/s) freq(KHz) */
           0    286    324000
           287    99999    528000
       >;
       vop-frame-bw-dmc-freq = <
       /* min_bw(MB/s) max_bw(MB/s) freq(KHz) */
           0    620    324000
           621    99999    780000
       >;
       cpu-bw-dmc-freq = <
       /* min_bw(MB/s) max_bw(MB/s) freq(KHz) */
           0    350    324000
           351    400    528000
           401    99999    780000
       >;
       upthreshold = <40>;
       downdifferential = <20>;
       system-status-level = <
           /*system status         freq level*/
           SYS_STATUS_NORMAL       DMC_FREQ_LEVEL_MID_HIGH
           SYS_STATUS_REBOOT       DMC_FREQ_LEVEL_HIGH
           SYS_STATUS_SUSPEND      DMC_FREQ_LEVEL_LOW
           SYS_STATUS_VIDEO_4K     DMC_FREQ_LEVEL_MID_HIGH
           SYS_STATUS_VIDEO_4K_10B DMC_FREQ_LEVEL_MID_HIGH
           SYS_STATUS_BOOST        DMC_FREQ_LEVEL_HIGH
           SYS_STATUS_ISP          DMC_FREQ_LEVEL_HIGH
           SYS_STATUS_PERFORMANCE  DMC_FREQ_LEVEL_HIGH
           SYS_STATUS_DUALVIEW     DMC_FREQ_LEVEL_HIGH
       >;
       auto-min-freq = <324000>;
       auto-freq-en = <1>;
       #cooling-cells = <2>;
       status = "disabled";
   };
 
   dmc_fsp: dmc-fsp {
       compatible = "rockchip,rk3568-dmc-fsp";
 
       debug_print_level = <0>;
       ddr3_params = <&ddr3_params>;
       ddr4_params = <&ddr4_params>;
       lpddr3_params = <&lpddr3_params>;
       lpddr4_params = <&lpddr4_params>;
       lpddr4x_params = <&lpddr4x_params>;
 
       status = "okay";
   };
 
   dmc_opp_table: dmc-opp-table {
       compatible = "operating-points-v2";
 
       mbist-vmin = <825000 900000 950000>;
       nvmem-cells = <&log_leakage>, <&core_pvtm>, <&mbist_vmin>, <&dmc_opp_info>,
                 <&specification_serial_number>, <&remark_spec_serial_number>;
       nvmem-cell-names = "leakage", "pvtm", "mbist-vmin", "opp-info",
                  "specification_serial_number", "remark_spec_serial_number";
       rockchip,supported-hw;
       rockchip,max-volt = <1000000>;
       rockchip,temp-hysteresis = <5000>;
       rockchip,low-temp = <0>;
       rockchip,low-temp-adjust-volt = <
           /* MHz    MHz    uV */
              0      1560   75000
       >;
       rockchip,leakage-voltage-sel = <
           1   80    0
           81  254   1
       >;
       rockchip,pvtm-voltage-sel = <
           0        84000   0
           84001    100000  1
       >;
       rockchip,pvtm-ch = <0 5>;
 
       /* RK3568 dmc OPPs */
       opp-1560000000 {
           opp-supported-hw = <0xf9 0xffff>;
           opp-hz = /bits/ 64 <1560000000>;
           opp-microvolt = <900000 900000 1000000>;
           opp-microvolt-L0 = <900000 900000 1000000>;
           opp-microvolt-L1 = <875000 875000 1000000>;
       };
 
       /* RK3568J/M dmc OPPs */
       opp-j-m-1560000000 {
           opp-supported-hw = <0x06 0xffff>;
           opp-hz = /bits/ 64 <1560000000>;
           opp-microvolt = <875000 875000 1000000>;
       };
   };
 
   pcie2x1: pcie@fe260000 {
       compatible = "rockchip,rk3568-pcie", "snps,dw-pcie";
       #address-cells = <3>;
       #size-cells = <2>;
       bus-range = <0x0 0xf>;
       clocks = <&cru ACLK_PCIE20_MST>, <&cru ACLK_PCIE20_SLV>,
            <&cru ACLK_PCIE20_DBI>, <&cru PCLK_PCIE20>,
            <&cru CLK_PCIE20_AUX_NDFT>;
       clock-names = "aclk_mst", "aclk_slv",
                 "aclk_dbi", "pclk", "aux";
       device_type = "pci";
       interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 74 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "sys", "pmc", "msg", "legacy", "err";
       #interrupt-cells = <1>;
       interrupt-map-mask = <0 0 0 7>;
       interrupt-map = <0 0 0 1 &pcie2x1_intc 0>,
               <0 0 0 2 &pcie2x1_intc 1>,
               <0 0 0 3 &pcie2x1_intc 2>,
               <0 0 0 4 &pcie2x1_intc 3>;
       linux,pci-domain = <0>;
       num-ib-windows = <6>;
       num-viewport = <8>;
       num-ob-windows = <2>;
       max-link-speed = <2>;
       msi-map = <0x0 &its 0x0 0x1000>;
       num-lanes = <1>;
       phys = <&combphy2_psq PHY_TYPE_PCIE>;
       phy-names = "pcie-phy";
       power-domains = <&power RK3568_PD_PIPE>;
       ranges = <0x00000800 0x0 0xf4000000 0x0 0xf4000000 0x0 0x100000
             0x81000000 0x0 0xf4100000 0x0 0xf4100000 0x0 0x100000
             0x82000000 0x0 0xf4200000 0x0 0xf4200000 0x0 0x1e00000
             0xc3000000 0x3 0x00000000 0x3 0x00000000 0x0 0x40000000>;
       reg = <0x3 0xc0000000 0x0 0x400000>,
             <0x0 0xfe260000 0x0 0x10000>;
       reg-names = "pcie-dbi", "pcie-apb";
       resets = <&cru SRST_PCIE20_POWERUP>;
       reset-names = "pipe";
       status = "disabled";
 
       pcie2x1_intc: legacy-interrupt-controller {
           interrupt-controller;
           #address-cells = <0>;
           #interrupt-cells = <1>;
           interrupt-parent = <&gic>;
           interrupts = <GIC_SPI 72 IRQ_TYPE_EDGE_RISING>;
       };
   };
 
   pcie3x1: pcie@fe270000 {
       compatible = "rockchip,rk3568-pcie", "snps,dw-pcie";
       #address-cells = <3>;
       #size-cells = <2>;
       bus-range = <0x10 0x1f>;
       clocks = <&cru ACLK_PCIE30X1_MST>, <&cru ACLK_PCIE30X1_SLV>,
            <&cru ACLK_PCIE30X1_DBI>, <&cru PCLK_PCIE30X1>,
            <&cru CLK_PCIE30X1_AUX_NDFT>;
       clock-names = "aclk_mst", "aclk_slv",
                 "aclk_dbi", "pclk", "aux";
       device_type = "pci";
       interrupts = <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "sys", "pmc", "msg", "legacy", "err";
       #interrupt-cells = <1>;
       interrupt-map-mask = <0 0 0 7>;
       interrupt-map = <0 0 0 1 &pcie3x1_intc 0>,
               <0 0 0 2 &pcie3x1_intc 1>,
               <0 0 0 3 &pcie3x1_intc 2>,
               <0 0 0 4 &pcie3x1_intc 3>;
       linux,pci-domain = <1>;
       num-ib-windows = <6>;
       num-ob-windows = <2>;
       num-viewport = <8>;
       max-link-speed = <3>;
       msi-map = <0x1000 &its 0x1000 0x1000>;
       num-lanes = <1>;
       phys = <&pcie30phy>;
       phy-names = "pcie-phy";
       power-domains = <&power RK3568_PD_PIPE>;
       ranges = <0x00000800 0x0 0xf2000000 0x0 0xf2000000 0x0 0x100000
             0x81000000 0x0 0xf2100000 0x0 0xf2100000 0x0 0x100000
             0x82000000 0x0 0xf2200000 0x0 0xf2200000 0x0 0x1e00000
             0xc3000000 0x3 0x40000000 0x3 0x40000000 0x0 0x40000000>;
       reg = <0x3 0xc0400000 0x0 0x400000>,
             <0x0 0xfe270000 0x0 0x10000>;
       reg-names = "pcie-dbi", "pcie-apb";
       resets = <&cru SRST_PCIE30X1_POWERUP>;
       reset-names = "pipe";
       /* rockchip,bifurcation; lane1 when using 1+1 */
       status = "disabled";
 
       pcie3x1_intc: legacy-interrupt-controller {
           interrupt-controller;
           #address-cells = <0>;
           #interrupt-cells = <1>;
           interrupt-parent = <&gic>;
           interrupts = <GIC_SPI 157 IRQ_TYPE_EDGE_RISING>;
       };
   };
 
   pcie3x2: pcie@fe280000 {
       compatible = "rockchip,rk3568-pcie", "snps,dw-pcie";
       #address-cells = <3>;
       #size-cells = <2>;
       bus-range = <0x20 0x2f>;
       clocks = <&cru ACLK_PCIE30X2_MST>, <&cru ACLK_PCIE30X2_SLV>,
            <&cru ACLK_PCIE30X2_DBI>, <&cru PCLK_PCIE30X2>,
            <&cru CLK_PCIE30X2_AUX_NDFT>;
       clock-names = "aclk_mst", "aclk_slv",
                 "aclk_dbi", "pclk", "aux";
       device_type = "pci";
       interrupts = <GIC_SPI 165 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 164 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 163 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 162 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "sys", "pmc", "msg", "legacy", "err";
       #interrupt-cells = <1>;
       interrupt-map-mask = <0 0 0 7>;
       interrupt-map = <0 0 0 1 &pcie3x2_intc 0>,
               <0 0 0 2 &pcie3x2_intc 1>,
               <0 0 0 3 &pcie3x2_intc 2>,
               <0 0 0 4 &pcie3x2_intc 3>;
       linux,pci-domain = <2>;
       num-ib-windows = <6>;
       num-viewport = <8>;
       num-ob-windows = <2>;
       max-link-speed = <3>;
       msi-map = <0x2000 &its 0x2000 0x1000>;
       num-lanes = <2>;
       phys = <&pcie30phy>;
       phy-names = "pcie-phy";
       power-domains = <&power RK3568_PD_PIPE>;
       ranges = <0x00000800 0x0 0xf0000000 0x0 0xf0000000 0x0 0x100000
             0x81000000 0x0 0xf0100000 0x0 0xf0100000 0x0 0x100000
             0x82000000 0x0 0xf0200000 0x0 0xf0200000 0x0 0x1e00000
             0xc3000000 0x3 0x80000000 0x3 0x80000000 0x0 0x40000000>;
       reg = <0x3 0xc0800000 0x0 0x400000>,
             <0x0 0xfe280000 0x0 0x10000>;
       reg-names = "pcie-dbi", "pcie-apb";
       resets = <&cru SRST_PCIE30X2_POWERUP>;
       reset-names = "pipe";
       /* rockchip,bifurcation; lane0 when using 1+1 */
       status = "disabled";
 
       pcie3x2_intc: legacy-interrupt-controller {
           interrupt-controller;
           #address-cells = <0>;
           #interrupt-cells = <1>;
           interrupt-parent = <&gic>;
           interrupts = <GIC_SPI 162 IRQ_TYPE_EDGE_RISING>;
       };
   };
 
   gmac_uio0: uio@fe2a0000 {
       compatible = "rockchip,uio-gmac";
       reg = <0x0 0xfe2a0000 0x0 0x10000>;
       rockchip,ethernet = <&gmac0>;
       status = "disabled";
   };
 
   gmac0: ethernet@fe2a0000 {
       compatible = "rockchip,rk3568-gmac", "snps,dwmac-4.20a";
       reg = <0x0 0xfe2a0000 0x0 0x10000>;
       interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
       interrupt-names = "macirq", "eth_wake_irq";
       rockchip,grf = <&grf>;
       clocks = <&cru SCLK_GMAC0>, <&cru SCLK_GMAC0_RX_TX>,
            <&cru SCLK_GMAC0_RX_TX>, <&cru CLK_MAC0_REFOUT>,
            <&cru ACLK_GMAC0>, <&cru PCLK_GMAC0>,
            <&cru SCLK_GMAC0_RX_TX>, <&cru CLK_GMAC0_PTP_REF>,
            <&cru PCLK_XPCS>, <&cru CLK_XPCS_EEE>;
       clock-names = "stmmaceth", "mac_clk_rx",
                 "mac_clk_tx", "clk_mac_refout",
                 "aclk_mac", "pclk_mac",
                 "clk_mac_speed", "ptp_ref",
                 "pclk_xpcs", "clk_xpcs_eee";
       resets = <&cru SRST_A_GMAC0>;
       reset-names = "stmmaceth";
 
       snps,mixed-burst;
       snps,tso;
 
       snps,axi-config = <&gmac0_stmmac_axi_setup>;
       snps,mtl-rx-config = <&gmac0_mtl_rx_setup>;
       snps,mtl-tx-config = <&gmac0_mtl_tx_setup>;
       status = "disabled";
 
       mdio0: mdio {
           compatible = "snps,dwmac-mdio";
           #address-cells = <0x1>;
           #size-cells = <0x0>;
       };
 
       gmac0_stmmac_axi_setup: stmmac-axi-config {
           snps,wr_osr_lmt = <4>;
           snps,rd_osr_lmt = <8>;
           snps,blen = <0 0 0 0 16 8 4>;
       };
 
       gmac0_mtl_rx_setup: rx-queues-config {
           snps,rx-queues-to-use = <1>;
           queue0 {};
       };
 
       gmac0_mtl_tx_setup: tx-queues-config {
           snps,tx-queues-to-use = <1>;
           queue0 {};
       };
   };
 
   sdmmc0: dwmmc@fe2b0000 {
       compatible = "rockchip,rk3568-dw-mshc",
                "rockchip,rk3288-dw-mshc";
       reg = <0x0 0xfe2b0000 0x0 0x4000>;
       interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
       max-frequency = <150000000>;
       clocks = <&cru HCLK_SDMMC0>, <&cru CLK_SDMMC0>,
            <&cru SCLK_SDMMC0_DRV>, <&cru SCLK_SDMMC0_SAMPLE>;
       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
       fifo-depth = <0x100>;
       resets = <&cru SRST_SDMMC0>;
       reset-names = "reset";
       status = "disabled";
   };
 
   sdmmc1: dwmmc@fe2c0000 {
       compatible = "rockchip,rk3568-dw-mshc",
                "rockchip,rk3288-dw-mshc";
       reg = <0x0 0xfe2c0000 0x0 0x4000>;
       interrupts = <GIC_SPI 99 IRQ_TYPE_LEVEL_HIGH>;
       max-frequency = <150000000>;
       clocks = <&cru HCLK_SDMMC1>, <&cru CLK_SDMMC1>,
            <&cru SCLK_SDMMC1_DRV>, <&cru SCLK_SDMMC1_SAMPLE>;
       clock-names = "biu", "ciu", "ciu-drive", "ciu-sample";
       fifo-depth = <0x100>;
       resets = <&cru SRST_SDMMC1>;
       reset-names = "reset";
       status = "disabled";
   };
 
   sfc: spi@fe300000 {
       compatible = "rockchip,sfc";
       reg = <0x0 0xfe300000 0x0 0x4000>;
       interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_SFC>, <&cru HCLK_SFC>;
       clock-names = "clk_sfc", "hclk_sfc";
       assigned-clocks = <&cru SCLK_SFC>;
       assigned-clock-rates = <100000000>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   sdhci: sdhci@fe310000 {
       compatible = "rockchip,rk3568-dwcmshc", "rockchip,dwcmshc-sdhci";
       reg = <0x0 0xfe310000 0x0 0x10000>;
       interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>;
       assigned-clocks = <&cru BCLK_EMMC>, <&cru TCLK_EMMC>,
                 <&cru CCLK_EMMC>;
       assigned-clock-rates = <200000000>, <24000000>, <200000000>;
       clocks = <&cru CCLK_EMMC>, <&cru HCLK_EMMC>,
            <&cru ACLK_EMMC>, <&cru BCLK_EMMC>,
            <&cru TCLK_EMMC>;
       clock-names = "core", "bus", "axi", "block", "timer";
       resets = <&cru SRST_C_EMMC>, <&cru SRST_H_EMMC>,
            <&cru SRST_A_EMMC>, <&cru SRST_B_EMMC>,
            <&cru SRST_T_EMMC>;
       reset-names = "core", "bus", "axi", "block", "timer";
       status = "disabled";
   };
 
   nandc0: nandc@fe330000 {
       compatible = "rockchip,rk-nandc-v9";
       reg = <0x0 0xfe330000 0x0 0x4000>;
       interrupts = <GIC_SPI 70 IRQ_TYPE_LEVEL_HIGH>;
       nandc_id = <0>;
       clocks = <&cru NCLK_NANDC>, <&cru HCLK_NANDC>;
       clock-names = "clk_nandc", "hclk_nandc";
       status = "disabled";
   };
 
   crypto: crypto@fe380000 {
       compatible = "rockchip,rk3568-crypto";
       reg = <0x0 0xfe380000 0x0 0x4000>;
       interrupts = <GIC_SPI 4 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_CRYPTO_NS>, <&cru HCLK_CRYPTO_NS>,
           <&cru CLK_CRYPTO_NS_CORE>, <&cru CLK_CRYPTO_NS_PKA>;
       clock-names = "aclk", "hclk", "sclk", "apb_pclk";
       assigned-clocks = <&cru CLK_CRYPTO_NS_CORE>;
       assigned-clock-rates = <200000000>;
       resets = <&cru SRST_CRYPTO_NS_CORE>;
       reset-names = "crypto-rst";
       status = "disabled";
   };
 
   rng: rng@fe388000 {
       compatible = "rockchip,cryptov2-rng";
       reg = <0x0 0xfe388000 0x0 0x2000>;
       clocks = <&cru CLK_TRNG_NS>, <&cru HCLK_TRNG_NS>;
       clock-names = "clk_trng", "hclk_trng";
       resets = <&cru SRST_TRNG_NS>;
       reset-names = "reset";
       status = "disabled";
   };
 
   otp: otp@fe38c000 {
       compatible = "rockchip,rk3568-otp";
       reg = <0x0 0xfe38c000 0x0 0x4000>;
       #address-cells = <1>;
       #size-cells = <1>;
       clocks = <&cru CLK_OTPC_NS_USR>, <&cru CLK_OTPC_NS_SBPI>,
            <&cru PCLK_OTPC_NS>, <&cru PCLK_OTPPHY>;
       clock-names = "usr", "sbpi", "apb", "phy";
       resets = <&cru SRST_OTPPHY>;
       reset-names = "otp_phy";
 
       /* Data cells */
       cpu_code: cpu-code@2 {
           reg = <0x02 0x2>;
       };
       specification_serial_number: specification-serial-number@7 {
           reg = <0x07 0x1>;
           bits = <0 5>;
       };
       otp_cpu_version: cpu-version@8 {
           reg = <0x08 0x1>;
           bits = <3 3>;
       };
       mbist_vmin: mbist-vmin@9 {
           reg = <0x09 0x1>;
           bits = <0 4>;
       };
       otp_id: id@a {
           reg = <0x0a 0x10>;
       };
       cpu_leakage: cpu-leakage@1a {
           reg = <0x1a 0x1>;
       };
       log_leakage: log-leakage@1b {
           reg = <0x1b 0x1>;
       };
       npu_leakage: npu-leakage@1c {
           reg = <0x1c 0x1>;
       };
       gpu_leakage: gpu-leakage@1d {
           reg = <0x1d 0x1>;
       };
       core_pvtm:core-pvtm@2a {
           reg = <0x2a 0x2>;
       };
       cpu_tsadc_trim_l: cpu-tsadc-trim-l@2e {
           reg = <0x2e 0x1>;
       };
       cpu_tsadc_trim_h: cpu-tsadc-trim-h@2f {
           reg = <0x2f 0x1>;
           bits = <0 4>;
       };
       gpu_tsadc_trim_l: npu-tsadc-trim-l@30 {
           reg = <0x30 0x1>;
       };
       gpu_tsadc_trim_h: npu-tsadc-trim-h@31 {
           reg = <0x31 0x1>;
           bits = <0 4>;
       };
       tsadc_trim_base_frac: tsadc-trim-base-frac@31 {
           reg = <0x31 0x1>;
           bits = <4 4>;
       };
       tsadc_trim_base: tsadc-trim-base@32 {
           reg = <0x32 0x1>;
       };
       cpu_opp_info: cpu-opp-info@36 {
           reg = <0x36 0x6>;
       };
       gpu_opp_info: gpu-opp-info@3c {
           reg = <0x3c 0x6>;
       };
       npu_opp_info: npu-opp-info@42 {
           reg = <0x42 0x6>;
       };
       dmc_opp_info: dmc-opp-info@48 {
           reg = <0x48 0x6>;
       };
       remark_spec_serial_number: remark-spec-serial-number@56 {
           reg = <0x56 0x1>;
           bits = <0 5>;
       };
   };
 
   i2s0_8ch: i2s@fe400000 {
       compatible = "rockchip,rk3568-i2s-tdm";
       reg = <0x0 0xfe400000 0x0 0x1000>;
       interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru MCLK_I2S0_8CH_TX>, <&cru MCLK_I2S0_8CH_RX>, <&cru HCLK_I2S0_8CH>;
       clock-names = "mclk_tx", "mclk_rx", "hclk";
       dmas = <&dmac1 0>;
       dma-names = "tx";
       resets = <&cru SRST_M_I2S0_8CH_TX>, <&cru SRST_M_I2S0_8CH_RX>;
       reset-names = "tx-m", "rx-m";
       rockchip,cru = <&cru>;
       rockchip,grf = <&grf>;
       rockchip,playback-only;
       #sound-dai-cells = <0>;
       status = "disabled";
   };
 
   i2s1_8ch: i2s@fe410000 {
       compatible = "rockchip,rk3568-i2s-tdm";
       reg = <0x0 0xfe410000 0x0 0x1000>;
       interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru MCLK_I2S1_8CH_TX>, <&cru MCLK_I2S1_8CH_RX>, <&cru HCLK_I2S1_8CH>;
       clock-names = "mclk_tx", "mclk_rx", "hclk";
       dmas = <&dmac1 2>, <&dmac1 3>;
       dma-names = "tx", "rx";
       resets = <&cru SRST_M_I2S1_8CH_TX>, <&cru SRST_M_I2S1_8CH_RX>;
       reset-names = "tx-m", "rx-m";
       rockchip,cru = <&cru>;
       rockchip,grf = <&grf>;
       #sound-dai-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2s1m0_sclktx
                &i2s1m0_sclkrx
                &i2s1m0_lrcktx
                &i2s1m0_lrckrx
                &i2s1m0_sdi0
                &i2s1m0_sdi1
                &i2s1m0_sdi2
                &i2s1m0_sdi3
                &i2s1m0_sdo0
                &i2s1m0_sdo1
                &i2s1m0_sdo2
                &i2s1m0_sdo3>;
       status = "disabled";
   };
 
   i2s2_2ch: i2s@fe420000 {
       compatible = "rockchip,rk3568-i2s-tdm";
       reg = <0x0 0xfe420000 0x0 0x1000>;
       interrupts = <GIC_SPI 54 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru MCLK_I2S2_2CH>, <&cru MCLK_I2S2_2CH>, <&cru HCLK_I2S2_2CH>;
       clock-names = "mclk_tx", "mclk_rx", "hclk";
       dmas = <&dmac1 4>, <&dmac1 5>;
       dma-names = "tx", "rx";
       rockchip,cru = <&cru>;
       rockchip,grf = <&grf>;
       rockchip,clk-trcm = <1>;
       #sound-dai-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2s2m0_sclktx
                &i2s2m0_lrcktx
                &i2s2m0_sdi
                &i2s2m0_sdo>;
       status = "disabled";
   };
 
   i2s3_2ch: i2s@fe430000 {
       compatible = "rockchip,rk3568-i2s-tdm";
       reg = <0x0 0xfe430000 0x0 0x1000>;
       interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru MCLK_I2S3_2CH_TX>, <&cru MCLK_I2S3_2CH_RX>, <&cru HCLK_I2S3_2CH>;
       clock-names = "mclk_tx", "mclk_rx", "hclk";
       dmas = <&dmac1 6>, <&dmac1 7>;
       dma-names = "tx", "rx";
       resets = <&cru SRST_M_I2S3_2CH_TX>, <&cru SRST_M_I2S3_2CH_RX>;
       reset-names = "tx-m", "rx-m";
       rockchip,cru = <&cru>;
       rockchip,grf = <&grf>;
       rockchip,clk-trcm = <1>;
       #sound-dai-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2s3m0_sclk
                &i2s3m0_lrck
                &i2s3m0_sdi
                &i2s3m0_sdo>;
       status = "disabled";
   };
 
   pdm: pdm@fe440000 {
       compatible = "rockchip,rk3568-pdm", "rockchip,pdm";
       reg = <0x0 0xfe440000 0x0 0x1000>;
       clocks = <&cru MCLK_PDM>, <&cru HCLK_PDM>;
       clock-names = "pdm_clk", "pdm_hclk";
       dmas = <&dmac1 9>;
       dma-names = "rx";
       pinctrl-names = "default";
       pinctrl-0 = <&pdmm0_clk
                &pdmm0_clk1
                &pdmm0_sdi0
                &pdmm0_sdi1
                &pdmm0_sdi2
                &pdmm0_sdi3>;
       #sound-dai-cells = <0>;
       status = "disabled";
   };
 
   vad: vad@fe450000 {
       compatible = "rockchip,rk3568-vad";
       reg = <0x0 0xfe450000 0x0 0x10000>;
       reg-names = "vad";
       clocks = <&cru HCLK_VAD>;
       clock-names = "hclk";
       interrupts = <GIC_SPI 137 IRQ_TYPE_LEVEL_HIGH>;
       rockchip,audio-src = <0>;
       rockchip,det-channel = <0>;
       rockchip,mode = <0>;
       #sound-dai-cells = <0>;
       status = "disabled";
   };
 
   spdif_8ch: spdif@fe460000 {
       compatible = "rockchip,rk3568-spdif";
       reg = <0x0 0xfe460000 0x0 0x1000>;
       interrupts = <GIC_SPI 102 IRQ_TYPE_LEVEL_HIGH>;
       dmas = <&dmac1 1>;
       dma-names = "tx";
       clock-names = "mclk", "hclk";
       clocks = <&cru MCLK_SPDIF_8CH>, <&cru HCLK_SPDIF_8CH>;
       #sound-dai-cells = <0>;
       pinctrl-names = "default";
       pinctrl-0 = <&spdifm0_tx>;
       status = "disabled";
   };
 
   audpwm: audpwm@fe470000 {
       compatible = "rockchip,rk3568-audio-pwm", "rockchip,audio-pwm-v1";
       reg = <0x0 0xfe470000 0x0 0x1000>;
       clocks = <&cru SCLK_AUDPWM>, <&cru HCLK_AUDPWM>;
       clock-names = "clk", "hclk";
       dmas = <&dmac1 8>;
       dma-names = "tx";
       #sound-dai-cells = <0>;
       rockchip,sample-width-bits = <11>;
       rockchip,interpolat-points = <1>;
       status = "disabled";
   };
 
   dig_acodec: codec-digital@fe478000 {
       compatible = "rockchip,rk3568-codec-digital", "rockchip,codec-digital-v1";
       reg = <0x0 0xfe478000 0x0 0x1000>;
       clocks = <&cru CLK_ACDCDIG_ADC>, <&cru CLK_ACDCDIG_DAC>,
            <&cru CLK_ACDCDIG_I2C>, <&cru HCLK_ACDCDIG>;
       clock-names = "adc", "dac", "i2c", "pclk";
       pinctrl-names = "default";
       pinctrl-0 = <&acodec_pins>;
       resets = <&cru SRST_ACDCDIG>;
       reset-names = "reset" ;
       rockchip,grf = <&grf>;
       #sound-dai-cells = <0>;
       status = "disabled";
   };
 
   dmac0: dmac@fe530000 {
       compatible = "arm,pl330", "arm,primecell";
       reg = <0x0 0xfe530000 0x0 0x4000>;
       interrupts = <GIC_SPI 14 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 13 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_BUS>;
       clock-names = "apb_pclk";
       #dma-cells = <1>;
       arm,pl330-periph-burst;
   };
 
   dmac1: dmac@fe550000 {
       compatible = "arm,pl330", "arm,primecell";
       reg = <0x0 0xfe550000 0x0 0x4000>;
       interrupts = <GIC_SPI 16 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 15 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru ACLK_BUS>;
       clock-names = "apb_pclk";
       #dma-cells = <1>;
       arm,pl330-periph-burst;
   };
 
   scr: rkscr@fe560000 {
       compatible = "rockchip-scr";
       reg = <0x0 0xfe560000 0x0 0x10000>;
       interrupts = <GIC_SPI 97 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&scr_pins>;
       clocks = <&cru PCLK_SCR>;
       clock-names = "g_pclk_sim_card";
       status = "disabled";
   };
 
   can0: can@fe570000 {
       compatible = "rockchip,rk3568-can-2.0";
       reg = <0x0 0xfe570000 0x0 0x1000>;
       interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru CLK_CAN0>, <&cru PCLK_CAN0>;
       clock-names = "baudclk", "apb_pclk";
       resets = <&cru SRST_CAN0>, <&cru SRST_P_CAN0>;
       reset-names = "can", "can-apb";
       tx-fifo-depth = <1>;
       rx-fifo-depth = <6>;
       status = "disabled";
   };
 
   can1: can@fe580000 {
       compatible = "rockchip,rk3568-can-2.0";
       reg = <0x0 0xfe580000 0x0 0x1000>;
       interrupts = <GIC_SPI 2 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru CLK_CAN1>, <&cru PCLK_CAN1>;
       clock-names = "baudclk", "apb_pclk";
       resets = <&cru SRST_CAN1>, <&cru SRST_P_CAN1>;
       reset-names = "can", "can-apb";
       tx-fifo-depth = <1>;
       rx-fifo-depth = <6>;
       status = "disabled";
   };
 
   can2: can@fe590000 {
       compatible = "rockchip,rk3568-can-2.0";
       reg = <0x0 0xfe590000 0x0 0x1000>;
       interrupts = <GIC_SPI 3 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru CLK_CAN2>, <&cru PCLK_CAN2>;
       clock-names = "baudclk", "apb_pclk";
       resets = <&cru SRST_CAN2>, <&cru SRST_P_CAN2>;
       reset-names = "can", "can-apb";
       tx-fifo-depth = <1>;
       rx-fifo-depth = <6>;
       status = "disabled";
   };
 
   i2c1: i2c@fe5a0000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfe5a0000 0x0 0x1000>;
       clocks = <&cru CLK_I2C1>, <&cru PCLK_I2C1>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c1_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   i2c2: i2c@fe5b0000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfe5b0000 0x0 0x1000>;
       clocks = <&cru CLK_I2C2>, <&cru PCLK_I2C2>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 48 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c2m0_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   i2c3: i2c@fe5c0000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfe5c0000 0x0 0x1000>;
       clocks = <&cru CLK_I2C3>, <&cru PCLK_I2C3>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c3m0_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   i2c4: i2c@fe5d0000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfe5d0000 0x0 0x1000>;
       clocks = <&cru CLK_I2C4>, <&cru PCLK_I2C4>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 50 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c4m0_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   i2c5: i2c@fe5e0000 {
       compatible = "rockchip,rk3399-i2c";
       reg = <0x0 0xfe5e0000 0x0 0x1000>;
       clocks = <&cru CLK_I2C5>, <&cru PCLK_I2C5>;
       clock-names = "i2c", "pclk";
       interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
       pinctrl-names = "default";
       pinctrl-0 = <&i2c5m0_xfer>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
   };
 
   rktimer: timer@fe5f0000 {
       compatible = "rockchip,rk3568-timer", "rockchip,rk3288-timer";
       reg = <0x0 0xfe5f0000 0x0 0x1000>;
       interrupts = <GIC_SPI 109 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_TIMER>, <&cru CLK_TIMER0>;
       clock-names = "pclk", "timer";
   };
 
   wdt: watchdog@fe600000 {
       compatible = "snps,dw-wdt";
       reg = <0x0 0xfe600000 0x0 0x100>;
       clocks = <&cru TCLK_WDT_NS>, <&cru PCLK_WDT_NS>;
       clock-names = "tclk", "pclk";
       interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>;
       status = "okay";
   };
 
   spi0: spi@fe610000 {
       compatible = "rockchip,rk3066-spi";
       reg = <0x0 0xfe610000 0x0 0x1000>;
       interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
       #address-cells = <1>;
       #size-cells = <0>;
       clocks = <&cru CLK_SPI0>, <&cru PCLK_SPI0>;
       clock-names = "spiclk", "apb_pclk";
       dmas = <&dmac0 20>, <&dmac0 21>;
       dma-names = "tx", "rx";
       pinctrl-names = "default", "high_speed";
       pinctrl-0 = <&spi0m0_cs0 &spi0m0_cs1 &spi0m0_pins>;
       pinctrl-1 = <&spi0m0_cs0 &spi0m0_cs1 &spi0m0_pins_hs>;
       num-cs = <2>;
       status = "disabled";
   };
 
   spi1: spi@fe620000 {
       compatible = "rockchip,rk3066-spi";
       reg = <0x0 0xfe620000 0x0 0x1000>;
       interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>;
       #address-cells = <1>;
       #size-cells = <0>;
       clocks = <&cru CLK_SPI1>, <&cru PCLK_SPI1>;
       clock-names = "spiclk", "apb_pclk";
       dmas = <&dmac0 22>, <&dmac0 23>;
       dma-names = "tx", "rx";
       pinctrl-names = "default", "high_speed";
       pinctrl-0 = <&spi1m0_cs0 &spi1m0_cs1 &spi1m0_pins>;
       pinctrl-1 = <&spi1m0_cs0 &spi1m0_cs1 &spi1m0_pins_hs>;
       num-cs = <2>;
       status = "disabled";
   };
 
   spi2: spi@fe630000 {
       compatible = "rockchip,rk3066-spi";
       reg = <0x0 0xfe630000 0x0 0x1000>;
       interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
       #address-cells = <1>;
       #size-cells = <0>;
       clocks = <&cru CLK_SPI2>, <&cru PCLK_SPI2>;
       clock-names = "spiclk", "apb_pclk";
       dmas = <&dmac0 24>, <&dmac0 25>;
       dma-names = "tx", "rx";
       pinctrl-names = "default", "high_speed";
       pinctrl-0 = <&spi2m0_cs0 &spi2m0_cs1 &spi2m0_pins>;
       pinctrl-1 = <&spi2m0_cs0 &spi2m0_cs1 &spi2m0_pins_hs>;
       num-cs = <2>;
       status = "disabled";
   };
 
   spi3: spi@fe640000 {
       compatible = "rockchip,rk3066-spi";
       reg = <0x0 0xfe640000 0x0 0x1000>;
       interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;
       #address-cells = <1>;
       #size-cells = <0>;
       clocks = <&cru CLK_SPI3>, <&cru PCLK_SPI3>;
       clock-names = "spiclk", "apb_pclk";
       dmas = <&dmac0 26>, <&dmac0 27>;
       dma-names = "tx", "rx";
       pinctrl-names = "default", "high_speed";
       pinctrl-0 = <&spi3m0_cs0 &spi3m0_cs1 &spi3m0_pins>;
       pinctrl-1 = <&spi3m0_cs0 &spi3m0_cs1 &spi3m0_pins_hs>;
       num-cs = <2>;
       status = "disabled";
   };
 
   uart1: serial@fe650000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe650000 0x0 0x100>;
       interrupts = <GIC_SPI 117 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART1>, <&cru PCLK_UART1>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 2>, <&dmac0 3>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart1m0_xfer>;
       status = "disabled";
   };
 
   uart2: serial@fe660000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe660000 0x0 0x100>;
       interrupts = <GIC_SPI 118 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART2>, <&cru PCLK_UART2>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 4>, <&dmac0 5>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart2m0_xfer>;
       status = "disabled";
   };
 
   uart3: serial@fe670000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe670000 0x0 0x100>;
       interrupts = <GIC_SPI 119 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART3>, <&cru PCLK_UART3>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 6>, <&dmac0 7>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart3m0_xfer>;
       status = "disabled";
   };
 
   uart4: serial@fe680000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe680000 0x0 0x100>;
       interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART4>, <&cru PCLK_UART4>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 8>, <&dmac0 9>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart4m0_xfer>;
       status = "disabled";
   };
 
   uart5: serial@fe690000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe690000 0x0 0x100>;
       interrupts = <GIC_SPI 121 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART5>, <&cru PCLK_UART5>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 10>, <&dmac0 11>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart5m0_xfer>;
       status = "disabled";
   };
 
   uart6: serial@fe6a0000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe6a0000 0x0 0x100>;
       interrupts = <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART6>, <&cru PCLK_UART6>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 12>, <&dmac0 13>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart6m0_xfer>;
       status = "disabled";
   };
 
   uart7: serial@fe6b0000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe6b0000 0x0 0x100>;
       interrupts = <GIC_SPI 123 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART7>, <&cru PCLK_UART7>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 14>, <&dmac0 15>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart7m0_xfer>;
       status = "disabled";
   };
 
   uart8: serial@fe6c0000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe6c0000 0x0 0x100>;
       interrupts = <GIC_SPI 124 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART8>, <&cru PCLK_UART8>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 16>, <&dmac0 17>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart8m0_xfer>;
       status = "disabled";
   };
 
   uart9: serial@fe6d0000 {
       compatible = "rockchip,rk3568-uart", "snps,dw-apb-uart";
       reg = <0x0 0xfe6d0000 0x0 0x100>;
       interrupts = <GIC_SPI 125 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru SCLK_UART9>, <&cru PCLK_UART9>;
       clock-names = "baudclk", "apb_pclk";
       reg-shift = <2>;
       reg-io-width = <4>;
       dmas = <&dmac0 18>, <&dmac0 19>;
       pinctrl-names = "default";
       pinctrl-0 = <&uart9m0_xfer>;
       status = "disabled";
   };
 
   pwm4: pwm@fe6e0000 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6e0000 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm4_pins>;
       clocks = <&cru CLK_PWM1>, <&cru PCLK_PWM1>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm5: pwm@fe6e0010 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6e0010 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm5_pins>;
       clocks = <&cru CLK_PWM1>, <&cru PCLK_PWM1>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm6: pwm@fe6e0020 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6e0020 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm6_pins>;
       clocks = <&cru CLK_PWM1>, <&cru PCLK_PWM1>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm7: pwm@fe6e0030 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6e0030 0x0 0x10>;
       interrupts = <GIC_SPI 83 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm7_pins>;
       clocks = <&cru CLK_PWM1>, <&cru PCLK_PWM1>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm8: pwm@fe6f0000 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6f0000 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm8m0_pins>;
       clocks = <&cru CLK_PWM2>, <&cru PCLK_PWM2>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm9: pwm@fe6f0010 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6f0010 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm9m0_pins>;
       clocks = <&cru CLK_PWM2>, <&cru PCLK_PWM2>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm10: pwm@fe6f0020 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6f0020 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm10m0_pins>;
       clocks = <&cru CLK_PWM2>, <&cru PCLK_PWM2>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm11: pwm@fe6f0030 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe6f0030 0x0 0x10>;
       interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm11m0_pins>;
       clocks = <&cru CLK_PWM2>, <&cru PCLK_PWM2>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm12: pwm@fe700000 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe700000 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm12m0_pins>;
       clocks = <&cru CLK_PWM3>, <&cru PCLK_PWM3>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm13: pwm@fe700010 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe700010 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm13m0_pins>;
       clocks = <&cru CLK_PWM3>, <&cru PCLK_PWM3>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm14: pwm@fe700020 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe700020 0x0 0x10>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm14m0_pins>;
       clocks = <&cru CLK_PWM3>, <&cru PCLK_PWM3>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   pwm15: pwm@fe700030 {
       compatible = "rockchip,rk3568-pwm", "rockchip,rk3328-pwm";
       reg = <0x0 0xfe700030 0x0 0x10>;
       interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
       #pwm-cells = <3>;
       pinctrl-names = "active";
       pinctrl-0 = <&pwm15m0_pins>;
       clocks = <&cru CLK_PWM3>, <&cru PCLK_PWM3>;
       clock-names = "pwm", "pclk";
       status = "disabled";
   };
 
   tsadc: tsadc@fe710000 {
       compatible = "rockchip,rk3568-tsadc";
       reg = <0x0 0xfe710000 0x0 0x100>;
       interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_HIGH>;
       rockchip,grf = <&grf>;
       clocks = <&cru CLK_TSADC>, <&cru PCLK_TSADC>;
       clock-names = "tsadc", "apb_pclk";
       assigned-clocks = <&cru CLK_TSADC_TSEN>, <&cru CLK_TSADC>;
       assigned-clock-rates = <17000000>, <700000>;
       resets = <&cru SRST_TSADC>, <&cru SRST_P_TSADC>,
            <&cru SRST_TSADCPHY>;
       reset-names = "tsadc", "tsadc-apb", "tsadc-phy";
       #thermal-sensor-cells = <1>;
       nvmem-cells = <&tsadc_trim_base>, <&tsadc_trim_base_frac>;
       nvmem-cell-names = "trim_base", "trim_base_frac";
       rockchip,hw-tshut-temp = <120000>;
       rockchip,hw-tshut-mode = <0>; /* tshut mode 0:CRU 1:GPIO */
       rockchip,hw-tshut-polarity = <0>; /* tshut polarity 0:LOW 1:HIGH */
       pinctrl-names = "gpio", "otpout";
       pinctrl-0 = <&tsadc_gpio_func>;
       pinctrl-1 = <&tsadc_shutorg>;
       #address-cells = <1>;
       #size-cells = <0>;
       status = "disabled";
 
       tsadc@0 {
           reg = <0>;
           nvmem-cells = <&cpu_tsadc_trim_l>, <&cpu_tsadc_trim_h>;
           nvmem-cell-names = "trim_l", "trim_h";
       };
       tsadc@1 {
           reg = <1>;
           nvmem-cells = <&gpu_tsadc_trim_l>, <&gpu_tsadc_trim_h>;
           nvmem-cell-names = "trim_l", "trim_h";
       };
   };
 
   saradc: saradc@fe720000 {
       compatible = "rockchip,rk3568-saradc", "rockchip,rk3399-saradc";
       reg = <0x0 0xfe720000 0x0 0x100>;
       interrupts = <GIC_SPI 93 IRQ_TYPE_LEVEL_HIGH>;
       #io-channel-cells = <1>;
       clocks = <&cru CLK_SARADC>, <&cru PCLK_SARADC>;
       clock-names = "saradc", "apb_pclk";
       resets = <&cru SRST_P_SARADC>;
       reset-names = "saradc-apb";
       status = "disabled";
   };
 
   mailbox: mailbox@fe780000 {
       compatible = "rockchip,rk3568-mailbox",
                "rockchip,rk3368-mailbox";
       reg = <0x0 0xfe780000 0x0 0x1000>;
       interrupts = <GIC_SPI 183 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 184 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 185 IRQ_TYPE_LEVEL_HIGH>,
                <GIC_SPI 186 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&cru PCLK_MAILBOX>;
       clock-names = "pclk_mailbox";
       #mbox-cells = <1>;
       status = "disabled";
   };
 
   combphy0_us: phy@fe820000 {
       compatible = "rockchip,rk3568-naneng-combphy";
       reg = <0x0 0xfe820000 0x0 0x100>;
       #phy-cells = <1>;
       clocks = <&pmucru CLK_PCIEPHY0_REF>, <&cru PCLK_PIPEPHY0>,
            <&cru PCLK_PIPE>;
       clock-names = "refclk", "apbclk", "pipe_clk";
       assigned-clocks = <&pmucru CLK_PCIEPHY0_REF>;
       assigned-clock-rates = <100000000>;
       resets = <&cru SRST_P_PIPEPHY0>, <&cru SRST_PIPEPHY0>;
       reset-names = "combphy-apb", "combphy";
       rockchip,pipe-grf = <&pipegrf>;
       rockchip,pipe-phy-grf = <&pipe_phy_grf0>;
       status = "disabled";
   };
 
   combphy1_usq: phy@fe830000 {
       compatible = "rockchip,rk3568-naneng-combphy";
       reg = <0x0 0xfe830000 0x0 0x100>;
       #phy-cells = <1>;
       clocks = <&pmucru CLK_PCIEPHY1_REF>, <&cru PCLK_PIPEPHY1>,
            <&cru PCLK_PIPE>;
       clock-names = "refclk", "apbclk", "pipe_clk";
       assigned-clocks = <&pmucru CLK_PCIEPHY1_REF>;
       assigned-clock-rates = <100000000>;
       resets = <&cru SRST_P_PIPEPHY1>, <&cru SRST_PIPEPHY1>;
       reset-names = "combphy-apb", "combphy";
       rockchip,pipe-grf = <&pipegrf>;
       rockchip,pipe-phy-grf = <&pipe_phy_grf1>;
       status = "disabled";
   };
 
   combphy2_psq: phy@fe840000 {
       compatible = "rockchip,rk3568-naneng-combphy";
       reg = <0x0 0xfe840000 0x0 0x100>;
       #phy-cells = <1>;
       clocks = <&pmucru CLK_PCIEPHY2_REF>, <&cru PCLK_PIPEPHY2>,
            <&cru PCLK_PIPE>;
       clock-names = "refclk", "apbclk", "pipe_clk";
       assigned-clocks = <&pmucru CLK_PCIEPHY2_REF>;
       assigned-clock-rates = <100000000>;
       resets = <&cru SRST_P_PIPEPHY2>, <&cru SRST_PIPEPHY2>;
       reset-names = "combphy-apb", "combphy";
       rockchip,pipe-grf = <&pipegrf>;
       rockchip,pipe-phy-grf = <&pipe_phy_grf2>;
       status = "disabled";
   };
 
   video_phy0: phy@fe850000 {
       compatible = "rockchip,rk3568-dsi-dphy", "rockchip,rk3568-video-phy";
       reg = <0x0 0xfe850000  0x0 0x10000>,
             <0x0 0xfe060000 0x0 0x10000>;
       reg-names = "phy", "host";
       clocks = <&pmucru CLK_MIPIDSIPHY0_REF>,
            <&cru PCLK_MIPIDSIPHY0>, <&cru PCLK_DSITX_0>;
       clock-names = "ref", "pclk", "pclk_host";
       #clock-cells = <0>;
       resets = <&cru SRST_P_MIPIDSIPHY0>;
       reset-names = "apb";
       power-domains = <&power RK3568_PD_VO>;
       #phy-cells = <0>;
       status = "disabled";
   };
 
   video_phy1: phy@fe860000 {
       compatible = "rockchip,rk3568-dsi-dphy", "rockchip,rk3568-video-phy";
       reg = <0x0 0xfe860000  0x0 0x10000>,
             <0x0 0xfe070000 0x0 0x10000>;
       reg-names = "phy", "host";
       clocks = <&pmucru CLK_MIPIDSIPHY1_REF>,
            <&cru PCLK_MIPIDSIPHY1>, <&cru PCLK_DSITX_1>;
       clock-names = "ref", "pclk", "pclk_host";
       #clock-cells = <0>;
       resets = <&cru SRST_P_MIPIDSIPHY1>;
       reset-names = "apb";
       power-domains = <&power RK3568_PD_VO>;
       #phy-cells = <0>;
       status = "disabled";
   };
 
   csi2_dphy_hw: csi2-dphy-hw@fe870000 {
       compatible = "rockchip,rk3568-csi2-dphy-hw";
       reg = <0x0 0xfe870000 0x0 0x1000>;
       clocks = <&cru PCLK_MIPICSIPHY>;
       clock-names = "pclk";
       rockchip,grf = <&grf>;
       status = "disabled";
   };
 
   /*
    * csi2_dphy0: used for csi2 dphy full mode,
              is mutually exclusive with
              csi2_dphy1 and csi2_dphy2
    * csi2_dphy1: used for csi2 dphy split mode,
              physical lanes use lane0 and lane1,
              can be used with csi2_dphy2  parallel
    * csi2_dphy2: used for csi2 dphy split mode,
              physical lanes use lane2 and lane3,
              can be used with csi2_dphy1  parallel
    */
   csi2_dphy0: csi2-dphy0 {
       compatible = "rockchip,rk3568-csi2-dphy";
       rockchip,hw = <&csi2_dphy_hw>;
       status = "disabled";
   };
 
   csi2_dphy1: csi2-dphy1 {
       compatible = "rockchip,rk3568-csi2-dphy";
       rockchip,hw = <&csi2_dphy_hw>;
       status = "disabled";
   };
 
   csi2_dphy2: csi2-dphy2 {
       compatible = "rockchip,rk3568-csi2-dphy";
       rockchip,hw = <&csi2_dphy_hw>;
       status = "disabled";
   };
 
   usb2phy0: usb2-phy@fe8a0000 {
       compatible = "rockchip,rk3568-usb2phy";
       reg = <0x0 0xfe8a0000 0x0 0x10000>;
       interrupts = <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&pmucru CLK_USBPHY0_REF>;
       clock-names = "phyclk";
       #clock-cells = <0>;
       assigned-clocks = <&cru USB480M>;
       assigned-clock-parents = <&usb2phy0>;
       clock-output-names = "usb480m_phy";
       rockchip,usbgrf = <&usb2phy0_grf>;
       status = "disabled";
 
       u2phy0_host: host-port {
           #phy-cells = <0>;
           status = "disabled";
       };
 
       u2phy0_otg: otg-port {
           #phy-cells = <0>;
           status = "disabled";
       };
   };
 
   usb2phy1: usb2-phy@fe8b0000 {
       compatible = "rockchip,rk3568-usb2phy";
       reg = <0x0 0xfe8b0000 0x0 0x10000>;
       interrupts = <GIC_SPI 136 IRQ_TYPE_LEVEL_HIGH>;
       clocks = <&pmucru CLK_USBPHY1_REF>;
       clock-names = "phyclk";
       #clock-cells = <0>;
       rockchip,usbgrf = <&usb2phy1_grf>;
       status = "disabled";
 
       u2phy1_host: host-port {
           #phy-cells = <0>;
           status = "disabled";
       };
 
       u2phy1_otg: otg-port {
           #phy-cells = <0>;
           status = "disabled";
       };
   };
 
   pcie30phy: phy@fe8c0000 {
       compatible = "rockchip,rk3568-pcie3-phy";
       reg = <0x0 0xfe8c0000 0x0 0x20000>;
       #phy-cells = <0>;
       clocks = <&pmucru CLK_PCIE30PHY_REF_M>, <&pmucru CLK_PCIE30PHY_REF_N>,
            <&cru PCLK_PCIE30PHY>;
       clock-names = "refclk_m", "refclk_n", "pclk";
       resets = <&cru SRST_PCIE30PHY>;
       reset-names = "phy";
       rockchip,phy-grf = <&pcie30_phy_grf>;
       status = "disabled";
   };
 
   pinctrl: pinctrl {
       compatible = "rockchip,rk3568-pinctrl";
       rockchip,grf = <&grf>;
       rockchip,pmu = <&pmugrf>;
       #address-cells = <2>;
       #size-cells = <2>;
       ranges;
 
       gpio0: gpio0@fdd60000 {
           compatible = "rockchip,gpio-bank";
           reg = <0x0 0xfdd60000 0x0 0x100>;
           interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
           clocks = <&pmucru PCLK_GPIO0>, <&pmucru DBCLK_GPIO0>;
 
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       gpio1: gpio1@fe740000 {
           compatible = "rockchip,gpio-bank";
           reg = <0x0 0xfe740000 0x0 0x100>;
           interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
           clocks = <&cru PCLK_GPIO1>, <&cru DBCLK_GPIO1>;
 
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       gpio2: gpio2@fe750000 {
           compatible = "rockchip,gpio-bank";
           reg = <0x0 0xfe750000 0x0 0x100>;
           interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
           clocks = <&cru PCLK_GPIO2>, <&cru DBCLK_GPIO2>;
 
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       gpio3: gpio3@fe760000 {
           compatible = "rockchip,gpio-bank";
           reg = <0x0 0xfe760000 0x0 0x100>;
           interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
           clocks = <&cru PCLK_GPIO3>, <&cru DBCLK_GPIO3>;
 
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
 
       gpio4: gpio4@fe770000 {
           compatible = "rockchip,gpio-bank";
           reg = <0x0 0xfe770000 0x0 0x100>;
           interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
           clocks = <&cru PCLK_GPIO4>, <&cru DBCLK_GPIO4>;
 
           gpio-controller;
           #gpio-cells = <2>;
           interrupt-controller;
           #interrupt-cells = <2>;
       };
   };
};
 
#include "rk3568-pinctrl.dtsi"