aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/boot/dts/dra7-l4.dtsi
blob: 0c6f26605506011f6390277e7b533a0e3fa0513d (plain)
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
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
&l4_cfg {						/* 0x4a000000 */
	compatible = "ti,dra7-l4-cfg", "simple-bus";
	reg = <0x4a000000 0x800>,
	      <0x4a000800 0x800>,
	      <0x4a001000 0x1000>;
	reg-names = "ap", "la", "ia0";
	#address-cells = <1>;
	#size-cells = <1>;
	ranges = <0x00000000 0x4a000000 0x100000>,	/* segment 0 */
		 <0x00100000 0x4a100000 0x100000>,	/* segment 1 */
		 <0x00200000 0x4a200000 0x100000>;	/* segment 2 */

	segment@0 {					/* 0x4a000000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00000000 0x000800>,	/* ap 0 */
			 <0x00000800 0x00000800 0x000800>,	/* ap 1 */
			 <0x00001000 0x00001000 0x001000>,	/* ap 2 */
			 <0x00002000 0x00002000 0x002000>,	/* ap 3 */
			 <0x00004000 0x00004000 0x001000>,	/* ap 4 */
			 <0x00005000 0x00005000 0x001000>,	/* ap 5 */
			 <0x00006000 0x00006000 0x001000>,	/* ap 6 */
			 <0x00008000 0x00008000 0x002000>,	/* ap 7 */
			 <0x0000a000 0x0000a000 0x001000>,	/* ap 8 */
			 <0x00056000 0x00056000 0x001000>,	/* ap 9 */
			 <0x00057000 0x00057000 0x001000>,	/* ap 10 */
			 <0x0005e000 0x0005e000 0x002000>,	/* ap 11 */
			 <0x00060000 0x00060000 0x001000>,	/* ap 12 */
			 <0x00080000 0x00080000 0x008000>,	/* ap 13 */
			 <0x00088000 0x00088000 0x001000>,	/* ap 14 */
			 <0x000a0000 0x000a0000 0x008000>,	/* ap 15 */
			 <0x000a8000 0x000a8000 0x001000>,	/* ap 16 */
			 <0x000d9000 0x000d9000 0x001000>,	/* ap 17 */
			 <0x000da000 0x000da000 0x001000>,	/* ap 18 */
			 <0x000dd000 0x000dd000 0x001000>,	/* ap 19 */
			 <0x000de000 0x000de000 0x001000>,	/* ap 20 */
			 <0x000e0000 0x000e0000 0x001000>,	/* ap 21 */
			 <0x000e1000 0x000e1000 0x001000>,	/* ap 22 */
			 <0x000f4000 0x000f4000 0x001000>,	/* ap 23 */
			 <0x000f5000 0x000f5000 0x001000>,	/* ap 24 */
			 <0x000f6000 0x000f6000 0x001000>,	/* ap 25 */
			 <0x000f7000 0x000f7000 0x001000>,	/* ap 26 */
			 <0x00090000 0x00090000 0x008000>,	/* ap 59 */
			 <0x00098000 0x00098000 0x001000>;	/* ap 60 */

		target-module@2000 {			/* 0x4a002000, ap 3 08.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x2000 0x4>;
			reg-names = "rev";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2000 0x2000>;

			scm: scm@0 {
				compatible = "ti,dra7-scm-core", "simple-bus";
				reg = <0 0x2000>;
				#address-cells = <1>;
				#size-cells = <1>;
				ranges = <0 0 0x2000>;

				scm_conf: scm_conf@0 {
					compatible = "syscon", "simple-bus";
					reg = <0x0 0x1400>;
					#address-cells = <1>;
					#size-cells = <1>;
					ranges = <0 0x0 0x1400>;

					pbias_regulator: pbias_regulator@e00 {
						compatible = "ti,pbias-dra7", "ti,pbias-omap";
						reg = <0xe00 0x4>;
						syscon = <&scm_conf>;
						pbias_mmc_reg: pbias_mmc_omap5 {
							regulator-name = "pbias_mmc_omap5";
							regulator-min-microvolt = <1800000>;
							regulator-max-microvolt = <3300000>;
						};
					};

					phy_gmii_sel: phy-gmii-sel {
						compatible = "ti,dra7xx-phy-gmii-sel";
						reg = <0x554 0x4>;
						#phy-cells = <1>;
					};

					scm_conf_clocks: clocks {
						#address-cells = <1>;
						#size-cells = <0>;
					};
				};

				dra7_pmx_core: pinmux@1400 {
					compatible = "ti,dra7-padconf",
						     "pinctrl-single";
					reg = <0x1400 0x0468>;
					#address-cells = <1>;
					#size-cells = <0>;
					#pinctrl-cells = <1>;
					#interrupt-cells = <1>;
					interrupt-controller;
					pinctrl-single,register-width = <32>;
					pinctrl-single,function-mask = <0x3fffffff>;
				};

				scm_conf1: scm_conf@1c04 {
					compatible = "syscon";
					reg = <0x1c04 0x0020>;
					#syscon-cells = <2>;
				};

				scm_conf_pcie: scm_conf@1c24 {
					compatible = "syscon";
					reg = <0x1c24 0x0024>;
				};

				sdma_xbar: dma-router@b78 {
					compatible = "ti,dra7-dma-crossbar";
					reg = <0xb78 0xfc>;
					#dma-cells = <1>;
					dma-requests = <205>;
					ti,dma-safe-map = <0>;
					dma-masters = <&sdma>;
				};

				edma_xbar: dma-router@c78 {
					compatible = "ti,dra7-dma-crossbar";
					reg = <0xc78 0x7c>;
					#dma-cells = <2>;
					dma-requests = <204>;
					ti,dma-safe-map = <0>;
					dma-masters = <&edma>;
				};
			};
		};

		target-module@5000 {			/* 0x4a005000, ap 5 10.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x5000 0x4>;
			reg-names = "rev";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5000 0x1000>;

			cm_core_aon: cm_core_aon@0 {
				compatible = "ti,dra7-cm-core-aon",
					      "simple-bus";
				#address-cells = <1>;
				#size-cells = <1>;
				reg = <0 0x2000>;
				ranges = <0 0 0x2000>;

				cm_core_aon_clocks: clocks {
					#address-cells = <1>;
					#size-cells = <0>;
				};

				cm_core_aon_clockdomains: clockdomains {
				};
			};
		};

		target-module@8000 {			/* 0x4a008000, ap 7 0e.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x8000 0x4>;
			reg-names = "rev";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x8000 0x2000>;

			cm_core: cm_core@0 {
				compatible = "ti,dra7-cm-core", "simple-bus";
				#address-cells = <1>;
				#size-cells = <1>;
				reg = <0 0x3000>;
				ranges = <0 0 0x3000>;

				cm_core_clocks: clocks {
					#address-cells = <1>;
					#size-cells = <0>;
				};

				cm_core_clockdomains: clockdomains {
				};
			};
		};

		target-module@56000 {			/* 0x4a056000, ap 9 02.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x56000 0x4>,
			      <0x5602c 0x4>,
			      <0x56028 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_EMUFREE |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): core_pwrdm, dma_clkdm */
			clocks = <&dma_clkctrl DRA7_DMA_DMA_SYSTEM_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x56000 0x1000>;

			sdma: dma-controller@0 {
				compatible = "ti,omap4430-sdma", "ti,omap-sdma";
				reg = <0x0 0x1000>;
				interrupts = <GIC_SPI 7 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 9 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 10 IRQ_TYPE_LEVEL_HIGH>;
				#dma-cells = <1>;
				dma-channels = <32>;
				dma-requests = <127>;
			};
		};

		target-module@5e000 {			/* 0x4a05e000, ap 11 1a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5e000 0x2000>;
		};

		target-module@80000 {			/* 0x4a080000, ap 13 20.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x80000 0x4>,
			      <0x80010 0x4>,
			      <0x80014 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_OCP2SCP1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x80000 0x8000>;

			ocp2scp@0 {
				compatible = "ti,omap-ocp2scp";
				#address-cells = <1>;
				#size-cells = <1>;
				ranges = <0 0 0x8000>;
				reg = <0x0 0x20>;

				usb2_phy1: phy@4000 {
					compatible = "ti,dra7x-usb2", "ti,omap-usb2";
					reg = <0x4000 0x400>;
					syscon-phy-power = <&scm_conf 0x300>;
					clocks = <&usb_phy1_always_on_clk32k>,
						 <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS1_CLKCTRL 8>;
					clock-names =	"wkupclk",
							"refclk";
					#phy-cells = <0>;
				};

				usb2_phy2: phy@5000 {
					compatible = "ti,dra7x-usb2-phy2",
						     "ti,omap-usb2";
					reg = <0x5000 0x400>;
					syscon-phy-power = <&scm_conf 0xe74>;
					clocks = <&usb_phy2_always_on_clk32k>,
						 <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS2_CLKCTRL 8>;
					clock-names =	"wkupclk",
							"refclk";
					#phy-cells = <0>;
				};

				usb3_phy1: phy@4400 {
					compatible = "ti,omap-usb3";
					reg = <0x4400 0x80>,
					      <0x4800 0x64>,
					      <0x4c00 0x40>;
					reg-names = "phy_rx", "phy_tx", "pll_ctrl";
					syscon-phy-power = <&scm_conf 0x370>;
					clocks = <&usb_phy3_always_on_clk32k>,
						 <&sys_clkin1>,
						 <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS1_CLKCTRL 8>;
					clock-names =	"wkupclk",
							"sysclk",
							"refclk";
					#phy-cells = <0>;
				};
			};
		};

		target-module@90000 {			/* 0x4a090000, ap 59 42.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x90000 0x4>,
			      <0x90010 0x4>,
			      <0x90014 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_OCP2SCP3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x90000 0x8000>;

			ocp2scp@0 {
				compatible = "ti,omap-ocp2scp";
				#address-cells = <1>;
				#size-cells = <1>;
				ranges = <0 0 0x8000>;
				reg = <0x0 0x20>;

				pcie1_phy: pciephy@4000 {
					compatible = "ti,phy-pipe3-pcie";
					reg = <0x4000 0x80>, /* phy_rx */
					      <0x4400 0x64>; /* phy_tx */
					reg-names = "phy_rx", "phy_tx";
					syscon-phy-power = <&scm_conf_pcie 0x1c>;
					syscon-pcs = <&scm_conf_pcie 0x10>;
					clocks = <&dpll_pcie_ref_ck>,
						 <&dpll_pcie_ref_m2ldo_ck>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE1_CLKCTRL 8>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE1_CLKCTRL 9>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE1_CLKCTRL 10>,
						 <&optfclk_pciephy_div>,
						 <&sys_clkin1>;
					clock-names = "dpll_ref", "dpll_ref_m2",
						      "wkupclk", "refclk",
						      "div-clk", "phy-div", "sysclk";
					#phy-cells = <0>;
				};

				pcie2_phy: pciephy@5000 {
					compatible = "ti,phy-pipe3-pcie";
					reg = <0x5000 0x80>, /* phy_rx */
					      <0x5400 0x64>; /* phy_tx */
					reg-names = "phy_rx", "phy_tx";
					syscon-phy-power = <&scm_conf_pcie 0x20>;
					syscon-pcs = <&scm_conf_pcie 0x10>;
					clocks = <&dpll_pcie_ref_ck>,
						 <&dpll_pcie_ref_m2ldo_ck>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE2_CLKCTRL 8>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE2_CLKCTRL 9>,
						 <&pcie_clkctrl DRA7_PCIE_PCIE2_CLKCTRL 10>,
						 <&optfclk_pciephy_div>,
						 <&sys_clkin1>;
					clock-names = "dpll_ref", "dpll_ref_m2",
						      "wkupclk", "refclk",
						      "div-clk", "phy-div", "sysclk";
					#phy-cells = <0>;
					status = "disabled";
				};

				sata_phy: phy@6000 {
					compatible = "ti,phy-pipe3-sata";
					reg = <0x6000 0x80>, /* phy_rx */
					      <0x6400 0x64>, /* phy_tx */
					      <0x6800 0x40>; /* pll_ctrl */
					reg-names = "phy_rx", "phy_tx", "pll_ctrl";
					syscon-phy-power = <&scm_conf 0x374>;
					clocks = <&sys_clkin1>,
						 <&l3init_clkctrl DRA7_L3INIT_SATA_CLKCTRL 8>;
					clock-names = "sysclk", "refclk";
					syscon-pllreset = <&scm_conf 0x3fc>;
					#phy-cells = <0>;
				};
			};
		};

		target-module@a0000 {			/* 0x4a0a0000, ap 15 40.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xa0000 0x8000>;
		};

		target-module@d9000 {			/* 0x4a0d9000, ap 17 72.0 */
			compatible = "ti,sysc-omap4-sr", "ti,sysc";
			reg = <0xd9038 0x4>;
			reg-names = "sysc";
			ti,sysc-mask = <SYSC_OMAP3_SR_ENAWAKEUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): coreaon_pwrdm, coreaon_clkdm */
			clocks = <&coreaon_clkctrl DRA7_COREAON_SMARTREFLEX_MPU_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xd9000 0x1000>;

			/* SmartReflex child device marked reserved in TRM */
		};

		target-module@dd000 {			/* 0x4a0dd000, ap 19 18.0 */
			compatible = "ti,sysc-omap4-sr", "ti,sysc";
			reg = <0xdd038 0x4>;
			reg-names = "sysc";
			ti,sysc-mask = <SYSC_OMAP3_SR_ENAWAKEUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): coreaon_pwrdm, coreaon_clkdm */
			clocks = <&coreaon_clkctrl DRA7_COREAON_SMARTREFLEX_CORE_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xdd000 0x1000>;

			/* SmartReflex child device marked reserved in TRM */
		};

		target-module@e0000 {			/* 0x4a0e0000, ap 21 28.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xe0000 0x1000>;
		};

		target-module@f4000 {			/* 0x4a0f4000, ap 23 04.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xf4000 0x4>,
			      <0xf4010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xf4000 0x1000>;

			mailbox1: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 135 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 134 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <3>;
				ti,mbox-num-fifos = <8>;
				status = "disabled";
			};
		};

		target-module@f6000 {			/* 0x4a0f6000, ap 25 78.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0xf6000 0x4>,
			      <0xf6010 0x4>,
			      <0xf6014 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,syss-mask = <1>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_SPINLOCK_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xf6000 0x1000>;

			hwspinlock: spinlock@0 {
				compatible = "ti,omap4-hwspinlock";
				reg = <0x0 0x1000>;
				#hwlock-cells = <1>;
			};
		};
	};

	segment@100000 {					/* 0x4a100000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00002000 0x00102000 0x001000>,	/* ap 27 */
			 <0x00003000 0x00103000 0x001000>,	/* ap 28 */
			 <0x00008000 0x00108000 0x001000>,	/* ap 29 */
			 <0x00009000 0x00109000 0x001000>,	/* ap 30 */
			 <0x00040000 0x00140000 0x010000>,	/* ap 31 */
			 <0x00050000 0x00150000 0x001000>,	/* ap 32 */
			 <0x00051000 0x00151000 0x001000>,	/* ap 33 */
			 <0x00052000 0x00152000 0x001000>,	/* ap 34 */
			 <0x00053000 0x00153000 0x001000>,	/* ap 35 */
			 <0x00054000 0x00154000 0x001000>,	/* ap 36 */
			 <0x00055000 0x00155000 0x001000>,	/* ap 37 */
			 <0x00056000 0x00156000 0x001000>,	/* ap 38 */
			 <0x00057000 0x00157000 0x001000>,	/* ap 39 */
			 <0x00058000 0x00158000 0x001000>,	/* ap 40 */
			 <0x0005b000 0x0015b000 0x001000>,	/* ap 41 */
			 <0x0005c000 0x0015c000 0x001000>,	/* ap 42 */
			 <0x0005d000 0x0015d000 0x001000>,	/* ap 45 */
			 <0x0005e000 0x0015e000 0x001000>,	/* ap 46 */
			 <0x0005f000 0x0015f000 0x001000>,	/* ap 47 */
			 <0x00060000 0x00160000 0x001000>,	/* ap 48 */
			 <0x00061000 0x00161000 0x001000>,	/* ap 49 */
			 <0x00062000 0x00162000 0x001000>,	/* ap 50 */
			 <0x00063000 0x00163000 0x001000>,	/* ap 51 */
			 <0x00064000 0x00164000 0x001000>,	/* ap 52 */
			 <0x00065000 0x00165000 0x001000>,	/* ap 53 */
			 <0x00066000 0x00166000 0x001000>,	/* ap 54 */
			 <0x00067000 0x00167000 0x001000>,	/* ap 55 */
			 <0x00068000 0x00168000 0x001000>,	/* ap 56 */
			 <0x0006d000 0x0016d000 0x001000>,	/* ap 57 */
			 <0x0006e000 0x0016e000 0x001000>,	/* ap 58 */
			 <0x00071000 0x00171000 0x001000>,	/* ap 61 */
			 <0x00072000 0x00172000 0x001000>,	/* ap 62 */
			 <0x00073000 0x00173000 0x001000>,	/* ap 63 */
			 <0x00074000 0x00174000 0x001000>,	/* ap 64 */
			 <0x00075000 0x00175000 0x001000>,	/* ap 65 */
			 <0x00076000 0x00176000 0x001000>,	/* ap 66 */
			 <0x00077000 0x00177000 0x001000>,	/* ap 67 */
			 <0x00078000 0x00178000 0x001000>,	/* ap 68 */
			 <0x00081000 0x00181000 0x001000>,	/* ap 69 */
			 <0x00082000 0x00182000 0x001000>,	/* ap 70 */
			 <0x00083000 0x00183000 0x001000>,	/* ap 71 */
			 <0x00084000 0x00184000 0x001000>,	/* ap 72 */
			 <0x00085000 0x00185000 0x001000>,	/* ap 73 */
			 <0x00086000 0x00186000 0x001000>,	/* ap 74 */
			 <0x00087000 0x00187000 0x001000>,	/* ap 75 */
			 <0x00088000 0x00188000 0x001000>,	/* ap 76 */
			 <0x00069000 0x00169000 0x001000>,	/* ap 103 */
			 <0x0006a000 0x0016a000 0x001000>,	/* ap 104 */
			 <0x00079000 0x00179000 0x001000>,	/* ap 105 */
			 <0x0007a000 0x0017a000 0x001000>,	/* ap 106 */
			 <0x0006b000 0x0016b000 0x001000>,	/* ap 107 */
			 <0x0006c000 0x0016c000 0x001000>,	/* ap 108 */
			 <0x0007b000 0x0017b000 0x001000>,	/* ap 121 */
			 <0x0007c000 0x0017c000 0x001000>,	/* ap 122 */
			 <0x0007d000 0x0017d000 0x001000>,	/* ap 123 */
			 <0x0007e000 0x0017e000 0x001000>,	/* ap 124 */
			 <0x00059000 0x00159000 0x001000>,	/* ap 125 */
			 <0x0005a000 0x0015a000 0x001000>;	/* ap 126 */

		target-module@2000 {			/* 0x4a102000, ap 27 3c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2000 0x1000>;
		};

		target-module@8000 {			/* 0x4a108000, ap 29 1e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x8000 0x1000>;
		};

		target-module@40000 {			/* 0x4a140000, ap 31 06.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x40000 0x10000>;
		};

		target-module@51000 {			/* 0x4a151000, ap 33 50.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x51000 0x1000>;
		};

		target-module@53000 {			/* 0x4a153000, ap 35 54.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x53000 0x1000>;
		};

		target-module@55000 {			/* 0x4a155000, ap 37 46.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x55000 0x1000>;
		};

		target-module@57000 {			/* 0x4a157000, ap 39 58.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x57000 0x1000>;
		};

		target-module@59000 {			/* 0x4a159000, ap 125 6a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x59000 0x1000>;
		};

		target-module@5b000 {			/* 0x4a15b000, ap 41 60.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5b000 0x1000>;
		};

		target-module@5d000 {			/* 0x4a15d000, ap 45 3a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5d000 0x1000>;
		};

		target-module@5f000 {			/* 0x4a15f000, ap 47 56.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5f000 0x1000>;
		};

		target-module@61000 {			/* 0x4a161000, ap 49 32.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x61000 0x1000>;
		};

		target-module@63000 {			/* 0x4a163000, ap 51 5c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x63000 0x1000>;
		};

		target-module@65000 {			/* 0x4a165000, ap 53 4e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x65000 0x1000>;
		};

		target-module@67000 {			/* 0x4a167000, ap 55 5e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x67000 0x1000>;
		};

		target-module@69000 {			/* 0x4a169000, ap 103 4a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x69000 0x1000>;
		};

		target-module@6b000 {			/* 0x4a16b000, ap 107 52.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6b000 0x1000>;
		};

		target-module@6d000 {			/* 0x4a16d000, ap 57 68.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6d000 0x1000>;
		};

		target-module@71000 {			/* 0x4a171000, ap 61 48.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x71000 0x1000>;
		};

		target-module@73000 {			/* 0x4a173000, ap 63 2a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x73000 0x1000>;
		};

		target-module@75000 {			/* 0x4a175000, ap 65 64.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x75000 0x1000>;
		};

		target-module@77000 {			/* 0x4a177000, ap 67 66.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x77000 0x1000>;
		};

		target-module@79000 {			/* 0x4a179000, ap 105 34.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x79000 0x1000>;
		};

		target-module@7b000 {			/* 0x4a17b000, ap 121 7c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7b000 0x1000>;
		};

		target-module@7d000 {			/* 0x4a17d000, ap 123 7e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7d000 0x1000>;
		};

		target-module@81000 {			/* 0x4a181000, ap 69 26.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x81000 0x1000>;
		};

		target-module@83000 {			/* 0x4a183000, ap 71 2e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x83000 0x1000>;
		};

		target-module@85000 {			/* 0x4a185000, ap 73 36.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x85000 0x1000>;
		};

		target-module@87000 {			/* 0x4a187000, ap 75 74.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x87000 0x1000>;
		};
	};

	segment@200000 {					/* 0x4a200000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00018000 0x00218000 0x001000>,	/* ap 43 */
			 <0x00019000 0x00219000 0x001000>,	/* ap 44 */
			 <0x00000000 0x00200000 0x001000>,	/* ap 77 */
			 <0x00001000 0x00201000 0x001000>,	/* ap 78 */
			 <0x0000a000 0x0020a000 0x001000>,	/* ap 79 */
			 <0x0000b000 0x0020b000 0x001000>,	/* ap 80 */
			 <0x0000c000 0x0020c000 0x001000>,	/* ap 81 */
			 <0x0000d000 0x0020d000 0x001000>,	/* ap 82 */
			 <0x0000e000 0x0020e000 0x001000>,	/* ap 83 */
			 <0x0000f000 0x0020f000 0x001000>,	/* ap 84 */
			 <0x00010000 0x00210000 0x001000>,	/* ap 85 */
			 <0x00011000 0x00211000 0x001000>,	/* ap 86 */
			 <0x00012000 0x00212000 0x001000>,	/* ap 87 */
			 <0x00013000 0x00213000 0x001000>,	/* ap 88 */
			 <0x00014000 0x00214000 0x001000>,	/* ap 89 */
			 <0x00015000 0x00215000 0x001000>,	/* ap 90 */
			 <0x0002a000 0x0022a000 0x001000>,	/* ap 91 */
			 <0x0002b000 0x0022b000 0x001000>,	/* ap 92 */
			 <0x0001c000 0x0021c000 0x001000>,	/* ap 93 */
			 <0x0001d000 0x0021d000 0x001000>,	/* ap 94 */
			 <0x0001e000 0x0021e000 0x001000>,	/* ap 95 */
			 <0x0001f000 0x0021f000 0x001000>,	/* ap 96 */
			 <0x00020000 0x00220000 0x001000>,	/* ap 97 */
			 <0x00021000 0x00221000 0x001000>,	/* ap 98 */
			 <0x00024000 0x00224000 0x001000>,	/* ap 99 */
			 <0x00025000 0x00225000 0x001000>,	/* ap 100 */
			 <0x00026000 0x00226000 0x001000>,	/* ap 101 */
			 <0x00027000 0x00227000 0x001000>,	/* ap 102 */
			 <0x0002c000 0x0022c000 0x001000>,	/* ap 109 */
			 <0x0002d000 0x0022d000 0x001000>,	/* ap 110 */
			 <0x0002e000 0x0022e000 0x001000>,	/* ap 111 */
			 <0x0002f000 0x0022f000 0x001000>,	/* ap 112 */
			 <0x00030000 0x00230000 0x001000>,	/* ap 113 */
			 <0x00031000 0x00231000 0x001000>,	/* ap 114 */
			 <0x00032000 0x00232000 0x001000>,	/* ap 115 */
			 <0x00033000 0x00233000 0x001000>,	/* ap 116 */
			 <0x00034000 0x00234000 0x001000>,	/* ap 117 */
			 <0x00035000 0x00235000 0x001000>,	/* ap 118 */
			 <0x00036000 0x00236000 0x001000>,	/* ap 119 */
			 <0x00037000 0x00237000 0x001000>,	/* ap 120 */
			 <0x0001a000 0x0021a000 0x001000>,	/* ap 127 */
			 <0x0001b000 0x0021b000 0x001000>;	/* ap 128 */

		target-module@0 {			/* 0x4a200000, ap 77 3e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x0 0x1000>;
		};

		target-module@a000 {			/* 0x4a20a000, ap 79 30.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xa000 0x1000>;
		};

		target-module@c000 {			/* 0x4a20c000, ap 81 0c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xc000 0x1000>;
		};

		target-module@e000 {			/* 0x4a20e000, ap 83 22.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xe000 0x1000>;
		};

		target-module@10000 {			/* 0x4a210000, ap 85 14.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x10000 0x1000>;
		};

		target-module@12000 {			/* 0x4a212000, ap 87 16.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x12000 0x1000>;
		};

		target-module@14000 {			/* 0x4a214000, ap 89 1c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x14000 0x1000>;
		};

		target-module@18000 {			/* 0x4a218000, ap 43 12.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x18000 0x1000>;
		};

		target-module@1a000 {			/* 0x4a21a000, ap 127 7a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1a000 0x1000>;
		};

		target-module@1c000 {			/* 0x4a21c000, ap 93 38.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1c000 0x1000>;
		};

		target-module@1e000 {			/* 0x4a21e000, ap 95 0a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1e000 0x1000>;
		};

		target-module@20000 {			/* 0x4a220000, ap 97 24.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x20000 0x1000>;
		};

		target-module@24000 {			/* 0x4a224000, ap 99 44.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x24000 0x1000>;
		};

		target-module@26000 {			/* 0x4a226000, ap 101 2c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x26000 0x1000>;
		};

		target-module@2a000 {			/* 0x4a22a000, ap 91 4c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2a000 0x1000>;
		};

		target-module@2c000 {			/* 0x4a22c000, ap 109 6c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2c000 0x1000>;
		};

		target-module@2e000 {			/* 0x4a22e000, ap 111 6e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2e000 0x1000>;
		};

		target-module@30000 {			/* 0x4a230000, ap 113 70.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x30000 0x1000>;
		};

		target-module@32000 {			/* 0x4a232000, ap 115 5a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x32000 0x1000>;
		};

		target-module@34000 {			/* 0x4a234000, ap 117 76.1 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x34000 0x1000>;
		};

		target-module@36000 {			/* 0x4a236000, ap 119 62.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x36000 0x1000>;
		};
	};
};

&l4_per1 {						/* 0x48000000 */
	compatible = "ti,dra7-l4-per1", "simple-bus";
	reg = <0x48000000 0x800>,
	      <0x48000800 0x800>,
	      <0x48001000 0x400>,
	      <0x48001400 0x400>,
	      <0x48001800 0x400>,
	      <0x48001c00 0x400>;
	reg-names = "ap", "la", "ia0", "ia1", "ia2", "ia3";
	#address-cells = <1>;
	#size-cells = <1>;
	ranges = <0x00000000 0x48000000 0x200000>,	/* segment 0 */
		 <0x00200000 0x48200000 0x200000>;	/* segment 1 */

	segment@0 {					/* 0x48000000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00000000 0x000800>,	/* ap 0 */
			 <0x00001000 0x00001000 0x000400>,	/* ap 1 */
			 <0x00000800 0x00000800 0x000800>,	/* ap 2 */
			 <0x00020000 0x00020000 0x001000>,	/* ap 3 */
			 <0x00021000 0x00021000 0x001000>,	/* ap 4 */
			 <0x00032000 0x00032000 0x001000>,	/* ap 5 */
			 <0x00033000 0x00033000 0x001000>,	/* ap 6 */
			 <0x00034000 0x00034000 0x001000>,	/* ap 7 */
			 <0x00035000 0x00035000 0x001000>,	/* ap 8 */
			 <0x00036000 0x00036000 0x001000>,	/* ap 9 */
			 <0x00037000 0x00037000 0x001000>,	/* ap 10 */
			 <0x0003e000 0x0003e000 0x001000>,	/* ap 11 */
			 <0x0003f000 0x0003f000 0x001000>,	/* ap 12 */
			 <0x00055000 0x00055000 0x001000>,	/* ap 13 */
			 <0x00056000 0x00056000 0x001000>,	/* ap 14 */
			 <0x00057000 0x00057000 0x001000>,	/* ap 15 */
			 <0x00058000 0x00058000 0x001000>,	/* ap 16 */
			 <0x00059000 0x00059000 0x001000>,	/* ap 17 */
			 <0x0005a000 0x0005a000 0x001000>,	/* ap 18 */
			 <0x0005b000 0x0005b000 0x001000>,	/* ap 19 */
			 <0x0005c000 0x0005c000 0x001000>,	/* ap 20 */
			 <0x0005d000 0x0005d000 0x001000>,	/* ap 21 */
			 <0x0005e000 0x0005e000 0x001000>,	/* ap 22 */
			 <0x00060000 0x00060000 0x001000>,	/* ap 23 */
			 <0x0006a000 0x0006a000 0x001000>,	/* ap 24 */
			 <0x0006b000 0x0006b000 0x001000>,	/* ap 25 */
			 <0x0006c000 0x0006c000 0x001000>,	/* ap 26 */
			 <0x0006d000 0x0006d000 0x001000>,	/* ap 27 */
			 <0x0006e000 0x0006e000 0x001000>,	/* ap 28 */
			 <0x0006f000 0x0006f000 0x001000>,	/* ap 29 */
			 <0x00070000 0x00070000 0x001000>,	/* ap 30 */
			 <0x00071000 0x00071000 0x001000>,	/* ap 31 */
			 <0x00072000 0x00072000 0x001000>,	/* ap 32 */
			 <0x00073000 0x00073000 0x001000>,	/* ap 33 */
			 <0x00061000 0x00061000 0x001000>,	/* ap 34 */
			 <0x00053000 0x00053000 0x001000>,	/* ap 35 */
			 <0x00054000 0x00054000 0x001000>,	/* ap 36 */
			 <0x000b2000 0x000b2000 0x001000>,	/* ap 37 */
			 <0x000b3000 0x000b3000 0x001000>,	/* ap 38 */
			 <0x00078000 0x00078000 0x001000>,	/* ap 39 */
			 <0x00079000 0x00079000 0x001000>,	/* ap 40 */
			 <0x00086000 0x00086000 0x001000>,	/* ap 41 */
			 <0x00087000 0x00087000 0x001000>,	/* ap 42 */
			 <0x00088000 0x00088000 0x001000>,	/* ap 43 */
			 <0x00089000 0x00089000 0x001000>,	/* ap 44 */
			 <0x00051000 0x00051000 0x001000>,	/* ap 45 */
			 <0x00052000 0x00052000 0x001000>,	/* ap 46 */
			 <0x00098000 0x00098000 0x001000>,	/* ap 47 */
			 <0x00099000 0x00099000 0x001000>,	/* ap 48 */
			 <0x0009a000 0x0009a000 0x001000>,	/* ap 49 */
			 <0x0009b000 0x0009b000 0x001000>,	/* ap 50 */
			 <0x0009c000 0x0009c000 0x001000>,	/* ap 51 */
			 <0x0009d000 0x0009d000 0x001000>,	/* ap 52 */
			 <0x00068000 0x00068000 0x001000>,	/* ap 53 */
			 <0x00069000 0x00069000 0x001000>,	/* ap 54 */
			 <0x00090000 0x00090000 0x002000>,	/* ap 55 */
			 <0x00092000 0x00092000 0x001000>,	/* ap 56 */
			 <0x000a4000 0x000a4000 0x001000>,	/* ap 57 */
			 <0x000a6000 0x000a6000 0x001000>,	/* ap 58 */
			 <0x000a8000 0x000a8000 0x004000>,	/* ap 59 */
			 <0x000ac000 0x000ac000 0x001000>,	/* ap 60 */
			 <0x000ad000 0x000ad000 0x001000>,	/* ap 61 */
			 <0x000ae000 0x000ae000 0x001000>,	/* ap 62 */
			 <0x00066000 0x00066000 0x001000>,	/* ap 63 */
			 <0x00067000 0x00067000 0x001000>,	/* ap 64 */
			 <0x000b4000 0x000b4000 0x001000>,	/* ap 65 */
			 <0x000b5000 0x000b5000 0x001000>,	/* ap 66 */
			 <0x000b8000 0x000b8000 0x001000>,	/* ap 67 */
			 <0x000b9000 0x000b9000 0x001000>,	/* ap 68 */
			 <0x000ba000 0x000ba000 0x001000>,	/* ap 69 */
			 <0x000bb000 0x000bb000 0x001000>,	/* ap 70 */
			 <0x000d1000 0x000d1000 0x001000>,	/* ap 71 */
			 <0x000d2000 0x000d2000 0x001000>,	/* ap 72 */
			 <0x000d5000 0x000d5000 0x001000>,	/* ap 73 */
			 <0x000d6000 0x000d6000 0x001000>,	/* ap 74 */
			 <0x000a2000 0x000a2000 0x001000>,	/* ap 75 */
			 <0x000a3000 0x000a3000 0x001000>,	/* ap 76 */
			 <0x00001400 0x00001400 0x000400>,	/* ap 77 */
			 <0x00001800 0x00001800 0x000400>,	/* ap 78 */
			 <0x00001c00 0x00001c00 0x000400>,	/* ap 79 */
			 <0x000a5000 0x000a5000 0x001000>,	/* ap 80 */
			 <0x0007a000 0x0007a000 0x001000>,	/* ap 81 */
			 <0x0007b000 0x0007b000 0x001000>,	/* ap 82 */
			 <0x0007c000 0x0007c000 0x001000>,	/* ap 83 */
			 <0x0007d000 0x0007d000 0x001000>;	/* ap 84 */

		target-module@20000 {			/* 0x48020000, ap 3 04.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x20050 0x4>,
			      <0x20054 0x4>,
			      <0x20058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_UART3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x20000 0x1000>;

			uart3: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
				dmas = <&sdma_xbar 53>, <&sdma_xbar 54>;
				dma-names = "tx", "rx";
			};
		};

		target-module@32000 {			/* 0x48032000, ap 5 3e.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x32000 0x4>,
			      <0x32010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x32000 0x1000>;

			timer2: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER2_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 33 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@34000 {			/* 0x48034000, ap 7 46.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x34000 0x4>,
			      <0x34010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x34000 0x1000>;

			timer3: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER3_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 34 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@36000 {			/* 0x48036000, ap 9 4e.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x36000 0x4>,
			      <0x36010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x36000 0x1000>;

			timer4: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER4_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 35 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@3e000 {			/* 0x4803e000, ap 11 56.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x3e000 0x4>,
			      <0x3e010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER9_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3e000 0x1000>;

			timer9: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER9_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 40 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		gpio7_target: target-module@51000 {		/* 0x48051000, ap 45 2e.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x51000 0x4>,
			      <0x51010 0x4>,
			      <0x51114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO7_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO7_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x51000 0x1000>;

			gpio7: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 30 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@53000 {			/* 0x48053000, ap 35 36.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x53000 0x4>,
			      <0x53010 0x4>,
			      <0x53114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO8_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO8_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x53000 0x1000>;

			gpio8: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 116 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@55000 {			/* 0x48055000, ap 13 0e.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x55000 0x4>,
			      <0x55010 0x4>,
			      <0x55114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO2_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO2_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x55000 0x1000>;

			gpio2: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 25 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@57000 {			/* 0x48057000, ap 15 06.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x57000 0x4>,
			      <0x57010 0x4>,
			      <0x57114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO3_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO3_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x57000 0x1000>;

			gpio3: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 26 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@59000 {			/* 0x48059000, ap 17 16.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x59000 0x4>,
			      <0x59010 0x4>,
			      <0x59114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO4_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO4_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x59000 0x1000>;

			gpio4: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 27 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@5b000 {			/* 0x4805b000, ap 19 1e.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x5b000 0x4>,
			      <0x5b010 0x4>,
			      <0x5b114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO5_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO5_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5b000 0x1000>;

			gpio5: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 28 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@5d000 {			/* 0x4805d000, ap 21 26.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x5d000 0x4>,
			      <0x5d010 0x4>,
			      <0x5d114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_GPIO6_CLKCTRL 0>,
				 <&l4per_clkctrl DRA7_L4PER_GPIO6_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5d000 0x1000>;

			gpio6: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 29 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@60000 {			/* 0x48060000, ap 23 32.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x60000 0x8>,
			      <0x60010 0x8>,
			      <0x60090 0x8>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_I2C3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x60000 0x1000>;

			i2c3: i2c@0 {
				compatible = "ti,omap4-i2c";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				status = "disabled";
			};
		};

		target-module@66000 {			/* 0x48066000, ap 63 14.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x66050 0x4>,
			      <0x66054 0x4>,
			      <0x66058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_UART5_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x66000 0x1000>;

			uart5: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
				dmas = <&sdma_xbar 63>, <&sdma_xbar 64>;
				dma-names = "tx", "rx";
			};
		};

		target-module@68000 {			/* 0x48068000, ap 53 1c.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x68050 0x4>,
			      <0x68054 0x4>,
			      <0x68058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_UART6_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x68000 0x1000>;

			uart6: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
				dmas = <&sdma_xbar 79>, <&sdma_xbar 80>;
				dma-names = "tx", "rx";
			};
		};

		target-module@6a000 {			/* 0x4806a000, ap 24 24.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x6a050 0x4>,
			      <0x6a054 0x4>,
			      <0x6a058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_UART1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6a000 0x1000>;

			uart1: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts-extended = <&crossbar_mpu GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
				dmas = <&sdma_xbar 49>, <&sdma_xbar 50>;
				dma-names = "tx", "rx";
			};
		};

		target-module@6c000 {			/* 0x4806c000, ap 26 2c.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x6c050 0x4>,
			      <0x6c054 0x4>,
			      <0x6c058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_UART2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6c000 0x1000>;

			uart2: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 68 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
				dmas = <&sdma_xbar 51>, <&sdma_xbar 52>;
				dma-names = "tx", "rx";
			};
		};

		target-module@6e000 {			/* 0x4806e000, ap 28 0c.1 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x6e050 0x4>,
			      <0x6e054 0x4>,
			      <0x6e058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_UART4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6e000 0x1000>;

			uart4: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
			                        status = "disabled";
				dmas = <&sdma_xbar 55>, <&sdma_xbar 56>;
				dma-names = "tx", "rx";
			};
		};

		target-module@70000 {			/* 0x48070000, ap 30 22.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x70000 0x8>,
			      <0x70010 0x8>,
			      <0x70090 0x8>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_I2C1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x70000 0x1000>;

			i2c1: i2c@0 {
				compatible = "ti,omap4-i2c";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 51 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				status = "disabled";
			};
		};

		target-module@72000 {			/* 0x48072000, ap 32 2a.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x72000 0x8>,
			      <0x72010 0x8>,
			      <0x72090 0x8>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_I2C2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x72000 0x1000>;

			i2c2: i2c@0 {
				compatible = "ti,omap4-i2c";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				status = "disabled";
			};
		};

		target-module@78000 {			/* 0x48078000, ap 39 0a.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x78000 0x4>,
			      <0x78010 0x4>,
			      <0x78014 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_ELM_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x78000 0x1000>;

			elm: elm@0 {
				compatible = "ti,am3352-elm";
				reg = <0x0 0xfc0>;      /* device IO registers */
				interrupts = <GIC_SPI 1 IRQ_TYPE_LEVEL_HIGH>;
				status = "disabled";
			};
		};

		target-module@7a000 {			/* 0x4807a000, ap 81 3a.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x7a000 0x8>,
			      <0x7a010 0x8>,
			      <0x7a090 0x8>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_I2C4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7a000 0x1000>;

			i2c4: i2c@0 {
				compatible = "ti,omap4-i2c";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 57 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				status = "disabled";
			};
		};

		target-module@7c000 {			/* 0x4807c000, ap 83 4a.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x7c000 0x8>,
			      <0x7c010 0x8>,
			      <0x7c090 0x8>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_CLOCKACTIVITY |
					 SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_I2C5_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7c000 0x1000>;

			i2c5: i2c@0 {
				compatible = "ti,omap4-i2c";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 55 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				status = "disabled";
			};
		};

		target-module@86000 {			/* 0x48086000, ap 41 5e.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x86000 0x4>,
			      <0x86010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER10_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x86000 0x1000>;

			timer10: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER10_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 41 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@88000 {			/* 0x48088000, ap 43 66.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x88000 0x4>,
			      <0x88010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_TIMER11_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x88000 0x1000>;

			timer11: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per_clkctrl DRA7_L4PER_TIMER11_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 42 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@90000 {			/* 0x48090000, ap 55 12.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x91fe0 0x4>,
			      <0x91fe4 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP2_AUTOIDLE>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>;
			/* Domains (P, C): l4per_pwrdm, l4sec_clkdm */
			clocks = <&l4sec_clkctrl DRA7_L4SEC_RNG_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x90000 0x2000>;

			rng: rng@0 {
				compatible = "ti,omap4-rng";
				reg = <0x0 0x2000>;
				interrupts = <GIC_SPI 47 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&l3_iclk_div>;
				clock-names = "fck";
			};
		};

		target-module@98000 {			/* 0x48098000, ap 47 08.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x98000 0x4>,
			      <0x98010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MCSPI1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x98000 0x1000>;

			mcspi1: spi@0 {
				compatible = "ti,omap4-mcspi";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				ti,spi-num-cs = <4>;
				dmas = <&sdma_xbar 35>,
				       <&sdma_xbar 36>,
				       <&sdma_xbar 37>,
				       <&sdma_xbar 38>,
				       <&sdma_xbar 39>,
				       <&sdma_xbar 40>,
				       <&sdma_xbar 41>,
				       <&sdma_xbar 42>;
				dma-names = "tx0", "rx0", "tx1", "rx1",
					    "tx2", "rx2", "tx3", "rx3";
				status = "disabled";
			};
		};

		target-module@9a000 {			/* 0x4809a000, ap 49 10.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x9a000 0x4>,
			      <0x9a010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MCSPI2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x9a000 0x1000>;

			mcspi2: spi@0 {
				compatible = "ti,omap4-mcspi";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 61 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				ti,spi-num-cs = <2>;
				dmas = <&sdma_xbar 43>,
				       <&sdma_xbar 44>,
				       <&sdma_xbar 45>,
				       <&sdma_xbar 46>;
				dma-names = "tx0", "rx0", "tx1", "rx1";
				status = "disabled";
			};
		};

		target-module@9c000 {			/* 0x4809c000, ap 51 38.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x9c000 0x4>,
			      <0x9c010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_MMC1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x9c000 0x1000>;

			mmc1: mmc@0 {
				compatible = "ti,dra7-sdhci";
				reg = <0x0 0x400>;
				interrupts = <GIC_SPI 78 IRQ_TYPE_LEVEL_HIGH>;
				status = "disabled";
				pbias-supply = <&pbias_mmc_reg>;
				max-frequency = <192000000>;
				mmc-ddr-1_8v;
				mmc-ddr-3_3v;
			};
		};

		target-module@a2000 {			/* 0x480a2000, ap 75 02.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xa2000 0x1000>;
		};

		target-module@a4000 {			/* 0x480a4000, ap 57 42.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x00000000 0x000a4000 0x00001000>,
				 <0x00001000 0x000a5000 0x00001000>;
		};

		des_target: target-module@a5000 {	/* 0x480a5000 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0xa5030 0x4>,
			      <0xa5034 0x4>,
			      <0xa5038 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4sec_clkdm */
			clocks = <&l4sec_clkctrl DRA7_L4SEC_DES_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0 0xa5000 0x00001000>;

			des: des@0 {
				compatible = "ti,omap4-des";
				reg = <0 0xa0>;
				interrupts = <GIC_SPI 77 IRQ_TYPE_LEVEL_HIGH>;
				dmas = <&sdma_xbar 117>, <&sdma_xbar 116>;
				dma-names = "tx", "rx";
				clocks = <&l3_iclk_div>;
				clock-names = "fck";
			};
		};

		target-module@a8000 {			/* 0x480a8000, ap 59 1a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xa8000 0x4000>;
		};

		target-module@ad000 {			/* 0x480ad000, ap 61 20.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xad000 0x4>,
			      <0xad010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MMC3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xad000 0x1000>;

			mmc3: mmc@0 {
				compatible = "ti,dra7-sdhci";
				reg = <0x0 0x400>;
				interrupts = <GIC_SPI 89 IRQ_TYPE_LEVEL_HIGH>;
				status = "disabled";
				/* Errata i887 limits max-frequency of MMC3 to 64 MHz */
				max-frequency = <64000000>;
				/* SDMA is not supported */
				sdhci-caps-mask = <0x0 0x400000>;
			};
		};

		target-module@b2000 {			/* 0x480b2000, ap 37 52.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0xb2000 0x4>,
			      <0xb2014 0x4>,
			      <0xb2018 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,syss-mask = <1>;
			ti,no-reset-on-init;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_HDQ1W_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xb2000 0x1000>;

			hdqw1w: 1w@0 {
				compatible = "ti,omap3-1w";
				reg = <0x0 0x1000>;
				interrupts = <GIC_SPI 53 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@b4000 {			/* 0x480b4000, ap 65 40.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xb4000 0x4>,
			      <0xb4010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_MMC2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xb4000 0x1000>;

			mmc2: mmc@0 {
				compatible = "ti,dra7-sdhci";
				reg = <0x0 0x400>;
				interrupts = <GIC_SPI 81 IRQ_TYPE_LEVEL_HIGH>;
				status = "disabled";
				max-frequency = <192000000>;
				/* SDR104/DDR50/SDR50 bits in CAPA2 is not supported */
				sdhci-caps-mask = <0x7 0x0>;
				mmc-hs200-1_8v;
				mmc-ddr-1_8v;
				mmc-ddr-3_3v;
			};
		};

		target-module@b8000 {			/* 0x480b8000, ap 67 48.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xb8000 0x4>,
			      <0xb8010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MCSPI3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xb8000 0x1000>;

			mcspi3: spi@0 {
				compatible = "ti,omap4-mcspi";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 86 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				ti,spi-num-cs = <2>;
				dmas = <&sdma_xbar 15>, <&sdma_xbar 16>;
				dma-names = "tx0", "rx0";
				status = "disabled";
			};
		};

		target-module@ba000 {			/* 0x480ba000, ap 69 18.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xba000 0x4>,
			      <0xba010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MCSPI4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xba000 0x1000>;

			mcspi4: spi@0 {
				compatible = "ti,omap4-mcspi";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 43 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <0>;
				ti,spi-num-cs = <1>;
				dmas = <&sdma_xbar 70>, <&sdma_xbar 71>;
				dma-names = "tx0", "rx0";
				status = "disabled";
			};
		};

		target-module@d1000 {			/* 0x480d1000, ap 71 28.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xd1000 0x4>,
			      <0xd1010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per_clkdm */
			clocks = <&l4per_clkctrl DRA7_L4PER_MMC4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xd1000 0x1000>;

			mmc4: mmc@0 {
				compatible = "ti,dra7-sdhci";
				reg = <0x0 0x400>;
				interrupts = <GIC_SPI 91 IRQ_TYPE_LEVEL_HIGH>;
				status = "disabled";
				max-frequency = <192000000>;
				/* SDMA is not supported */
				sdhci-caps-mask = <0x0 0x400000>;
			};
		};

		target-module@d5000 {			/* 0x480d5000, ap 73 30.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xd5000 0x1000>;
		};
	};

	segment@200000 {					/* 0x48200000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
	};
};

&l4_per2 {						/* 0x48400000 */
	compatible = "ti,dra7-l4-per2", "simple-bus";
	reg = <0x48400000 0x800>,
	      <0x48400800 0x800>,
	      <0x48401000 0x400>,
	      <0x48401400 0x400>,
	      <0x48401800 0x400>;
	reg-names = "ap", "la", "ia0", "ia1", "ia2";
	#address-cells = <1>;
	#size-cells = <1>;
	ranges = <0x00000000 0x48400000 0x400000>,	/* segment 0 */
		 <0x45800000 0x45800000 0x400000>,	/* L3 data port */
		 <0x45c00000 0x45c00000 0x400000>,	/* L3 data port */
		 <0x46000000 0x46000000 0x400000>,	/* L3 data port */
		 <0x48436000 0x48436000 0x400000>,	/* L3 data port */
		 <0x4843a000 0x4843a000 0x400000>,	/* L3 data port */
		 <0x4844c000 0x4844c000 0x400000>,	/* L3 data port */
		 <0x48450000 0x48450000 0x400000>,	/* L3 data port */
		 <0x48454000 0x48454000 0x400000>;	/* L3 data port */

	segment@0 {					/* 0x48400000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00000000 0x000800>,	/* ap 0 */
			 <0x00001000 0x00001000 0x000400>,	/* ap 1 */
			 <0x00000800 0x00000800 0x000800>,	/* ap 2 */
			 <0x00084000 0x00084000 0x004000>,	/* ap 3 */
			 <0x00001400 0x00001400 0x000400>,	/* ap 4 */
			 <0x00001800 0x00001800 0x000400>,	/* ap 5 */
			 <0x00088000 0x00088000 0x001000>,	/* ap 6 */
			 <0x0002c000 0x0002c000 0x001000>,	/* ap 7 */
			 <0x0002d000 0x0002d000 0x001000>,	/* ap 8 */
			 <0x00060000 0x00060000 0x002000>,	/* ap 9 */
			 <0x00062000 0x00062000 0x001000>,	/* ap 10 */
			 <0x00064000 0x00064000 0x002000>,	/* ap 11 */
			 <0x00066000 0x00066000 0x001000>,	/* ap 12 */
			 <0x00068000 0x00068000 0x002000>,	/* ap 13 */
			 <0x0006a000 0x0006a000 0x001000>,	/* ap 14 */
			 <0x0006c000 0x0006c000 0x002000>,	/* ap 15 */
			 <0x0006e000 0x0006e000 0x001000>,	/* ap 16 */
			 <0x00036000 0x00036000 0x001000>,	/* ap 17 */
			 <0x00037000 0x00037000 0x001000>,	/* ap 18 */
			 <0x00070000 0x00070000 0x002000>,	/* ap 19 */
			 <0x00072000 0x00072000 0x001000>,	/* ap 20 */
			 <0x0003a000 0x0003a000 0x001000>,	/* ap 21 */
			 <0x0003b000 0x0003b000 0x001000>,	/* ap 22 */
			 <0x0003c000 0x0003c000 0x001000>,	/* ap 23 */
			 <0x0003d000 0x0003d000 0x001000>,	/* ap 24 */
			 <0x0003e000 0x0003e000 0x001000>,	/* ap 25 */
			 <0x0003f000 0x0003f000 0x001000>,	/* ap 26 */
			 <0x00040000 0x00040000 0x001000>,	/* ap 27 */
			 <0x00041000 0x00041000 0x001000>,	/* ap 28 */
			 <0x00042000 0x00042000 0x001000>,	/* ap 29 */
			 <0x00043000 0x00043000 0x001000>,	/* ap 30 */
			 <0x00080000 0x00080000 0x002000>,	/* ap 31 */
			 <0x00082000 0x00082000 0x001000>,	/* ap 32 */
			 <0x0004a000 0x0004a000 0x001000>,	/* ap 33 */
			 <0x0004b000 0x0004b000 0x001000>,	/* ap 34 */
			 <0x00074000 0x00074000 0x002000>,	/* ap 35 */
			 <0x00076000 0x00076000 0x001000>,	/* ap 36 */
			 <0x00050000 0x00050000 0x001000>,	/* ap 37 */
			 <0x00051000 0x00051000 0x001000>,	/* ap 38 */
			 <0x00078000 0x00078000 0x002000>,	/* ap 39 */
			 <0x0007a000 0x0007a000 0x001000>,	/* ap 40 */
			 <0x00054000 0x00054000 0x001000>,	/* ap 41 */
			 <0x00055000 0x00055000 0x001000>,	/* ap 42 */
			 <0x0007c000 0x0007c000 0x002000>,	/* ap 43 */
			 <0x0007e000 0x0007e000 0x001000>,	/* ap 44 */
			 <0x0004c000 0x0004c000 0x001000>,	/* ap 45 */
			 <0x0004d000 0x0004d000 0x001000>,	/* ap 46 */
			 <0x00020000 0x00020000 0x001000>,	/* ap 47 */
			 <0x00021000 0x00021000 0x001000>,	/* ap 48 */
			 <0x00022000 0x00022000 0x001000>,	/* ap 49 */
			 <0x00023000 0x00023000 0x001000>,	/* ap 50 */
			 <0x00024000 0x00024000 0x001000>,	/* ap 51 */
			 <0x00025000 0x00025000 0x001000>,	/* ap 52 */
			 <0x00046000 0x00046000 0x001000>,	/* ap 53 */
			 <0x00047000 0x00047000 0x001000>,	/* ap 54 */
			 <0x00048000 0x00048000 0x001000>,	/* ap 55 */
			 <0x00049000 0x00049000 0x001000>,	/* ap 56 */
			 <0x00058000 0x00058000 0x002000>,	/* ap 57 */
			 <0x0005a000 0x0005a000 0x001000>,	/* ap 58 */
			 <0x0005b000 0x0005b000 0x001000>,	/* ap 59 */
			 <0x0005c000 0x0005c000 0x001000>,	/* ap 60 */
			 <0x0005d000 0x0005d000 0x001000>,	/* ap 61 */
			 <0x0005e000 0x0005e000 0x001000>,	/* ap 62 */
			 <0x45800000 0x45800000 0x400000>,	/* L3 data port */
			 <0x45c00000 0x45c00000 0x400000>,	/* L3 data port */
			 <0x46000000 0x46000000 0x400000>,	/* L3 data port */
			 <0x48436000 0x48436000 0x400000>,	/* L3 data port */
			 <0x4843a000 0x4843a000 0x400000>,	/* L3 data port */
			 <0x4844c000 0x4844c000 0x400000>,	/* L3 data port */
			 <0x48450000 0x48450000 0x400000>,	/* L3 data port */
			 <0x48454000 0x48454000 0x400000>;	/* L3 data port */

		target-module@20000 {			/* 0x48420000, ap 47 02.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x20050 0x4>,
			      <0x20054 0x4>,
			      <0x20058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_UART7_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x20000 0x1000>;

			uart7: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 218 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
			};
		};

		target-module@22000 {			/* 0x48422000, ap 49 0a.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x22050 0x4>,
			      <0x22054 0x4>,
			      <0x22058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_UART8_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x22000 0x1000>;

			uart8: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 219 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
			};
		};

		target-module@24000 {			/* 0x48424000, ap 51 12.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x24050 0x4>,
			      <0x24054 0x4>,
			      <0x24058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_UART9_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x24000 0x1000>;

			uart9: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 220 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
			};
		};

		target-module@2c000 {			/* 0x4842c000, ap 7 18.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2c000 0x1000>;
		};

		target-module@36000 {			/* 0x48436000, ap 17 06.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x36000 0x1000>;
		};

		target-module@3a000 {			/* 0x4843a000, ap 21 3e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3a000 0x1000>;
		};

		atl_tm: target-module@3c000 {		/* 0x4843c000, ap 23 08.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x3c000 0x4>;
			reg-names = "rev";
			clocks = <&atl_clkctrl DRA7_ATL_ATL_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3c000 0x1000>;

			atl: atl@0 {
				compatible = "ti,dra7-atl";
				reg = <0x0 0x3ff>;
				ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>,
						     <&atl_clkin2_ck>, <&atl_clkin3_ck>;
				clocks = <&atl_clkctrl DRA7_ATL_ATL_CLKCTRL 26>;
				clock-names = "fck";
				status = "disabled";
			};
		};

		target-module@3e000 {			/* 0x4843e000, ap 25 30.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x3e000 0x4>,
			      <0x3e004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_EPWMSS0_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3e000 0x1000>;

			epwmss0: epwmss@0 {
				compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
				reg = <0x0 0x30>;
				#address-cells = <1>;
				#size-cells = <1>;
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap0: ecap@100 {
					compatible = "ti,dra746-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
					clocks = <&l4_root_clk_div>;
					clock-names = "fck";
					status = "disabled";
				};

				ehrpwm0: pwm@200 {
					compatible = "ti,dra746-ehrpwm",
						     "ti,am3352-ehrpwm";
					#pwm-cells = <3>;
					reg = <0x200 0x80>;
					clocks = <&ehrpwm0_tbclk>, <&l4_root_clk_div>;
					clock-names = "tbclk", "fck";
					status = "disabled";
				};
			};
		};

		target-module@40000 {			/* 0x48440000, ap 27 38.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x40000 0x4>,
			      <0x40004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_EPWMSS1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x40000 0x1000>;

			epwmss1: epwmss@0 {
				compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
				reg = <0x0 0x30>;
				#address-cells = <1>;
				#size-cells = <1>;
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap1: ecap@100 {
					compatible = "ti,dra746-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
					clocks = <&l4_root_clk_div>;
					clock-names = "fck";
					status = "disabled";
				};

				ehrpwm1: pwm@200 {
					compatible = "ti,dra746-ehrpwm",
						     "ti,am3352-ehrpwm";
					#pwm-cells = <3>;
					reg = <0x200 0x80>;
					clocks = <&ehrpwm1_tbclk>, <&l4_root_clk_div>;
					clock-names = "tbclk", "fck";
					status = "disabled";
				};
			};
		};

		target-module@42000 {			/* 0x48442000, ap 29 20.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x42000 0x4>,
			      <0x42004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_EPWMSS2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x42000 0x1000>;

			epwmss2: epwmss@0 {
				compatible = "ti,dra746-pwmss", "ti,am33xx-pwmss";
				reg = <0x0 0x30>;
				#address-cells = <1>;
				#size-cells = <1>;
				status = "disabled";
				ranges = <0 0 0x1000>;

				ecap2: ecap@100 {
					compatible = "ti,dra746-ecap",
						     "ti,am3352-ecap";
					#pwm-cells = <3>;
					reg = <0x100 0x80>;
					clocks = <&l4_root_clk_div>;
					clock-names = "fck";
					status = "disabled";
				};

				ehrpwm2: pwm@200 {
					compatible = "ti,dra746-ehrpwm",
						     "ti,am3352-ehrpwm";
					#pwm-cells = <3>;
					reg = <0x200 0x80>;
					clocks = <&ehrpwm2_tbclk>, <&l4_root_clk_div>;
					clock-names = "tbclk", "fck";
					status = "disabled";
				};
			};
		};

		target-module@46000 {			/* 0x48446000, ap 53 40.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x46000 0x1000>;
		};

		target-module@48000 {			/* 0x48448000, ap 55 48.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x48000 0x1000>;
		};

		target-module@4a000 {			/* 0x4844a000, ap 33 1a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4a000 0x1000>;
		};

		target-module@4c000 {			/* 0x4844c000, ap 45 1c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4c000 0x1000>;
		};

		target-module@50000 {			/* 0x48450000, ap 37 24.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x50000 0x1000>;
		};

		target-module@54000 {			/* 0x48454000, ap 41 2c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x54000 0x1000>;
		};

		target-module@58000 {			/* 0x48458000, ap 57 28.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x58000 0x2000>;
		};

		target-module@5b000 {			/* 0x4845b000, ap 59 46.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5b000 0x1000>;
		};

		target-module@5d000 {			/* 0x4845d000, ap 61 22.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5d000 0x1000>;
		};

		target-module@60000 {			/* 0x48460000, ap 9 0e.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x60000 0x4>,
			      <0x60004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 0>,
				 <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 24>,
				 <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 28>;
			clock-names = "fck", "ahclkx", "ahclkr";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x60000 0x2000>,
				 <0x45800000 0x45800000 0x400000>;

			mcasp1: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x45800000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 104 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 129 1>, <&edma_xbar 128 1>;
				dma-names = "tx", "rx";
				clocks = <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 0>,
					 <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 24>,
					 <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 28>;
				clock-names = "fck", "ahclkx", "ahclkr";
				status = "disabled";
			};
		};

		target-module@64000 {			/* 0x48464000, ap 11 1e.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x64000 0x4>,
			      <0x64004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP2_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP2_CLKCTRL 24>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP2_CLKCTRL 28>;
			clock-names = "fck", "ahclkx", "ahclkr";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x64000 0x2000>,
				 <0x45c00000 0x45c00000 0x400000>;

			mcasp2: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x45c00000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 149 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 148 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 131 1>, <&edma_xbar 130 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP2_CLKCTRL 0>,
					 <&ipu_clkctrl DRA7_IPU_MCASP1_CLKCTRL 24>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP2_CLKCTRL 28>;
				clock-names = "fck", "ahclkx", "ahclkr";
				status = "disabled";
			};
		};

		target-module@68000 {			/* 0x48468000, ap 13 26.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x68000 0x4>,
			      <0x68004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP3_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP3_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x68000 0x2000>,
				 <0x46000000 0x46000000 0x400000>;

			mcasp3: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x46000000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 151 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 150 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 133 1>, <&edma_xbar 132 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP3_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP3_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@6c000 {			/* 0x4846c000, ap 15 2e.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x6c000 0x4>,
			      <0x6c004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP4_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP4_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6c000 0x2000>,
				 <0x48436000 0x48436000 0x400000>;

			mcasp4: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x48436000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 153 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 152 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 135 1>, <&edma_xbar 134 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP4_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP4_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@70000 {			/* 0x48470000, ap 19 36.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x70000 0x4>,
			      <0x70004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP5_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP5_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x70000 0x2000>,
				 <0x4843a000 0x4843a000 0x400000>;

			mcasp5: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x4843a000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 155 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 154 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 137 1>, <&edma_xbar 136 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP5_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP5_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@74000 {			/* 0x48474000, ap 35 14.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x74000 0x4>,
			      <0x74004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP6_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP6_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x74000 0x2000>,
				 <0x4844c000 0x4844c000 0x400000>;

			mcasp6: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x4844c000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 157 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 156 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 139 1>, <&edma_xbar 138 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP6_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP6_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@78000 {			/* 0x48478000, ap 39 0c.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x78000 0x4>,
			      <0x78004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP7_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP7_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x78000 0x2000>,
				 <0x48450000 0x48450000 0x400000>;

			mcasp7: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x48450000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 159 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 158 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 141 1>, <&edma_xbar 140 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP7_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP7_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@7c000 {			/* 0x4847c000, ap 43 04.0 */
			compatible = "ti,sysc-dra7-mcasp", "ti,sysc";
			reg = <0x7c000 0x4>,
			      <0x7c004 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): l4per_pwrdm, l4per2_clkdm */
			clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP8_CLKCTRL 0>,
				 <&l4per2_clkctrl DRA7_L4PER2_MCASP8_CLKCTRL 24>;
			clock-names = "fck", "ahclkx";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7c000 0x2000>,
				 <0x48454000 0x48454000 0x400000>;

			mcasp8: mcasp@0 {
				compatible = "ti,dra7-mcasp-audio";
				reg = <0x0 0x2000>,
				      <0x48454000 0x1000>;	/* L3 data port */
				reg-names = "mpu","dat";
				interrupts = <GIC_SPI 161 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 160 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "tx", "rx";
				dmas = <&edma_xbar 143 1>, <&edma_xbar 142 1>;
				dma-names = "tx", "rx";
				clocks = <&l4per2_clkctrl DRA7_L4PER2_MCASP8_CLKCTRL 0>,
					 <&l4per2_clkctrl DRA7_L4PER2_MCASP8_CLKCTRL 24>;
				clock-names = "fck", "ahclkx";
				status = "disabled";
			};
		};

		target-module@80000 {			/* 0x48480000, ap 31 16.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x80020 0x4>;
			reg-names = "rev";
			clocks = <&l4per2_clkctrl DRA7_L4PER2_DCAN2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x80000 0x2000>;

			dcan2: can@0 {
				compatible = "ti,dra7-d_can";
				reg = <0x0 0x2000>;
				syscon-raminit = <&scm_conf 0x558 1>;
				interrupts = <GIC_SPI 225 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&sys_clkin1>;
				status = "disabled";
			};
		};

		target-module@84000 {			/* 0x48484000, ap 3 10.0 */
			compatible = "ti,sysc-omap4-simple", "ti,sysc";
			reg = <0x85200 0x4>,
			      <0x85208 0x4>,
			      <0x85204 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <0>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>;
			ti,syss-mask = <1>;
			clocks = <&gmac_clkctrl DRA7_GMAC_GMAC_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x84000 0x4000>;
			/*
			 * Do not allow gating of cpsw clock as workaround
			 * for errata i877. Keeping internal clock disabled
			 * causes the device switching characteristics
			 * to degrade over time and eventually fail to meet
			 * the data manual delay time/skew specs.
			 */
			ti,no-idle;

			mac: ethernet@0 {
				compatible = "ti,dra7-cpsw","ti,cpsw";
				clocks = <&gmac_main_clk>, <&gmac_clkctrl DRA7_GMAC_GMAC_CLKCTRL 25>;
				clock-names = "fck", "cpts";
				cpdma_channels = <8>;
				ale_entries = <1024>;
				bd_ram_size = <0x2000>;
				mac_control = <0x20>;
				slaves = <2>;
				active_slave = <0>;
				cpts_clock_mult = <0x784CFE14>;
				cpts_clock_shift = <29>;
				reg = <0x0 0x1000
				       0x1200 0x2e00>;
				#address-cells = <1>;
				#size-cells = <1>;

				/*
				 * rx_thresh_pend
				 * rx_pend
				 * tx_pend
				 * misc_pend
				 */
				interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
				ranges = <0 0 0x4000>;
				syscon = <&scm_conf>;
				status = "disabled";

				davinci_mdio: mdio@1000 {
					compatible = "ti,cpsw-mdio","ti,davinci_mdio";
					clocks = <&gmac_main_clk>;
					clock-names = "fck";
					#address-cells = <1>;
					#size-cells = <0>;
					bus_freq = <1000000>;
					reg = <0x1000 0x100>;
				};

				cpsw_emac0: slave@200 {
					/* Filled in by U-Boot */
					mac-address = [ 00 00 00 00 00 00 ];
					phys = <&phy_gmii_sel 1>;
				};

				cpsw_emac1: slave@300 {
					/* Filled in by U-Boot */
					mac-address = [ 00 00 00 00 00 00 ];
					phys = <&phy_gmii_sel 2>;
				};
			};

			mac_sw: switch@0 {
				compatible = "ti,dra7-cpsw-switch","ti,cpsw-switch";
				reg = <0x0 0x4000>;
				ranges = <0 0 0x4000>;
				clocks = <&gmac_main_clk>;
				clock-names = "fck";
				#address-cells = <1>;
				#size-cells = <1>;
				syscon = <&scm_conf>;
				status = "disabled";

				interrupts = <GIC_SPI 334 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 335 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 336 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 337 IRQ_TYPE_LEVEL_HIGH>;
				interrupt-names = "rx_thresh", "rx", "tx", "misc";

				ethernet-ports {
					#address-cells = <1>;
					#size-cells = <0>;

					cpsw_port1: port@1 {
						reg = <1>;
						label = "port1";
						mac-address = [ 00 00 00 00 00 00 ];
						phys = <&phy_gmii_sel 1>;
					};

					cpsw_port2: port@2 {
						reg = <2>;
						label = "port2";
						mac-address = [ 00 00 00 00 00 00 ];
						phys = <&phy_gmii_sel 2>;
					};
				};

				davinci_mdio_sw: mdio@1000 {
					compatible = "ti,cpsw-mdio","ti,davinci_mdio";
					clocks = <&gmac_main_clk>;
					clock-names = "fck";
					#address-cells = <1>;
					#size-cells = <0>;
					bus_freq = <1000000>;
					reg = <0x1000 0x100>;
				};

				cpts {
					clocks = <&gmac_clkctrl DRA7_GMAC_GMAC_CLKCTRL 25>;
					clock-names = "cpts";
				};
			};
		};
	};
};

