summaryrefslogtreecommitdiffstats
path: root/hdata/test/p81-811.spira.dts
blob: e3224b04fef6e792c8d10fa2ac3bab8b565a8fe7 (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
/dts-v1/;

/memreserve/	0x000070fd1f000000 0x0000100000000000;
/memreserve/	0x00d06bfd1f000000 0x0030040000000000;
/memreserve/	0x006058fd1f000000 0x0070130000000000;
/ {
	phandle = <0x1>;
	#address-cells = <0x2>;
	#size-cells = <0x2>;
	lid-type = "phyp";
	compatible = "ibm,powernv", "ibm,firenze";
	nest-frequency = <0x0 0x77359400>;
	vendor = "IBM";
	ibm,io-base-loc-code = "U78CB.001.WZS00AL-P1";
	ibm,vpd-lx-info = <0x0 0x1040031 0x42003000>;
	model = "8247-22L";
	system-id = "1010C8A";
	system-brand = "S0";
	model-name = "IBM Power System S822L";
	ibm,hbrt-mini-fdt = <0xcafebeef 0x1000 0xfad5bb>;
	reserved-ranges = <0x1f 0xfd700000 0x0 0x100000 0x1f 0xfd6bd000 0x0 0x43000 0x1f 0xfd586000 0x0 0x137000>;
	reserved-names = "ibm,hbrt-vpd-image", "ibm,hbrt-target-image", "ibm,hbrt-code-image";
	ibm,enabled-idle-states = "nap", "fast-sleep", "rvwinkle";

	cpus {
		phandle = <0x2a>;
		#address-cells = <0x1>;
		#size-cells = <0x0>;

		PowerPC,POWER8@20 {
			phandle = <0x2b>;
			device_type = "cpu";
			status = "okay";
			reg = <0x20>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x2c>;
			ibm,pir = <0x20>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x20 0x21 0x22 0x23 0x24 0x25 0x26 0x27>;
		};

		PowerPC,POWER8@30 {
			phandle = <0x2f>;
			device_type = "cpu";
			status = "okay";
			reg = <0x30>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x30>;
			ibm,pir = <0x30>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x30 0x31 0x32 0x33 0x34 0x35 0x36 0x37>;
		};

		PowerPC,POWER8@60 {
			phandle = <0x33>;
			device_type = "cpu";
			status = "okay";
			reg = <0x60>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x34>;
			ibm,pir = <0x60>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x60 0x61 0x62 0x63 0x64 0x65 0x66 0x67>;
		};

		PowerPC,POWER8@68 {
			phandle = <0x37>;
			device_type = "cpu";
			status = "okay";
			reg = <0x68>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x38>;
			ibm,pir = <0x68>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x68 0x69 0x6a 0x6b 0x6c 0x6d 0x6e 0x6f>;
		};

		PowerPC,POWER8@70 {
			phandle = <0x3b>;
			device_type = "cpu";
			status = "okay";
			reg = <0x70>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x3c>;
			ibm,pir = <0x70>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x70 0x71 0x72 0x73 0x74 0x75 0x76 0x77>;
		};

		PowerPC,POWER8@a8 {
			phandle = <0x3f>;
			device_type = "cpu";
			status = "okay";
			reg = <0xa8>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x40>;
			ibm,pir = <0xa8>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xa8 0xa9 0xaa 0xab 0xac 0xad 0xae 0xaf>;
		};

		PowerPC,POWER8@b0 {
			phandle = <0x43>;
			device_type = "cpu";
			status = "okay";
			reg = <0xb0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x44>;
			ibm,pir = <0xb0>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xb0 0xb1 0xb2 0xb3 0xb4 0xb5 0xb6 0xb7>;
		};

		PowerPC,POWER8@e0 {
			phandle = <0x47>;
			device_type = "cpu";
			status = "okay";
			reg = <0xe0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x48>;
			ibm,pir = <0xe0>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xe0 0xe1 0xe2 0xe3 0xe4 0xe5 0xe6 0xe7>;
		};

		PowerPC,POWER8@e8 {
			phandle = <0x4b>;
			device_type = "cpu";
			status = "okay";
			reg = <0xe8>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x4c>;
			ibm,pir = <0xe8>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xe8 0xe9 0xea 0xeb 0xec 0xed 0xee 0xef>;
		};

		PowerPC,POWER8@f0 {
			phandle = <0x4f>;
			device_type = "cpu";
			status = "okay";
			reg = <0xf0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x50>;
			ibm,pir = <0xf0>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xf0 0xf1 0xf2 0xf3 0xf4 0xf5 0xf6 0xf7>;
		};

		PowerPC,POWER8@828 {
			phandle = <0x53>;
			device_type = "cpu";
			status = "okay";
			reg = <0x828>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x54>;
			ibm,pir = <0x828>;
			ibm,chip-id = <0x10>;
			ibm,ppc-interrupt-server#s = <0x828 0x829 0x82a 0x82b 0x82c 0x82d 0x82e 0x82f>;
		};

		PowerPC,POWER8@830 {
			phandle = <0x57>;
			device_type = "cpu";
			status = "okay";
			reg = <0x830>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x58>;
			ibm,pir = <0x830>;
			ibm,chip-id = <0x10>;
			ibm,ppc-interrupt-server#s = <0x830 0x831 0x832 0x833 0x834 0x835 0x836 0x837>;
		};

		PowerPC,POWER8@860 {
			phandle = <0x5b>;
			device_type = "cpu";
			status = "okay";
			reg = <0x860>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x5c>;
			ibm,pir = <0x860>;
			ibm,chip-id = <0x10>;
			ibm,ppc-interrupt-server#s = <0x860 0x861 0x862 0x863 0x864 0x865 0x866 0x867>;
		};

		PowerPC,POWER8@868 {
			phandle = <0x5f>;
			device_type = "cpu";
			status = "okay";
			reg = <0x868>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x60>;
			ibm,pir = <0x868>;
			ibm,chip-id = <0x10>;
			ibm,ppc-interrupt-server#s = <0x868 0x869 0x86a 0x86b 0x86c 0x86d 0x86e 0x86f>;
		};

		PowerPC,POWER8@870 {
			phandle = <0x63>;
			device_type = "cpu";
			status = "okay";
			reg = <0x870>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x64>;
			ibm,pir = <0x870>;
			ibm,chip-id = <0x10>;
			ibm,ppc-interrupt-server#s = <0x870 0x871 0x872 0x873 0x874 0x875 0x876 0x877>;
		};

		PowerPC,POWER8@8a0 {
			phandle = <0x67>;
			device_type = "cpu";
			status = "okay";
			reg = <0x8a0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x68>;
			ibm,pir = <0x8a0>;
			ibm,chip-id = <0x11>;
			ibm,ppc-interrupt-server#s = <0x8a0 0x8a1 0x8a2 0x8a3 0x8a4 0x8a5 0x8a6 0x8a7>;
		};

		PowerPC,POWER8@8a8 {
			phandle = <0x6b>;
			device_type = "cpu";
			status = "okay";
			reg = <0x8a8>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x6c>;
			ibm,pir = <0x8a8>;
			ibm,chip-id = <0x11>;
			ibm,ppc-interrupt-server#s = <0x8a8 0x8a9 0x8aa 0x8ab 0x8ac 0x8ad 0x8ae 0x8af>;
		};

		PowerPC,POWER8@8b0 {
			phandle = <0x6f>;
			device_type = "cpu";
			status = "okay";
			reg = <0x8b0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x70>;
			ibm,pir = <0x8b0>;
			ibm,chip-id = <0x11>;
			ibm,ppc-interrupt-server#s = <0x8b0 0x8b1 0x8b2 0x8b3 0x8b4 0x8b5 0x8b6 0x8b7>;
		};

		PowerPC,POWER8@8e8 {
			phandle = <0x73>;
			device_type = "cpu";
			status = "okay";
			reg = <0x8e8>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x74>;
			ibm,pir = <0x8e8>;
			ibm,chip-id = <0x11>;
			ibm,ppc-interrupt-server#s = <0x8e8 0x8e9 0x8ea 0x8eb 0x8ec 0x8ed 0x8ee 0x8ef>;
		};

		PowerPC,POWER8@8f0 {
			phandle = <0x77>;
			device_type = "cpu";
			status = "okay";
			reg = <0x8f0>;
			cpu-version = <0x4d0200>;
			64-bit;
			32-64-bridge;
			graphics;
			general-purpose;
			ibm,processor-segment-sizes = <0x1c 0x28 0xffffffff 0xffffffff>;
			ibm,processor-page-sizes = <0xc 0x10 0x18 0x22>;
			ibm,segment-page-sizes = <0xc 0x0 0x3 0xc 0x0 0x10 0x7 0x18 0x38 0x10 0x110 0x2 0x10 0x1 0x18 0x8 0x18 0x100 0x1 0x18 0x0 0x22 0x120 0x1 0x22 0x3>;
			ibm,pa-features = [18 00 f6 3f c7 c0 80 d0 80 00 00 00 00 00 00 00 00 00 80 00 80 00 80 00 80 00];
			ibm,slb-size = <0x20>;
			ibm,vmx = <0x2>;
			ibm,dfp = <0x2>;
			ibm,purr = <0x1>;
			ibm,spurr = <0x1>;
			clock-frequency = <0xcc255a40>;
			ibm,extended-clock-frequency = <0x0 0xcc255a40>;
			timebase-frequency = <0x1e848000>;
			ibm,extended-timebase-frequency = <0x0 0x1e848000>;
			reservation-granule-size = <0x80>;
			d-tlb-size = <0x800>;
			i-tlb-size = <0x0>;
			tlb-size = <0x800>;
			d-tlb-sets = <0x4>;
			i-tlb-sets = <0x0>;
			tlb-sets = <0x4>;
			d-cache-block-size = <0x80>;
			i-cache-block-size = <0x80>;
			d-cache-size = <0x10000>;
			i-cache-size = <0x8000>;
			i-cache-sets = <0x4>;
			d-cache-sets = <0x8>;
			performance-monitor = <0x0 0x1>;
			l2-cache = <0x78>;
			ibm,pir = <0x8f0>;
			ibm,chip-id = <0x11>;
			ibm,ppc-interrupt-server#s = <0x8f0 0x8f1 0x8f2 0x8f3 0x8f4 0x8f5 0x8f6 0x8f7>;
		};

		l2-cache@20000020 {
			phandle = <0x2c>;
			device_type = "cache";
			reg = <0x20000020>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x2d>;
		};

		l2-cache@20000030 {
			phandle = <0x30>;
			device_type = "cache";
			reg = <0x20000030>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x31>;
		};

		l2-cache@20000060 {
			phandle = <0x34>;
			device_type = "cache";
			reg = <0x20000060>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x35>;
		};

		l2-cache@20000068 {
			phandle = <0x38>;
			device_type = "cache";
			reg = <0x20000068>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x39>;
		};

		l2-cache@20000070 {
			phandle = <0x3c>;
			device_type = "cache";
			reg = <0x20000070>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x3d>;
		};

		l2-cache@200000a8 {
			phandle = <0x40>;
			device_type = "cache";
			reg = <0x200000a8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x41>;
		};

		l2-cache@200000b0 {
			phandle = <0x44>;
			device_type = "cache";
			reg = <0x200000b0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x45>;
		};

		l2-cache@200000e0 {
			phandle = <0x48>;
			device_type = "cache";
			reg = <0x200000e0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x49>;
		};

		l2-cache@200000e8 {
			phandle = <0x4c>;
			device_type = "cache";
			reg = <0x200000e8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x4d>;
		};

		l2-cache@200000f0 {
			phandle = <0x50>;
			device_type = "cache";
			reg = <0x200000f0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x51>;
		};

		l2-cache@20000828 {
			phandle = <0x54>;
			device_type = "cache";
			reg = <0x20000828>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x55>;
		};

		l2-cache@20000830 {
			phandle = <0x58>;
			device_type = "cache";
			reg = <0x20000830>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x59>;
		};

		l2-cache@20000860 {
			phandle = <0x5c>;
			device_type = "cache";
			reg = <0x20000860>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x5d>;
		};

		l2-cache@20000868 {
			phandle = <0x60>;
			device_type = "cache";
			reg = <0x20000868>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x61>;
		};

		l2-cache@20000870 {
			phandle = <0x64>;
			device_type = "cache";
			reg = <0x20000870>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x65>;
		};

		l2-cache@200008a0 {
			phandle = <0x68>;
			device_type = "cache";
			reg = <0x200008a0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x69>;
		};

		l2-cache@200008a8 {
			phandle = <0x6c>;
			device_type = "cache";
			reg = <0x200008a8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x6d>;
		};

		l2-cache@200008b0 {
			phandle = <0x70>;
			device_type = "cache";
			reg = <0x200008b0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x71>;
		};

		l2-cache@200008e8 {
			phandle = <0x74>;
			device_type = "cache";
			reg = <0x200008e8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x75>;
		};

		l2-cache@200008f0 {
			phandle = <0x78>;
			device_type = "cache";
			reg = <0x200008f0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x79>;
		};

		l3-cache@30000020 {
			phandle = <0x2d>;
			device_type = "cache";
			reg = <0x30000020>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000030 {
			phandle = <0x31>;
			device_type = "cache";
			reg = <0x30000030>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000060 {
			phandle = <0x35>;
			device_type = "cache";
			reg = <0x30000060>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000068 {
			phandle = <0x39>;
			device_type = "cache";
			reg = <0x30000068>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000070 {
			phandle = <0x3d>;
			device_type = "cache";
			reg = <0x30000070>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300000a8 {
			phandle = <0x41>;
			device_type = "cache";
			reg = <0x300000a8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300000b0 {
			phandle = <0x45>;
			device_type = "cache";
			reg = <0x300000b0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300000e0 {
			phandle = <0x49>;
			device_type = "cache";
			reg = <0x300000e0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300000e8 {
			phandle = <0x4d>;
			device_type = "cache";
			reg = <0x300000e8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300000f0 {
			phandle = <0x51>;
			device_type = "cache";
			reg = <0x300000f0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000828 {
			phandle = <0x55>;
			device_type = "cache";
			reg = <0x30000828>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000830 {
			phandle = <0x59>;
			device_type = "cache";
			reg = <0x30000830>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000860 {
			phandle = <0x5d>;
			device_type = "cache";
			reg = <0x30000860>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000868 {
			phandle = <0x61>;
			device_type = "cache";
			reg = <0x30000868>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@30000870 {
			phandle = <0x65>;
			device_type = "cache";
			reg = <0x30000870>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300008a0 {
			phandle = <0x69>;
			device_type = "cache";
			reg = <0x300008a0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300008a8 {
			phandle = <0x6d>;
			device_type = "cache";
			reg = <0x300008a8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300008b0 {
			phandle = <0x71>;
			device_type = "cache";
			reg = <0x300008b0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300008e8 {
			phandle = <0x75>;
			device_type = "cache";
			reg = <0x300008e8>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};

		l3-cache@300008f0 {
			phandle = <0x79>;
			device_type = "cache";
			reg = <0x300008f0>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x800000>;
			i-cache-size = <0x800000>;
		};
	};

	fsps {
		phandle = <0x8b>;
		#address-cells = <0x1>;
		#size-cells = <0x0>;

		fsp@0 {
			phandle = <0x8c>;
			reg = <0x0>;
			compatible = "ibm,fsp", "ibm,fsp2";
			reg-offset = <0xb0011000>;
			hw-version = <0x2>;
			sw-version = <0x1>;
			primary;
			ibm,psi-links = <0x0 0x10000000>;
		};
	};

	ibm,opal {
		phandle = <0x28>;

		leds {
			phandle = <0x29>;
			led-mode = "lightpath";

			U8247.22L.1010C8A {
				phandle = <0x9d>;
				led-types = "attention";
			};
		};
	};

	interrupt-controller@3ffff80020000 {
		phandle = <0x2e>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x20 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80020000 0x0 0x1000 0x3ffff 0x80021000 0x0 0x1000 0x3ffff 0x80022000 0x0 0x1000 0x3ffff 0x80023000 0x0 0x1000 0x3ffff 0x80024000 0x0 0x1000 0x3ffff 0x80025000 0x0 0x1000 0x3ffff 0x80026000 0x0 0x1000 0x3ffff 0x80027000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80030000 {
		phandle = <0x32>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x30 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80030000 0x0 0x1000 0x3ffff 0x80031000 0x0 0x1000 0x3ffff 0x80032000 0x0 0x1000 0x3ffff 0x80033000 0x0 0x1000 0x3ffff 0x80034000 0x0 0x1000 0x3ffff 0x80035000 0x0 0x1000 0x3ffff 0x80036000 0x0 0x1000 0x3ffff 0x80037000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80060000 {
		phandle = <0x36>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x60 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80060000 0x0 0x1000 0x3ffff 0x80061000 0x0 0x1000 0x3ffff 0x80062000 0x0 0x1000 0x3ffff 0x80063000 0x0 0x1000 0x3ffff 0x80064000 0x0 0x1000 0x3ffff 0x80065000 0x0 0x1000 0x3ffff 0x80066000 0x0 0x1000 0x3ffff 0x80067000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80068000 {
		phandle = <0x3a>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x68 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80068000 0x0 0x1000 0x3ffff 0x80069000 0x0 0x1000 0x3ffff 0x8006a000 0x0 0x1000 0x3ffff 0x8006b000 0x0 0x1000 0x3ffff 0x8006c000 0x0 0x1000 0x3ffff 0x8006d000 0x0 0x1000 0x3ffff 0x8006e000 0x0 0x1000 0x3ffff 0x8006f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80070000 {
		phandle = <0x3e>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x70 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80070000 0x0 0x1000 0x3ffff 0x80071000 0x0 0x1000 0x3ffff 0x80072000 0x0 0x1000 0x3ffff 0x80073000 0x0 0x1000 0x3ffff 0x80074000 0x0 0x1000 0x3ffff 0x80075000 0x0 0x1000 0x3ffff 0x80076000 0x0 0x1000 0x3ffff 0x80077000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80128000 {
		phandle = <0x42>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0xa8 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80128000 0x0 0x1000 0x3ffff 0x80129000 0x0 0x1000 0x3ffff 0x8012a000 0x0 0x1000 0x3ffff 0x8012b000 0x0 0x1000 0x3ffff 0x8012c000 0x0 0x1000 0x3ffff 0x8012d000 0x0 0x1000 0x3ffff 0x8012e000 0x0 0x1000 0x3ffff 0x8012f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80130000 {
		phandle = <0x46>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0xb0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80130000 0x0 0x1000 0x3ffff 0x80131000 0x0 0x1000 0x3ffff 0x80132000 0x0 0x1000 0x3ffff 0x80133000 0x0 0x1000 0x3ffff 0x80134000 0x0 0x1000 0x3ffff 0x80135000 0x0 0x1000 0x3ffff 0x80136000 0x0 0x1000 0x3ffff 0x80137000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80160000 {
		phandle = <0x4a>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0xe0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80160000 0x0 0x1000 0x3ffff 0x80161000 0x0 0x1000 0x3ffff 0x80162000 0x0 0x1000 0x3ffff 0x80163000 0x0 0x1000 0x3ffff 0x80164000 0x0 0x1000 0x3ffff 0x80165000 0x0 0x1000 0x3ffff 0x80166000 0x0 0x1000 0x3ffff 0x80167000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80168000 {
		phandle = <0x4e>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0xe8 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80168000 0x0 0x1000 0x3ffff 0x80169000 0x0 0x1000 0x3ffff 0x8016a000 0x0 0x1000 0x3ffff 0x8016b000 0x0 0x1000 0x3ffff 0x8016c000 0x0 0x1000 0x3ffff 0x8016d000 0x0 0x1000 0x3ffff 0x8016e000 0x0 0x1000 0x3ffff 0x8016f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80170000 {
		phandle = <0x52>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0xf0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80170000 0x0 0x1000 0x3ffff 0x80171000 0x0 0x1000 0x3ffff 0x80172000 0x0 0x1000 0x3ffff 0x80173000 0x0 0x1000 0x3ffff 0x80174000 0x0 0x1000 0x3ffff 0x80175000 0x0 0x1000 0x3ffff 0x80176000 0x0 0x1000 0x3ffff 0x80177000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80828000 {
		phandle = <0x56>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x828 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80828000 0x0 0x1000 0x3ffff 0x80829000 0x0 0x1000 0x3ffff 0x8082a000 0x0 0x1000 0x3ffff 0x8082b000 0x0 0x1000 0x3ffff 0x8082c000 0x0 0x1000 0x3ffff 0x8082d000 0x0 0x1000 0x3ffff 0x8082e000 0x0 0x1000 0x3ffff 0x8082f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80830000 {
		phandle = <0x5a>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x830 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80830000 0x0 0x1000 0x3ffff 0x80831000 0x0 0x1000 0x3ffff 0x80832000 0x0 0x1000 0x3ffff 0x80833000 0x0 0x1000 0x3ffff 0x80834000 0x0 0x1000 0x3ffff 0x80835000 0x0 0x1000 0x3ffff 0x80836000 0x0 0x1000 0x3ffff 0x80837000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80860000 {
		phandle = <0x5e>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x860 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80860000 0x0 0x1000 0x3ffff 0x80861000 0x0 0x1000 0x3ffff 0x80862000 0x0 0x1000 0x3ffff 0x80863000 0x0 0x1000 0x3ffff 0x80864000 0x0 0x1000 0x3ffff 0x80865000 0x0 0x1000 0x3ffff 0x80866000 0x0 0x1000 0x3ffff 0x80867000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80868000 {
		phandle = <0x62>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x868 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80868000 0x0 0x1000 0x3ffff 0x80869000 0x0 0x1000 0x3ffff 0x8086a000 0x0 0x1000 0x3ffff 0x8086b000 0x0 0x1000 0x3ffff 0x8086c000 0x0 0x1000 0x3ffff 0x8086d000 0x0 0x1000 0x3ffff 0x8086e000 0x0 0x1000 0x3ffff 0x8086f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80870000 {
		phandle = <0x66>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x870 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80870000 0x0 0x1000 0x3ffff 0x80871000 0x0 0x1000 0x3ffff 0x80872000 0x0 0x1000 0x3ffff 0x80873000 0x0 0x1000 0x3ffff 0x80874000 0x0 0x1000 0x3ffff 0x80875000 0x0 0x1000 0x3ffff 0x80876000 0x0 0x1000 0x3ffff 0x80877000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80920000 {
		phandle = <0x6a>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x8a0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80920000 0x0 0x1000 0x3ffff 0x80921000 0x0 0x1000 0x3ffff 0x80922000 0x0 0x1000 0x3ffff 0x80923000 0x0 0x1000 0x3ffff 0x80924000 0x0 0x1000 0x3ffff 0x80925000 0x0 0x1000 0x3ffff 0x80926000 0x0 0x1000 0x3ffff 0x80927000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80928000 {
		phandle = <0x6e>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x8a8 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80928000 0x0 0x1000 0x3ffff 0x80929000 0x0 0x1000 0x3ffff 0x8092a000 0x0 0x1000 0x3ffff 0x8092b000 0x0 0x1000 0x3ffff 0x8092c000 0x0 0x1000 0x3ffff 0x8092d000 0x0 0x1000 0x3ffff 0x8092e000 0x0 0x1000 0x3ffff 0x8092f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80930000 {
		phandle = <0x72>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x8b0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80930000 0x0 0x1000 0x3ffff 0x80931000 0x0 0x1000 0x3ffff 0x80932000 0x0 0x1000 0x3ffff 0x80933000 0x0 0x1000 0x3ffff 0x80934000 0x0 0x1000 0x3ffff 0x80935000 0x0 0x1000 0x3ffff 0x80936000 0x0 0x1000 0x3ffff 0x80937000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80968000 {
		phandle = <0x76>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x8e8 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80968000 0x0 0x1000 0x3ffff 0x80969000 0x0 0x1000 0x3ffff 0x8096a000 0x0 0x1000 0x3ffff 0x8096b000 0x0 0x1000 0x3ffff 0x8096c000 0x0 0x1000 0x3ffff 0x8096d000 0x0 0x1000 0x3ffff 0x8096e000 0x0 0x1000 0x3ffff 0x8096f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80970000 {
		phandle = <0x7a>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x8f0 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80970000 0x0 0x1000 0x3ffff 0x80971000 0x0 0x1000 0x3ffff 0x80972000 0x0 0x1000 0x3ffff 0x80973000 0x0 0x1000 0x3ffff 0x80974000 0x0 0x1000 0x3ffff 0x80975000 0x0 0x1000 0x3ffff 0x80976000 0x0 0x1000 0x3ffff 0x80977000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	ipl-params {
		phandle = <0x7b>;
		#address-cells = <0x0>;
		#size-cells = <0x0>;

		fsp-serial {
			phandle = <0x7e>;
			#address-cells = <0x1>;
			#size-cells = <0x0>;

			serial@2a00 {
				phandle = <0x7f>;
				reg = <0x2a00>;
				ibm,loc-code = "U78CB.001.WZS00AL-P1-C1-T1";
				compatible = "ibm,fsp-serial";
			};
		};

		ipl-params {
			phandle = <0x7d>;
			#address-cells = <0x0>;
			#size-cells = <0x0>;
			cec-ipl-side = "perm";
			fsp-ipl-side = "perm";
			os-ipl-mode = <0x0>;
			cec-major-type = "cold";
		};

		platform-dump {
			phandle = <0x80>;
		};

		sys-params {
			phandle = <0x7c>;
			#address-cells = <0x0>;
			#size-cells = <0x0>;
			ibm,sys-model = " 22L";
		};
	};

	memory@0 {
		phandle = <0x89>;
		device_type = "memory";
		ibm,chip-id = <0x0>;
		reg = <0x0 0x0 0x10 0x0>;
	};

	memory@1000000000 {
		phandle = <0x8a>;
		device_type = "memory";
		ibm,chip-id = <0x10>;
		reg = <0x10 0x0 0x10 0x0>;
	};

	vpd {
		phandle = <0x2>;
		compatible = "ibm,opal-v3-vpd";
		#size-cells = <0x0>;
		#address-cells = <0x1>;
		ibm,vpd = <0x84b00052 0x54045653 0x59534452 0x6535953 0x54454d42 0x52025330 0x53450731 0x30313043 0x38415347 0x7202020 0x20202020 0x544d0838 0x3234372d 0x32324c54 0x4e082020 0x20202020 0x20204d4e 0x7202020 0x20202020 0x49440220 0x20535506 0x4ac1a 0x43544e4e 0x10202020 0x20202020 0x20202020 0x20202020 0x20524704 0xf0c00000 0x52420433 0x20202057 0x4e0c4330 0x35303736 0x30373830 0x44324656 0x20535638 0x31305f30 0x32390000 0x0 0x0 0x0 0x0 0x0 0x504603 0x78 0x0>;
		ibm,loc-code = "U8247.22L.1010C8A";

		root-node-vpd@a000 {
			phandle = <0x3>;
			ibm,loc-code = "U8247.22L.1010C8A";
			fru-type = [56 56];
			reg = <0xa000>;
			#size-cells = <0x0>;
			#address-cells = <0x1>;

			enclosure-fault-led@a300 {
				phandle = <0x7>;
				ibm,loc-code = "U78CB.001.WZS00AL";
				fru-type = [45 46];
				reg = <0xa300>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
			};

			enclosure-led@a200 {
				phandle = <0x6>;
				ibm,loc-code = "U78CB.001.WZS00AL";
				fru-type = [45 49];
				reg = <0xa200>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
			};

			enclosure@1e00 {
				phandle = <0x5>;
				ibm,loc-code = "U78CB.001.WZS00AL";
				fru-type = [45 56];
				reg = <0x1e00>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
				ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3032464e 0x7303045 0x32303232 0x504e0730 0x30453339 0x3937534e 0xc594c31 0x30554634 0x324c3031 0x33434304 0x32434436 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x44233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x425046 0x2000078 0x84440052 0x54045643 0x454e4452 0x6434543 0x20202053 0x4507575a 0x53303041 0x4c544d08 0x20202020 0x20202020 0x46430837 0x3843422d 0x30303152 0x47040000 0x5242 0x4202020 0x20504603 0x78 0x0>;
				fru-number = "00E2022";
				serial-number = "YL10UF42L013";
				part-number = "00E3997";
				ccin-extension = [31 00];
				hw-version = [00];
				card-type = [80 f3 00];
				hw-characteristics = [00];
				ccin = "2CD6";
				description = "System planar 2S2U";

				air-mover@3a00 {
					phandle = <0xf>;
					ibm,loc-code = "U78CB.001.WZS00AL-A1";
					fru-type = [41 4d];
					reg = <0x3a00>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				air-mover@3a01 {
					phandle = <0x10>;
					ibm,loc-code = "U78CB.001.WZS00AL-A3";
					fru-type = [41 4d];
					reg = <0x3a01>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				air-mover@3a02 {
					phandle = <0x11>;
					ibm,loc-code = "U78CB.001.WZS00AL-A4";
					fru-type = [41 4d];
					reg = <0x3a02>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				air-mover@3a03 {
					phandle = <0x12>;
					ibm,loc-code = "U78CB.001.WZS00AL-A6";
					fru-type = [41 4d];
					reg = <0x3a03>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				air-mover@3a04 {
					phandle = <0x13>;
					ibm,loc-code = "U78CB.001.WZS00AL-A2";
					fru-type = [41 4d];
					reg = <0x3a04>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				air-mover@3a05 {
					phandle = <0x14>;
					ibm,loc-code = "U78CB.001.WZS00AL-A5";
					fru-type = [41 4d];
					reg = <0x3a05>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				backplane@800 {
					phandle = <0x8>;
					ibm,loc-code = "U78CB.001.WZS00AL-P1";
					fru-type = [42 50];
					reg = <0x800>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
					ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3032464e 0x7303045 0x32303232 0x504e0730 0x30453339 0x3937534e 0xc594c31 0x30554634 0x324c3031 0x33434304 0x32434436 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x44233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x425046 0x2000078 0x0>;
					fru-number = "00E2022";
					serial-number = "YL10UF42L013";
					part-number = "00E3997";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 f3 00];
					hw-characteristics = [00];
					ccin = "2CD6";
					description = "System planar 2S2U";

					anchor-card@500 {
						phandle = <0x1a>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C13";
						fru-type = [41 56];
						reg = <0x500>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84cc0052 0x54045649 0x4e494452 0x10414e43 0x484f5220 0x20202020 0x20202020 0x20434501 0x31565a02 0x3031464e 0x7303045 0x33343237 0x504e0730 0x30453231 0x3438534e 0xc594c31 0x30313134 0x32523030 0x30434304 0x35323444 0x50520881 0x300000 0x48 0x45043030 0x31304354 0x440b400 0x485702 0x14233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x4239 0x3c435340 0x55110351 0xdd6da253 0x5049652f 0x45748f7b 0x44d31c5 0x31833edf 0x1e75724d 0x328d48c1 0xb4246b02 0xee4d3367 0xb454d848 0x9f3a254d 0x340dadc4 0x4124b5ed 0xd5504603 0x78 0x0>;
						fru-number = "00E3427";
						serial-number = "YL101142R000";
						part-number = "00E2148";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [40 b4 00];
						hw-characteristics = [00];
						ccin = "524D";
						description = "System Anchor Card - IBM Power 822L";
					};

					backplane-extender@900 {
						phandle = <0x15>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C1";
						fru-type = [42 58];
						reg = <0x900>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84800052 0x54045649 0x4e494452 0x104e4154 0x49564520 0x492f4f20 0x43415244 0x20434501 0x31565a02 0x3031464e 0x7303045 0x32313634 0x504e0730 0x30453338 0x3131534e 0xc594c31 0x30554634 0x324c3030 0x31434304 0x32423042 0x48450430 0x30303143 0x540480b5 0x4857 0x2000142 0x33060000 0x0 0x42340100 0x42370c00 0x0 0x0 0x50 0x46010078 0x0>;
						fru-number = "00E2164";
						serial-number = "YL10UF42L001";
						part-number = "00E3811";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [80 b5 00];
						hw-characteristics = [00];
						ccin = "2B0B";
						description = "Native I/O Card";

						serial-connector@2a00 {
							phandle = <0x27>;
							ibm,loc-code = "U78CB.001.WZS00AL-P1-C1-T1";
							fru-type = [43 53];
							reg = <0x2a00>;
							#size-cells = <0x0>;
							#address-cells = <0x1>;
						};

						usb-connector@2901 {
							phandle = <0x25>;
							ibm,loc-code = "U78CB.001.WZS00AL-P1-C1-T2";
							fru-type = [43 55];
							reg = <0x2901>;
							#size-cells = <0x0>;
							#address-cells = <0x1>;
						};

						usb-connector@2904 {
							phandle = <0x26>;
							ibm,loc-code = "U78CB.001.WZS00AL-P1-C1-T3";
							fru-type = [43 55];
							reg = <0x2904>;
							#size-cells = <0x0>;
							#address-cells = <0x1>;
						};
					};

					ethernet-connector@2800 {
						phandle = <0x1b>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T1 ";
						fru-type = [43 45];
						reg = <0x2800>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					ethernet-connector@2801 {
						phandle = <0x1c>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T2 ";
						fru-type = [43 45];
						reg = <0x2801>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					ms-dimm@d000 {
						phandle = <0x21>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C16";
						fru-type = [4d 53];
						reg = <0xd000>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20333247 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3132464e 0x730304a 0x41363634 0x504e0730 0x304a4136 0x3634534e 0xc594831 0x304d5534 0x32443141 0x39434304 0x33314539 0x50520849 0x0 0x1000053 0x5a073030 0x33323736 0x38484504 0x30303031 0x43540400 0x48 0x57020100 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "00JA664";
						serial-number = "YH10MU42D1A9";
						part-number = "00JA664";
						ccin-extension = [31 00];
						hw-version = [01 00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E9";
						description = "32GB CDIMM";
						ibm,chip-id = <0x0>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0032768";
					};

					ms-dimm@d002 {
						phandle = <0x22>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C18";
						fru-type = [4d 53];
						reg = <0xd002>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20333247 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3132464e 0x730304a 0x41363634 0x504e0730 0x304a4136 0x3634534e 0xc594831 0x304d5534 0x32443141 0x36434304 0x33314539 0x50520849 0x0 0x1000053 0x5a073030 0x33323736 0x38484504 0x30303031 0x43540400 0x48 0x57020100 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "00JA664";
						serial-number = "YH10MU42D1A6";
						part-number = "00JA664";
						ccin-extension = [31 00];
						hw-version = [01 00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E9";
						description = "32GB CDIMM";
						ibm,chip-id = <0x0>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0032768";
					};

					ms-dimm@d008 {
						phandle = <0x23>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C24";
						fru-type = [4d 53];
						reg = <0xd008>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20333247 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3132464e 0x730304a 0x41363634 0x504e0730 0x304a4136 0x3634534e 0xc594831 0x304d5534 0x32433137 0x54434304 0x33314539 0x50520849 0x0 0x1000053 0x5a073030 0x33323736 0x38484504 0x30303031 0x43540400 0x48 0x57020100 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "00JA664";
						serial-number = "YH10MU42C17T";
						part-number = "00JA664";
						ccin-extension = [31 00];
						hw-version = [01 00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E9";
						description = "32GB CDIMM";
						ibm,chip-id = <0x10>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0032768";
					};

					ms-dimm@d00a {
						phandle = <0x24>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C26";
						fru-type = [4d 53];
						reg = <0xd00a>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20333247 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3132464e 0x730304a 0x41363634 0x504e0730 0x304a4136 0x3634534e 0xc594831 0x304d5534 0x32433141 0x48434304 0x33314539 0x50520849 0x0 0x1000053 0x5a073030 0x33323736 0x38484504 0x30303031 0x43540400 0x48 0x57020100 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "00JA664";
						serial-number = "YH10MU42C1AH";
						part-number = "00JA664";
						ccin-extension = [31 00];
						hw-version = [01 00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E9";
						description = "32GB CDIMM";
						ibm,chip-id = <0x10>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0032768";
					};

					processor@1000 {
						phandle = <0x16>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
						fru-type = [50 46];
						reg = <0x1000>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = [84 8c 00 52 54 04 56 49 4e 49 44 52 10 31 30 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 31 38 50 4e 07 30 30 46 58 37 34 30 53 4e 0c 59 41 31 39 33 32 30 39 36 39 35 31 43 43 04 35 34 45 38 48 45 04 30 30 30 31 43 54 04 00 00 00 00 48 57 02 00 01 42 33 06 00 00 00 00 00 00 42 34 01 00 42 37 0c 00 00 00 00 00 00 00 00 00 00 00 00 50 52 08 35 00 50 01 22 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX518";
						serial-number = "YA1932096951";
						part-number = "00FX740";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E8";
						description = "10-WAY PROC CUOD";
						ibm,chip-id = <0x0>;
					};

					processor@1001 {
						phandle = <0x17>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
						fru-type = [50 46];
						reg = <0x1001>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = [84 8c 00 52 54 04 56 49 4e 49 44 52 10 31 30 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 31 38 50 4e 07 30 30 46 58 37 34 30 53 4e 0c 59 41 31 39 33 32 30 39 36 39 35 31 43 43 04 35 34 45 38 48 45 04 30 30 30 31 43 54 04 00 00 00 00 48 57 02 00 01 42 33 06 00 00 00 00 00 00 42 34 01 00 42 37 0c 00 00 00 00 00 00 00 00 00 00 00 00 50 52 08 35 00 50 01 22 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX518";
						serial-number = "YA1932096951";
						part-number = "00FX740";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E8";
						description = "10-WAY PROC CUOD";
						ibm,chip-id = <0x1>;
					};

					processor@1002 {
						phandle = <0x18>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
						fru-type = [50 46];
						reg = <0x1002>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = [84 8c 00 52 54 04 56 49 4e 49 44 52 10 31 30 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 31 38 50 4e 07 30 30 46 58 37 34 30 53 4e 0c 59 41 31 39 33 32 30 39 36 39 35 30 43 43 04 35 34 45 38 48 45 04 30 30 30 31 43 54 04 00 00 00 00 48 57 02 00 01 42 33 06 00 00 00 00 00 00 42 34 01 00 42 37 0c 00 00 00 00 00 00 00 00 00 00 00 00 50 52 08 35 00 50 01 22 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX518";
						serial-number = "YA1932096950";
						part-number = "00FX740";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E8";
						description = "10-WAY PROC CUOD";
						ibm,chip-id = <0x10>;
					};

					processor@1003 {
						phandle = <0x19>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
						fru-type = [50 46];
						reg = <0x1003>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = [84 8c 00 52 54 04 56 49 4e 49 44 52 10 31 30 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 31 38 50 4e 07 30 30 46 58 37 34 30 53 4e 0c 59 41 31 39 33 32 30 39 36 39 35 30 43 43 04 35 34 45 38 48 45 04 30 30 30 31 43 54 04 00 00 00 00 48 57 02 00 01 42 33 06 00 00 00 00 00 00 42 34 01 00 42 37 0c 00 00 00 00 00 00 00 00 00 00 00 00 50 52 08 35 00 50 01 22 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX518";
						serial-number = "YA1932096950";
						part-number = "00FX740";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E8";
						description = "10-WAY PROC CUOD";
						ibm,chip-id = <0x11>;
					};

					usb-connector@2900 {
						phandle = <0x1d>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T5";
						fru-type = [43 55];
						reg = <0x2900>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					usb-connector@2902 {
						phandle = <0x1e>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T6";
						fru-type = [43 55];
						reg = <0x2902>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					usb-connector@2903 {
						phandle = <0x1f>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T3";
						fru-type = [43 55];
						reg = <0x2903>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					usb-connector@2905 {
						phandle = <0x20>;
						ibm,loc-code = "U78CB.001.WZS00AL-P1-T4";
						fru-type = [43 55];
						reg = <0x2905>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};
				};

				dasd-backplane@2400 {
					phandle = <0xb>;
					ibm,loc-code = "U78CB.001.WZS00AL-P2";
					fru-type = [44 42];
					reg = <0x2400>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				dasd-backplane@2401 {
					phandle = <0xc>;
					ibm,loc-code = "U78CB.001.WZS00AL-P2";
					fru-type = [44 42];
					reg = <0x2401>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				op-panel@300 {
					phandle = <0xa>;
					ibm,loc-code = "U78CB.001.WZS00AL-D1";
					fru-type = [4f 50];
					reg = <0x300>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
					ibm,vpd = <0x84800052 0x54045649 0x4e494452 0x10434543 0x204f5020 0x50414e45 0x4c202020 0x20434501 0x31565a02 0x3032464e 0x7303045 0x31393636 0x504e0730 0x30453337 0x3730534e 0xc594c31 0x30554634 0x31383030 0x46434304 0x32423038 0x48450430 0x30303143 0x540480b5 0x4857 0x2000342 0x33060000 0x0 0x42340100 0x42370c00 0x0 0x0 0x50 0x46010078 0x0>;
					fru-number = "00E1966";
					serial-number = "YL10UF41800F";
					part-number = "00E3770";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 b5 00];
					hw-characteristics = [00];
					ccin = "2B08";
					description = "CEC OP PANEL    ";
				};

				power-supply@3100 {
					phandle = <0xd>;
					ibm,loc-code = "U78CB.001.WZS00AL-E1";
					fru-type = [50 53];
					reg = <0x3100>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				power-supply@3101 {
					phandle = <0xe>;
					ibm,loc-code = "U78CB.001.WZS00AL-E2";
					fru-type = [50 53];
					reg = <0x3101>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				service-processor@200 {
					phandle = <0x9>;
					ibm,loc-code = "U78CB.001.WZS00AL-P1";
					fru-type = [53 50];
					reg = <0x200>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
					ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3032464e 0x7303045 0x32303232 0x504e0730 0x30453339 0x3937534e 0xc594c31 0x30554634 0x324c3031 0x33434304 0x32434436 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x44233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x425046 0x2000078 0x84500052 0x54045652 0x31304452 0x10465350 0x20202020 0x20202020 0x20202020 0x20464704 0x564e5350 0x44430f42 0x44203230 0x31323038 0x32333038 0x3030464c 0x14503120 0x20202020 0x20202020 0x20202020 0x20202020 0x20504603 0x78 0x84400052 0x54045657 0x31304452 0x10465350 0x20565731 0x30202020 0x20202020 0x20474420 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x50460078 0x0>;
					fru-number = "00E2022";
					serial-number = "YL10UF42L013";
					part-number = "00E3997";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 f3 00];
					hw-characteristics = [00];
					ccin = "2CD6";
					description = "System planar 2S2U";
				};
			};

			system-vpd@1c00 {
				phandle = <0x4>;
				ibm,loc-code = "U8247.22L.1010C8A";
				fru-type = [53 56];
				reg = <0x1c00>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
			};
		};
	};

	xscom@3fc0000000000 {
		phandle = <0x81>;
		ibm,chip-id = <0x0>;
		ibm,proc-chip-id = <0x0>;
		#address-cells = <0x1>;
		#size-cells = <0x1>;
		scom-controller;
		compatible = "ibm,xscom", "ibm,power8-xscom";
		reg = <0x3fc00 0x0 0x8 0x0>;
		bus-frequency = <0x0 0x1dcd6500>;
		ibm,dbob-id = <0x0>;
		ibm,occ-functional-state = <0x1>;
		ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
		ibm,module-vpd = <0xcafebeef 0x10000 0x3e067c18>;
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x0>;
		ibm,mem-interleave-scope = <0x0>;

		chiptod@40000 {
			phandle = <0x8d>;
			reg = <0x40000 0x34>;
			compatible = "ibm,power-chiptod", "ibm,power8-chiptod";
			primary;
		};

		nx@2010000 {
			phandle = <0x91>;
			compatible = "ibm,power-nx", "ibm,power8-nx";
			reg = <0x2010000 0x4000>;
		};

		pbcq@2012000 {
			phandle = <0x95>;
			reg = <0x200102 0x20000000 0x200109 0x5000000 0x3c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x0>;
			ibm,hub-id = <0x0>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777>;
		};

		pbcq@2012400 {
			phandle = <0x96>;
			reg = <0x240102 0x20000000 0x240109 0x5000000 0x403c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x1>;
			ibm,hub-id = <0x0>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x0 0x0 0x0 0x0>;
		};

		psihb@2010900 {
			phandle = <0x82>;
			reg = <0x2010900 0x20>;
			compatible = "ibm,power8-psihb-x", "ibm,psihb-x";
			boot-link;
			status = "ok";
		};
	};

	xscom@3fc0800000000 {
		phandle = <0x83>;
		ibm,chip-id = <0x1>;
		ibm,proc-chip-id = <0x1>;
		#address-cells = <0x1>;
		#size-cells = <0x1>;
		scom-controller;
		compatible = "ibm,xscom", "ibm,power8-xscom";
		reg = <0x3fc08 0x0 0x8 0x0>;
		bus-frequency = <0x0 0x1dcd6500>;
		ibm,dbob-id = <0x0>;
		ibm,occ-functional-state = <0x1>;
		ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
		ibm,module-vpd = <0xcafebeef 0x10000 0x1b85218f>;
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x0>;
		ibm,mem-interleave-scope = <0x0>;

		chiptod@40000 {
			phandle = <0x8e>;
			reg = <0x40000 0x34>;
			compatible = "ibm,power-chiptod", "ibm,power8-chiptod";
		};

		nx@2010000 {
			phandle = <0x92>;
			compatible = "ibm,power-nx", "ibm,power8-nx";
			reg = <0x2010000 0x4000>;
		};

		pbcq@2012000 {
			phandle = <0x97>;
			reg = <0x200102 0x20000000 0x200109 0x5000000 0x3c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x0>;
			ibm,hub-id = <0x1>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777>;
		};

		pbcq@2012400 {
			phandle = <0x98>;
			reg = <0x240102 0x20000000 0x240109 0x5000000 0x403c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x1>;
			ibm,hub-id = <0x1>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C32";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x68686868 0x68686868 0x68686868 0x68686868 0x0 0x0 0x0 0x0>;
		};

		psihb@2010900 {
			phandle = <0x84>;
			reg = <0x2010900 0x20>;
			compatible = "ibm,power8-psihb-x", "ibm,psihb-x";
		};
	};

	xscom@3fc8000000000 {
		phandle = <0x85>;
		ibm,chip-id = <0x10>;
		ibm,proc-chip-id = <0x2>;
		#address-cells = <0x1>;
		#size-cells = <0x1>;
		scom-controller;
		compatible = "ibm,xscom", "ibm,power8-xscom";
		reg = <0x3fc80 0x0 0x8 0x0>;
		bus-frequency = <0x0 0x1dcd6500>;
		ibm,dbob-id = <0x0>;
		ibm,occ-functional-state = <0x1>;
		ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
		ibm,module-vpd = <0xcafebeef 0x10000 0x36f99ead>;
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x1>;
		ibm,mem-interleave-scope = <0x0>;

		chiptod@40000 {
			phandle = <0x8f>;
			reg = <0x40000 0x34>;
			compatible = "ibm,power-chiptod", "ibm,power8-chiptod";
			secondary;
		};

		nx@2010000 {
			phandle = <0x93>;
			compatible = "ibm,power-nx", "ibm,power8-nx";
			reg = <0x2010000 0x4000>;
		};

		pbcq@2012000 {
			phandle = <0x99>;
			reg = <0x200102 0x20000000 0x200109 0x5000000 0x3c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x0>;
			ibm,hub-id = <0x2>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777>;
		};

		psihb@2010900 {
			phandle = <0x86>;
			reg = <0x2010900 0x20>;
			compatible = "ibm,power8-psihb-x", "ibm,psihb-x";
			status = "ok";
		};
	};

	xscom@3fc8800000000 {
		phandle = <0x87>;
		ibm,chip-id = <0x11>;
		ibm,proc-chip-id = <0x3>;
		#address-cells = <0x1>;
		#size-cells = <0x1>;
		scom-controller;
		compatible = "ibm,xscom", "ibm,power8-xscom";
		reg = <0x3fc88 0x0 0x8 0x0>;
		bus-frequency = <0x0 0x1dcd6500>;
		ibm,dbob-id = <0x0>;
		ibm,occ-functional-state = <0x1>;
		ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
		ibm,module-vpd = <0xcafebeef 0x10000 0x65fe8f66>;
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x1>;
		ibm,mem-interleave-scope = <0x0>;

		chiptod@40000 {
			phandle = <0x90>;
			reg = <0x40000 0x34>;
			compatible = "ibm,power-chiptod", "ibm,power8-chiptod";
		};

		nx@2010000 {
			phandle = <0x94>;
			compatible = "ibm,power-nx", "ibm,power8-nx";
			reg = <0x2010000 0x4000>;
		};

		pbcq@2012000 {
			phandle = <0x9a>;
			reg = <0x200102 0x20000000 0x200109 0x5000000 0x3c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x0>;
			ibm,hub-id = <0x3>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777 0x77777777>;
		};

		pbcq@2012400 {
			phandle = <0x9b>;
			reg = <0x240102 0x20000000 0x240109 0x5000000 0x403c0109 0x15000000>;
			compatible = "ibm,power8-pbcq";
			ibm,phb-index = <0x1>;
			ibm,hub-id = <0x3>;
			ibm,loc-code = "U78CB.001.WZS00AL-P1-C33";
			ibm,use-ab-detect;
			ibm,lane-eq = <0x77777777 0x77777777 0x77777777 0x77777777 0x0 0x0 0x0 0x0>;
		};

		psihb@2010900 {
			phandle = <0x88>;
			reg = <0x2010900 0x20>;
			compatible = "ibm,power8-psihb-x", "ibm,psihb-x";
		};
	};
};
OpenPOWER on IntegriCloud