&l4_per3 {						/* 0x48800000 */
	compatible = "ti,dra7-l4-per3", "simple-bus";
	reg = <0x48800000 0x800>,
	      <0x48800800 0x800>,
	      <0x48801000 0x400>,
	      <0x48801400 0x400>,
	      <0x48801800 0x400>;
	reg-names = "ap", "la", "ia0", "ia1", "ia2";
	#address-cells = <1>;
	#size-cells = <1>;
	ranges = <0x00000000 0x48800000 0x200000>;	/* segment 0 */

	segment@0 {					/* 0x48800000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00000000 0x000800>,	/* ap 0 */
			 <0x00000800 0x00000800 0x000800>,	/* ap 1 */
			 <0x00001000 0x00001000 0x000400>,	/* ap 2 */
			 <0x00001400 0x00001400 0x000400>,	/* ap 3 */
			 <0x00001800 0x00001800 0x000400>,	/* ap 4 */
			 <0x00020000 0x00020000 0x001000>,	/* ap 5 */
			 <0x00021000 0x00021000 0x001000>,	/* ap 6 */
			 <0x00022000 0x00022000 0x001000>,	/* ap 7 */
			 <0x00023000 0x00023000 0x001000>,	/* ap 8 */
			 <0x00024000 0x00024000 0x001000>,	/* ap 9 */
			 <0x00025000 0x00025000 0x001000>,	/* ap 10 */
			 <0x00026000 0x00026000 0x001000>,	/* ap 11 */
			 <0x00027000 0x00027000 0x001000>,	/* ap 12 */
			 <0x00028000 0x00028000 0x001000>,	/* ap 13 */
			 <0x00029000 0x00029000 0x001000>,	/* ap 14 */
			 <0x0002a000 0x0002a000 0x001000>,	/* ap 15 */
			 <0x0002b000 0x0002b000 0x001000>,	/* ap 16 */
			 <0x0002c000 0x0002c000 0x001000>,	/* ap 17 */
			 <0x0002d000 0x0002d000 0x001000>,	/* ap 18 */
			 <0x0002e000 0x0002e000 0x001000>,	/* ap 19 */
			 <0x0002f000 0x0002f000 0x001000>,	/* ap 20 */
			 <0x00170000 0x00170000 0x010000>,	/* ap 21 */
			 <0x00180000 0x00180000 0x001000>,	/* ap 22 */
			 <0x00190000 0x00190000 0x010000>,	/* ap 23 */
			 <0x001a0000 0x001a0000 0x001000>,	/* ap 24 */
			 <0x001b0000 0x001b0000 0x010000>,	/* ap 25 */
			 <0x001c0000 0x001c0000 0x001000>,	/* ap 26 */
			 <0x001d0000 0x001d0000 0x010000>,	/* ap 27 */
			 <0x001e0000 0x001e0000 0x001000>,	/* ap 28 */
			 <0x00038000 0x00038000 0x001000>,	/* ap 29 */
			 <0x00039000 0x00039000 0x001000>,	/* ap 30 */
			 <0x0005c000 0x0005c000 0x001000>,	/* ap 31 */
			 <0x0005d000 0x0005d000 0x001000>,	/* ap 32 */
			 <0x0003a000 0x0003a000 0x001000>,	/* ap 33 */
			 <0x0003b000 0x0003b000 0x001000>,	/* ap 34 */
			 <0x0003c000 0x0003c000 0x001000>,	/* ap 35 */
			 <0x0003d000 0x0003d000 0x001000>,	/* ap 36 */
			 <0x0003e000 0x0003e000 0x001000>,	/* ap 37 */
			 <0x0003f000 0x0003f000 0x001000>,	/* ap 38 */
			 <0x00040000 0x00040000 0x001000>,	/* ap 39 */
			 <0x00041000 0x00041000 0x001000>,	/* ap 40 */
			 <0x00042000 0x00042000 0x001000>,	/* ap 41 */
			 <0x00043000 0x00043000 0x001000>,	/* ap 42 */
			 <0x00044000 0x00044000 0x001000>,	/* ap 43 */
			 <0x00045000 0x00045000 0x001000>,	/* ap 44 */
			 <0x00046000 0x00046000 0x001000>,	/* ap 45 */
			 <0x00047000 0x00047000 0x001000>,	/* ap 46 */
			 <0x00048000 0x00048000 0x001000>,	/* ap 47 */
			 <0x00049000 0x00049000 0x001000>,	/* ap 48 */
			 <0x0004a000 0x0004a000 0x001000>,	/* ap 49 */
			 <0x0004b000 0x0004b000 0x001000>,	/* ap 50 */
			 <0x0004c000 0x0004c000 0x001000>,	/* ap 51 */
			 <0x0004d000 0x0004d000 0x001000>,	/* ap 52 */
			 <0x0004e000 0x0004e000 0x001000>,	/* ap 53 */
			 <0x0004f000 0x0004f000 0x001000>,	/* ap 54 */
			 <0x00050000 0x00050000 0x001000>,	/* ap 55 */
			 <0x00051000 0x00051000 0x001000>,	/* ap 56 */
			 <0x00052000 0x00052000 0x001000>,	/* ap 57 */
			 <0x00053000 0x00053000 0x001000>,	/* ap 58 */
			 <0x00054000 0x00054000 0x001000>,	/* ap 59 */
			 <0x00055000 0x00055000 0x001000>,	/* ap 60 */
			 <0x00056000 0x00056000 0x001000>,	/* ap 61 */
			 <0x00057000 0x00057000 0x001000>,	/* ap 62 */
			 <0x00058000 0x00058000 0x001000>,	/* ap 63 */
			 <0x00059000 0x00059000 0x001000>,	/* ap 64 */
			 <0x0005a000 0x0005a000 0x001000>,	/* ap 65 */
			 <0x0005b000 0x0005b000 0x001000>,	/* ap 66 */
			 <0x00064000 0x00064000 0x001000>,	/* ap 67 */
			 <0x00065000 0x00065000 0x001000>,	/* ap 68 */
			 <0x0005e000 0x0005e000 0x001000>,	/* ap 69 */
			 <0x0005f000 0x0005f000 0x001000>,	/* ap 70 */
			 <0x00060000 0x00060000 0x001000>,	/* ap 71 */
			 <0x00061000 0x00061000 0x001000>,	/* ap 72 */
			 <0x00062000 0x00062000 0x001000>,	/* ap 73 */
			 <0x00063000 0x00063000 0x001000>,	/* ap 74 */
			 <0x00140000 0x00140000 0x020000>,	/* ap 75 */
			 <0x00160000 0x00160000 0x001000>,	/* ap 76 */
			 <0x00016000 0x00016000 0x001000>,	/* ap 77 */
			 <0x00017000 0x00017000 0x001000>,	/* ap 78 */
			 <0x000c0000 0x000c0000 0x020000>,	/* ap 79 */
			 <0x000e0000 0x000e0000 0x001000>,	/* ap 80 */
			 <0x00004000 0x00004000 0x001000>,	/* ap 81 */
			 <0x00005000 0x00005000 0x001000>,	/* ap 82 */
			 <0x00080000 0x00080000 0x020000>,	/* ap 83 */
			 <0x000a0000 0x000a0000 0x001000>,	/* ap 84 */
			 <0x00100000 0x00100000 0x020000>,	/* ap 85 */
			 <0x00120000 0x00120000 0x001000>,	/* ap 86 */
			 <0x00010000 0x00010000 0x001000>,	/* ap 87 */
			 <0x00011000 0x00011000 0x001000>,	/* ap 88 */
			 <0x0000a000 0x0000a000 0x001000>,	/* ap 89 */
			 <0x0000b000 0x0000b000 0x001000>,	/* ap 90 */
			 <0x0001c000 0x0001c000 0x001000>,	/* ap 91 */
			 <0x0001d000 0x0001d000 0x001000>,	/* ap 92 */
			 <0x0001e000 0x0001e000 0x001000>,	/* ap 93 */
			 <0x0001f000 0x0001f000 0x001000>,	/* ap 94 */
			 <0x00002000 0x00002000 0x001000>,	/* ap 95 */
			 <0x00003000 0x00003000 0x001000>;	/* ap 96 */

		target-module@2000 {			/* 0x48802000, ap 95 7c.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x2000 0x4>,
			      <0x2010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX13_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2000 0x1000>;

			mailbox13: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 379 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 380 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 381 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 382 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@4000 {			/* 0x48804000, ap 81 20.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4000 0x1000>;
		};

		target-module@a000 {			/* 0x4880a000, ap 89 18.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xa000 0x1000>;
		};

		target-module@10000 {			/* 0x48810000, ap 87 28.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x10000 0x1000>;
		};

		target-module@16000 {			/* 0x48816000, ap 77 1e.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x16000 0x1000>;
		};

		target-module@1c000 {			/* 0x4881c000, ap 91 1c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1c000 0x1000>;
		};

		target-module@1e000 {			/* 0x4881e000, ap 93 2c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1e000 0x1000>;
		};

		target-module@20000 {			/* 0x48820000, ap 5 08.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x20000 0x4>,
			      <0x20010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_TIMER5_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x20000 0x1000>;

			timer5: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&ipu_clkctrl DRA7_IPU_TIMER5_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 36 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@22000 {			/* 0x48822000, ap 7 24.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x22000 0x4>,
			      <0x22010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_TIMER6_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x22000 0x1000>;

			timer6: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&ipu_clkctrl DRA7_IPU_TIMER6_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 37 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@24000 {			/* 0x48824000, ap 9 26.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x24000 0x4>,
			      <0x24010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_TIMER7_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x24000 0x1000>;

			timer7: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&ipu_clkctrl DRA7_IPU_TIMER7_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 38 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@26000 {			/* 0x48826000, ap 11 0c.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x26000 0x4>,
			      <0x26010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): ipu_pwrdm, ipu_clkdm */
			clocks = <&ipu_clkctrl DRA7_IPU_TIMER8_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x26000 0x1000>;

			timer8: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&ipu_clkctrl DRA7_IPU_TIMER8_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 39 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		target-module@28000 {			/* 0x48828000, ap 13 16.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x28000 0x4>,
			      <0x28010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per3_clkdm */
			clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER13_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x28000 0x1000>;

			timer13: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER13_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 339 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-pwm;
			};
		};

		target-module@2a000 {			/* 0x4882a000, ap 15 10.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x2a000 0x4>,
			      <0x2a010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per3_clkdm */
			clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER14_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2a000 0x1000>;

			timer14: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER14_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 340 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-pwm;
			};
		};

		target-module@2c000 {			/* 0x4882c000, ap 17 02.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x2c000 0x4>,
			      <0x2c010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per3_clkdm */
			clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER15_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2c000 0x1000>;

			timer15: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER15_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 341 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-pwm;
			};
		};

		target-module@2e000 {			/* 0x4882e000, ap 19 14.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x2e000 0x4>,
			      <0x2e010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l4per_pwrdm, l4per3_clkdm */
			clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER16_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2e000 0x1000>;

			timer16: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&l4per3_clkctrl DRA7_L4PER3_TIMER16_CLKCTRL 24>, <&timer_sys_clk_div>;
				clock-names = "fck", "timer_sys_ck";
				interrupts = <GIC_SPI 342 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-pwm;
			};
		};

		rtctarget: target-module@38000 {			/* 0x48838000, ap 29 12.0 */
			compatible = "ti,sysc-omap4-simple", "ti,sysc";
			ti,hwmods = "rtcss";
			reg = <0x38074 0x4>,
			      <0x38078 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): rtc_pwrdm, rtc_clkdm */
			clocks = <&rtc_clkctrl DRA7_RTC_RTCSS_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x38000 0x1000>;

			rtc: rtc@0 {
				compatible = "ti,am3352-rtc";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 217 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&sys_32k_ck>;
			};
		};

		target-module@3a000 {			/* 0x4883a000, ap 33 3e.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x3a000 0x4>,
			      <0x3a010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3a000 0x1000>;

			mailbox2: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 237 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 238 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 239 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 240 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@3c000 {			/* 0x4883c000, ap 35 3a.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x3c000 0x4>,
			      <0x3c010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3c000 0x1000>;

			mailbox3: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 241 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 242 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 243 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 244 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@3e000 {			/* 0x4883e000, ap 37 46.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x3e000 0x4>,
			      <0x3e010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3e000 0x1000>;

			mailbox4: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 245 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 248 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@40000 {			/* 0x48840000, ap 39 64.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x40000 0x4>,
			      <0x40010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX5_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x40000 0x1000>;

			mailbox5: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 249 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 250 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 251 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 252 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@42000 {			/* 0x48842000, ap 41 4e.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x42000 0x4>,
			      <0x42010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX6_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x42000 0x1000>;

			mailbox6: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 253 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 254 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 255 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@44000 {			/* 0x48844000, ap 43 42.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x44000 0x4>,
			      <0x44010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX7_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x44000 0x1000>;

			mailbox7: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 257 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 258 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 259 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 260 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@46000 {			/* 0x48846000, ap 45 48.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x46000 0x4>,
			      <0x46010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX8_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x46000 0x1000>;

			mailbox8: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 261 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 262 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 263 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 264 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@48000 {			/* 0x48848000, ap 47 36.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x48000 0x1000>;
		};

		target-module@4a000 {			/* 0x4884a000, ap 49 38.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4a000 0x1000>;
		};

		target-module@4c000 {			/* 0x4884c000, ap 51 44.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4c000 0x1000>;
		};

		target-module@4e000 {			/* 0x4884e000, ap 53 4c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4e000 0x1000>;
		};

		target-module@50000 {			/* 0x48850000, ap 55 40.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x50000 0x1000>;
		};

		target-module@52000 {			/* 0x48852000, ap 57 54.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x52000 0x1000>;
		};

		target-module@54000 {			/* 0x48854000, ap 59 1a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x54000 0x1000>;
		};

		target-module@56000 {			/* 0x48856000, ap 61 22.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x56000 0x1000>;
		};

		target-module@58000 {			/* 0x48858000, ap 63 2a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x58000 0x1000>;
		};

		target-module@5a000 {			/* 0x4885a000, ap 65 5c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5a000 0x1000>;
		};

		target-module@5c000 {			/* 0x4885c000, ap 31 32.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5c000 0x1000>;
		};

		target-module@5e000 {			/* 0x4885e000, ap 69 6c.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x5e000 0x4>,
			      <0x5e010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX9_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5e000 0x1000>;

			mailbox9: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 265 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 268 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@60000 {			/* 0x48860000, ap 71 4a.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x60000 0x4>,
			      <0x60010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX10_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x60000 0x1000>;

			mailbox10: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 269 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 270 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 271 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 272 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@62000 {			/* 0x48862000, ap 73 74.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x62000 0x4>,
			      <0x62010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX11_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x62000 0x1000>;

			mailbox11: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 273 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 274 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 275 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 276 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@64000 {			/* 0x48864000, ap 67 52.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x64000 0x4>,
			      <0x64010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_SOFTRESET>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			/* Domains (P, C): core_pwrdm, l4cfg_clkdm */
			clocks = <&l4cfg_clkctrl DRA7_L4CFG_MAILBOX12_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x64000 0x1000>;

			mailbox12: mailbox@0 {
				compatible = "ti,omap4-mailbox";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 277 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 278 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 279 IRQ_TYPE_LEVEL_HIGH>,
					     <GIC_SPI 280 IRQ_TYPE_LEVEL_HIGH>;
				#mbox-cells = <1>;
				ti,mbox-num-users = <4>;
				ti,mbox-num-fifos = <12>;
				status = "disabled";
			};
		};

		target-module@80000 {			/* 0x48880000, ap 83 0e.1 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			ti,hwmods = "usb_otg_ss1";
			reg = <0x80000 0x4>,
			      <0x80010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_DMADISABLE>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x80000 0x20000>;

			omap_dwc3_1: omap_dwc3_1@0 {
				compatible = "ti,dwc3";
				reg = <0x0 0x10000>;
				interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <1>;
				utmi-mode = <2>;
				ranges = <0 0 0x20000>;

				usb1: usb@10000 {
					compatible = "snps,dwc3";
					reg = <0x10000 0x17000>;
					interrupts = <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 71 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
					interrupt-names = "peripheral",
							  "host",
							  "otg";
					phys = <&usb2_phy1>, <&usb3_phy1>;
					phy-names = "usb2-phy", "usb3-phy";
					maximum-speed = "super-speed";
					dr_mode = "otg";
					snps,dis_u3_susphy_quirk;
					snps,dis_u2_susphy_quirk;
				};
			};
		};

		target-module@c0000 {			/* 0x488c0000, ap 79 06.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			ti,hwmods = "usb_otg_ss2";
			reg = <0xc0000 0x4>,
			      <0xc0010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_DMADISABLE>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xc0000 0x20000>;

			omap_dwc3_2: omap_dwc3_2@0 {
				compatible = "ti,dwc3";
				reg = <0x0 0x10000>;
				interrupts = <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <1>;
				utmi-mode = <2>;
				ranges = <0 0 0x20000>;

				usb2: usb@10000 {
					compatible = "snps,dwc3";
					reg = <0x10000 0x17000>;
					interrupts = <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 73 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 87 IRQ_TYPE_LEVEL_HIGH>;
					interrupt-names = "peripheral",
							  "host",
							  "otg";
					phys = <&usb2_phy2>;
					phy-names = "usb2-phy";
					maximum-speed = "high-speed";
					dr_mode = "otg";
					snps,dis_u3_susphy_quirk;
					snps,dis_u2_susphy_quirk;
					snps,dis_metastability_quirk;
				};
			};
		};

		usb3_tm: target-module@100000 {		/* 0x48900000, ap 85 04.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			ti,hwmods = "usb_otg_ss3";
			reg = <0x100000 0x4>,
			      <0x100010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_DMADISABLE>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x100000 0x20000>;

			omap_dwc3_3: omap_dwc3_3@0 {
				compatible = "ti,dwc3";
				reg = <0x0 0x10000>;
				interrupts = <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <1>;
				utmi-mode = <2>;
				ranges = <0 0 0x20000>;
				status = "disabled";

				usb3: usb@10000 {
					compatible = "snps,dwc3";
					reg = <0x10000 0x17000>;
					interrupts = <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 88 IRQ_TYPE_LEVEL_HIGH>,
						     <GIC_SPI 344 IRQ_TYPE_LEVEL_HIGH>;
					interrupt-names = "peripheral",
							  "host",
							  "otg";
					maximum-speed = "high-speed";
					dr_mode = "otg";
					snps,dis_u3_susphy_quirk;
					snps,dis_u2_susphy_quirk;
				};
			};
		};

		usb4_tm: target-module@140000 {		/* 0x48940000, ap 75 3c.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			ti,hwmods = "usb_otg_ss4";
			reg = <0x140000 0x4>,
			      <0x140010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <SYSC_OMAP4_DMADISABLE>;
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): l3init_pwrdm, l3init_clkdm */
			clocks = <&l3init_clkctrl DRA7_L3INIT_USB_OTG_SS4_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x140000 0x20000>;
		};

		target-module@170000 {			/* 0x48970000, ap 21 0a.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x170010 0x4>;
			reg-names = "sysc";
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			clocks = <&cam_clkctrl DRA7_CAM_VIP1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x170000 0x10000>;
			status = "disabled";
		};

		target-module@190000 {			/* 0x48990000, ap 23 2e.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x190010 0x4>;
			reg-names = "sysc";
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			clocks = <&cam_clkctrl DRA7_CAM_VIP2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x190000 0x10000>;
			status = "disabled";
		};

		target-module@1b0000 {			/* 0x489b0000, ap 25 34.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x1b0000 0x4>,
			      <0x1b0010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			clocks = <&cam_clkctrl DRA7_CAM_VIP3_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1b0000 0x10000>;
			status = "disabled";
		};

		target-module@1d0010 {			/* 0x489d0000, ap 27 30.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x1d0010 0x4>;
			reg-names = "sysc";
			ti,sysc-midle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>;
			clocks = <&vpe_clkctrl DRA7_VPE_VPE_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1d0000 0x10000>;

			vpe: vpe@0 {
				compatible = "ti,dra7-vpe";
				reg = <0x0000 0x120>,
				      <0x0700 0x80>,
				      <0x5700 0x18>,
				      <0xd000 0x400>;
				reg-names = "vpe_top",
					    "sc",
					    "csc",
					    "vpdma";
				interrupts = <GIC_SPI 354 IRQ_TYPE_LEVEL_HIGH>;
			};
		};
	};
};

&l4_wkup {						/* 0x4ae00000 */
	compatible = "ti,dra7-l4-wkup", "simple-bus";
	reg = <0x4ae00000 0x800>,
	      <0x4ae00800 0x800>,
	      <0x4ae01000 0x1000>;
	reg-names = "ap", "la", "ia0";
	#address-cells = <1>;
	#size-cells = <1>;
	ranges = <0x00000000 0x4ae00000 0x010000>,	/* segment 0 */
		 <0x00010000 0x4ae10000 0x010000>,	/* segment 1 */
		 <0x00020000 0x4ae20000 0x010000>,	/* segment 2 */
		 <0x00030000 0x4ae30000 0x010000>;	/* segment 3 */

	segment@0 {					/* 0x4ae00000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00000000 0x000800>,	/* ap 0 */
			 <0x00001000 0x00001000 0x001000>,	/* ap 1 */
			 <0x00000800 0x00000800 0x000800>,	/* ap 2 */
			 <0x00006000 0x00006000 0x002000>,	/* ap 3 */
			 <0x00008000 0x00008000 0x001000>,	/* ap 4 */
			 <0x00004000 0x00004000 0x001000>,	/* ap 15 */
			 <0x00005000 0x00005000 0x001000>,	/* ap 16 */
			 <0x0000c000 0x0000c000 0x001000>,	/* ap 17 */
			 <0x0000d000 0x0000d000 0x001000>;	/* ap 18 */

		target-module@4000 {			/* 0x4ae04000, ap 15 40.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x4000 0x4>,
			      <0x4010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_COUNTER_32K_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4000 0x1000>;

			counter32k: counter@0 {
				compatible = "ti,omap-counter32k";
				reg = <0x0 0x40>;
			};
		};

		target-module@6000 {			/* 0x4ae06000, ap 3 10.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0x6000 0x4>;
			reg-names = "rev";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x6000 0x2000>;

			prm: prm@0 {
				compatible = "ti,dra7-prm", "simple-bus";
				reg = <0 0x3000>;
				interrupts = <GIC_SPI 6 IRQ_TYPE_LEVEL_HIGH>;
				#address-cells = <1>;
				#size-cells = <1>;
				ranges = <0 0 0x3000>;

				prm_clocks: clocks {
					#address-cells = <1>;
					#size-cells = <0>;
				};

				prm_clockdomains: clockdomains {
				};
			};
		};

		target-module@c000 {			/* 0x4ae0c000, ap 17 50.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xc000 0x4>;
			reg-names = "rev";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xc000 0x1000>;

			scm_wkup: scm_conf@0 {
				compatible = "syscon";
				reg = <0 0x1000>;
			};
		};
	};

	segment@10000 {					/* 0x4ae10000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00000000 0x00010000 0x001000>,	/* ap 5 */
			 <0x00001000 0x00011000 0x001000>,	/* ap 6 */
			 <0x00004000 0x00014000 0x001000>,	/* ap 7 */
			 <0x00005000 0x00015000 0x001000>,	/* ap 8 */
			 <0x00008000 0x00018000 0x001000>,	/* ap 9 */
			 <0x00009000 0x00019000 0x001000>,	/* ap 10 */
			 <0x0000c000 0x0001c000 0x001000>,	/* ap 11 */
			 <0x0000d000 0x0001d000 0x001000>;	/* ap 12 */

		target-module@0 {			/* 0x4ae10000, ap 5 20.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x0 0x4>,
			      <0x10 0x4>,
			      <0x114 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_GPIO1_CLKCTRL 0>,
				 <&wkupaon_clkctrl DRA7_WKUPAON_GPIO1_CLKCTRL 8>;
			clock-names = "fck", "dbclk";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x0 0x1000>;

			gpio1: gpio@0 {
				compatible = "ti,omap4-gpio";
				reg = <0x0 0x200>;
				interrupts = <GIC_SPI 24 IRQ_TYPE_LEVEL_HIGH>;
				gpio-controller;
				#gpio-cells = <2>;
				interrupt-controller;
				#interrupt-cells = <2>;
			};
		};

		target-module@4000 {			/* 0x4ae14000, ap 7 28.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0x4000 0x4>,
			      <0x4010 0x4>,
			      <0x4014 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_EMUFREE |
					 SYSC_OMAP2_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_WD_TIMER2_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x4000 0x1000>;

			wdt2: wdt@0 {
				compatible = "ti,omap3-wdt";
				reg = <0x0 0x80>;
				interrupts = <GIC_SPI 75 IRQ_TYPE_LEVEL_HIGH>;
			};
		};

		timer1_target: target-module@8000 {	/* 0x4ae18000, ap 9 30.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x8000 0x4>,
			      <0x8010 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_TIMER1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x8000 0x1000>;

			timer1: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				clocks = <&wkupaon_clkctrl DRA7_WKUPAON_TIMER1_CLKCTRL 24>;
				clock-names = "fck";
				interrupts = <GIC_SPI 32 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-alwon;
			};
		};

		target-module@c000 {			/* 0x4ae1c000, ap 11 38.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xc000 0x1000>;
		};
	};

	segment@20000 {					/* 0x4ae20000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x00006000 0x00026000 0x001000>,	/* ap 13 */
			 <0x0000a000 0x0002a000 0x001000>,	/* ap 14 */
			 <0x00000000 0x00020000 0x001000>,	/* ap 19 */
			 <0x00001000 0x00021000 0x001000>,	/* ap 20 */
			 <0x00002000 0x00022000 0x001000>,	/* ap 21 */
			 <0x00003000 0x00023000 0x001000>,	/* ap 22 */
			 <0x00007000 0x00027000 0x000400>,	/* ap 23 */
			 <0x00008000 0x00028000 0x000800>,	/* ap 24 */
			 <0x00009000 0x00029000 0x000100>,	/* ap 25 */
			 <0x00008800 0x00028800 0x000200>,	/* ap 26 */
			 <0x00008a00 0x00028a00 0x000100>,	/* ap 27 */
			 <0x0000b000 0x0002b000 0x001000>,	/* ap 28 */
			 <0x0000c000 0x0002c000 0x001000>,	/* ap 29 */
			 <0x0000f000 0x0002f000 0x001000>;	/* ap 32 */

		target-module@0 {			/* 0x4ae20000, ap 19 08.0 */
			compatible = "ti,sysc-omap4-timer", "ti,sysc";
			reg = <0x0 0x4>,
			      <0x10 0x4>;
			reg-names = "rev", "sysc";
			ti,sysc-mask = <(SYSC_OMAP4_FREEEMU |
					 SYSC_OMAP4_SOFTRESET)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_TIMER12_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x0 0x1000>;

			timer12: timer@0 {
				compatible = "ti,omap5430-timer";
				reg = <0x0 0x80>;
				interrupts = <GIC_SPI 90 IRQ_TYPE_LEVEL_HIGH>;
				ti,timer-alwon;
				ti,timer-secure;
			};
		};

		target-module@2000 {			/* 0x4ae22000, ap 21 18.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x2000 0x1000>;
		};

		target-module@6000 {			/* 0x4ae26000, ap 13 48.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x00000000 0x00006000 0x00001000>,
				 <0x00001000 0x00007000 0x00000400>,
				 <0x00002000 0x00008000 0x00000800>,
				 <0x00002800 0x00008800 0x00000200>,
				 <0x00002a00 0x00008a00 0x00000100>,
				 <0x00003000 0x00009000 0x00000100>;
		};

		target-module@b000 {			/* 0x4ae2b000, ap 28 02.0 */
			compatible = "ti,sysc-omap2", "ti,sysc";
			reg = <0xb050 0x4>,
			      <0xb054 0x4>,
			      <0xb058 0x4>;
			reg-names = "rev", "sysc", "syss";
			ti,sysc-mask = <(SYSC_OMAP2_ENAWAKEUP |
					 SYSC_OMAP2_SOFTRESET |
					 SYSC_OMAP2_AUTOIDLE)>;
			ti,sysc-sidle = <SYSC_IDLE_FORCE>,
					<SYSC_IDLE_NO>,
					<SYSC_IDLE_SMART>,
					<SYSC_IDLE_SMART_WKUP>;
			ti,syss-mask = <1>;
			/* Domains (P, C): wkupaon_pwrdm, wkupaon_clkdm */
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_UART10_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xb000 0x1000>;

			uart10: serial@0 {
				compatible = "ti,dra742-uart", "ti,omap4-uart";
				reg = <0x0 0x100>;
				interrupts = <GIC_SPI 221 IRQ_TYPE_LEVEL_HIGH>;
				clock-frequency = <48000000>;
				status = "disabled";
			};
		};

		target-module@f000 {			/* 0x4ae2f000, ap 32 58.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xf000 0x1000>;
		};
	};

	segment@30000 {					/* 0x4ae30000 */
		compatible = "simple-bus";
		#address-cells = <1>;
		#size-cells = <1>;
		ranges = <0x0000c000 0x0003c000 0x002000>,	/* ap 30 */
			 <0x0000e000 0x0003e000 0x001000>,	/* ap 31 */
			 <0x00000000 0x00030000 0x001000>,	/* ap 33 */
			 <0x00001000 0x00031000 0x001000>,	/* ap 34 */
			 <0x00002000 0x00032000 0x001000>,	/* ap 35 */
			 <0x00003000 0x00033000 0x001000>,	/* ap 36 */
			 <0x00004000 0x00034000 0x001000>,	/* ap 37 */
			 <0x00005000 0x00035000 0x001000>,	/* ap 38 */
			 <0x00006000 0x00036000 0x001000>,	/* ap 39 */
			 <0x00007000 0x00037000 0x001000>,	/* ap 40 */
			 <0x00008000 0x00038000 0x001000>,	/* ap 41 */
			 <0x00009000 0x00039000 0x001000>,	/* ap 42 */
			 <0x0000a000 0x0003a000 0x001000>;	/* ap 43 */

		target-module@1000 {			/* 0x4ae31000, ap 34 60.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x1000 0x1000>;
		};

		target-module@3000 {			/* 0x4ae33000, ap 36 0a.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x3000 0x1000>;
		};

		target-module@5000 {			/* 0x4ae35000, ap 38 0c.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x5000 0x1000>;
		};

		target-module@7000 {			/* 0x4ae37000, ap 40 68.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x7000 0x1000>;
		};

		target-module@9000 {			/* 0x4ae39000, ap 42 70.0 */
			compatible = "ti,sysc";
			status = "disabled";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0x9000 0x1000>;
		};

		target-module@c000 {			/* 0x4ae3c000, ap 30 04.0 */
			compatible = "ti,sysc-omap4", "ti,sysc";
			reg = <0xc020 0x4>;
			reg-names = "rev";
			clocks = <&wkupaon_clkctrl DRA7_WKUPAON_DCAN1_CLKCTRL 0>;
			clock-names = "fck";
			#address-cells = <1>;
			#size-cells = <1>;
			ranges = <0x0 0xc000 0x2000>;

			dcan1: can@0 {
				compatible = "ti,dra7-d_can";
				reg = <0x0 0x2000>;
				syscon-raminit = <&scm_conf 0x558 0>;
				interrupts = <GIC_SPI 222 IRQ_TYPE_LEVEL_HIGH>;
				clocks = <&wkupaon_clkctrl DRA7_WKUPAON_DCAN1_CLKCTRL 24>;
				status = "disabled";
			};
		};
	};
};