summaryrefslogtreecommitdiffstats
path: root/hdata/test/p8-840-spira.dts
blob: 62a2f52bc32792dcbd1ec649b2115cfb7d96fe54 (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
/dts-v1/;

/memreserve/	0x000070fd07000000 0x0000100000000000;
/memreserve/	0x00006afd07000000 0x0000060000000000;
/memreserve/	0x000051fd07000000 0x0000190000000000;
/ {
	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 = "U78C9.001.WZS0CWX-P1";
	ibm,vpd-lx-info = <0x0 0x1040031 0x43003000>;
	model = "8286-41A";
	system-id = "TU00163";
	system-brand = "S0";
	model-name = "IBM Power System S814";
	ibm,hbrt-mini-fdt = <0xcafebeef 0x1000 0x31ce42d>;
	reserved-ranges = <0x7 0xfd700000 0x0 0x100000 0x7 0xfd6a0000 0x0 0x60000 0x7 0xfd510000 0x0 0x190000>;
	reserved-names = "ibm,hbrt-vpd-image", "ibm,hbrt-target-image", "ibm,hbrt-code-image";
	ibm,enabled-idle-states = "nap", "fast-sleep", "rvwinkle";

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

		PowerPC,POWER8@28 {
			phandle = <0x23>;
			device_type = "cpu";
			status = "okay";
			reg = <0x28>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0x24>;
			ibm,pir = <0x28>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x28 0x29 0x2a 0x2b 0x2c 0x2d 0x2e 0x2f>;
		};

		PowerPC,POWER8@60 {
			phandle = <0x27>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0x28>;
			ibm,pir = <0x60>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x60 0x61 0x62 0x63 0x64 0x65 0x66 0x67>;
		};

		PowerPC,POWER8@68 {
			phandle = <0x2b>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0x68>;
			ibm,chip-id = <0x0>;
			ibm,ppc-interrupt-server#s = <0x68 0x69 0x6a 0x6b 0x6c 0x6d 0x6e 0x6f>;
		};

		PowerPC,POWER8@b0 {
			phandle = <0x2f>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0xb0>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xb0 0xb1 0xb2 0xb3 0xb4 0xb5 0xb6 0xb7>;
		};

		PowerPC,POWER8@e8 {
			phandle = <0x33>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0xe8>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xe8 0xe9 0xea 0xeb 0xec 0xed 0xee 0xef>;
		};

		PowerPC,POWER8@f0 {
			phandle = <0x37>;
			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 = <0xb45d1880>;
			ibm,extended-clock-frequency = <0x0 0xb45d1880>;
			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 = <0xf0>;
			ibm,chip-id = <0x1>;
			ibm,ppc-interrupt-server#s = <0xf0 0xf1 0xf2 0xf3 0xf4 0xf5 0xf6 0xf7>;
		};

		l2-cache@20000028 {
			phandle = <0x24>;
			device_type = "cache";
			reg = <0x20000028>;
			status = "okay";
			cache-unified;
			d-cache-sets = <0x8>;
			i-cache-sets = <0x8>;
			d-cache-size = <0x80000>;
			i-cache-size = <0x80000>;
			l2-cache = <0x25>;
		};

		l2-cache@20000060 {
			phandle = <0x28>;
			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 = <0x29>;
		};

		l2-cache@20000068 {
			phandle = <0x2c>;
			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 = <0x2d>;
		};

		l2-cache@200000b0 {
			phandle = <0x30>;
			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 = <0x31>;
		};

		l2-cache@200000e8 {
			phandle = <0x34>;
			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 = <0x35>;
		};

		l2-cache@200000f0 {
			phandle = <0x38>;
			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 = <0x39>;
		};

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

		l3-cache@30000060 {
			phandle = <0x29>;
			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 = <0x2d>;
			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@300000b0 {
			phandle = <0x31>;
			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@300000e8 {
			phandle = <0x35>;
			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 = <0x39>;
			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>;
		};
	};

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

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

	ibm,opal {
		phandle = <0x20>;

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

			U78C9.001.WZS0CWX-D1 {
				phandle = <0x7000015>;
				led-types = "attention";
			};
		};
	};

	interrupt-controller@3ffff80028000 {
		phandle = <0x26>;
		compatible = "ibm,ppc-xicp", "IBM,power8-icp";
		ibm,interrupt-server-ranges = <0x28 0x8>;
		interrupt-controller;
		reg = <0x3ffff 0x80028000 0x0 0x1000 0x3ffff 0x80029000 0x0 0x1000 0x3ffff 0x8002a000 0x0 0x1000 0x3ffff 0x8002b000 0x0 0x1000 0x3ffff 0x8002c000 0x0 0x1000 0x3ffff 0x8002d000 0x0 0x1000 0x3ffff 0x8002e000 0x0 0x1000 0x3ffff 0x8002f000 0x0 0x1000>;
		#address-cells = <0x0>;
		device_type = "PowerPC-External-Interrupt-Presentation";
	};

	interrupt-controller@3ffff80060000 {
		phandle = <0x2a>;
		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 = <0x2e>;
		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@3ffff80130000 {
		phandle = <0x32>;
		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@3ffff80168000 {
		phandle = <0x36>;
		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 = <0x3a>;
		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";
	};

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

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

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

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

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

		sys-params {
			phandle = <0x3c>;
			#address-cells = <0x0>;
			#size-cells = <0x0>;
			ibm,sys-model = " 41A";
		};
	};

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

	vpd {
		phandle = <0x2>;
		compatible = "ibm,opal-v3-vpd";
		#size-cells = <0x0>;
		#address-cells = <0x1>;
		ibm,vpd = <0x84b00052 0x54045653 0x59534452 0x6535953 0x54454d42 0x52025330 0x53450754 0x55303031 0x36335347 0x7202020 0x20202020 0x544d0838 0x3238362d 0x34314154 0x4e082020 0x20202020 0x20204d4e 0x7202020 0x20202020 0x49440220 0x20535506 0x4ac19 0x77064e4e 0x10202020 0x20202020 0x20202020 0x20202020 0x20524704 0xf0c00000 0x52420433 0x20202057 0x4e0c4330 0x35303736 0x30364237 0x30344656 0x20202020 0x20202020 0x20202020 0x20202020 0x20202020 0x20202020 0x20202020 0x20202020 0x20504603 0x78 0x0>;
		ibm,loc-code = "U8286.41A.TU00163";

		root-node-vpd@a000 {
			phandle = <0x3>;
			ibm,loc-code = "U8286.41A.TU00163";
			fru-type = [56 56];
			reg = <0xa000>;
			#size-cells = <0x0>;
			#address-cells = <0x1>;

			enclosure@1e00 {
				phandle = <0x5>;
				ibm,loc-code = "U78C9.001.WZS0CWX";
				fru-type = [45 56];
				reg = <0x1e00>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
				ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3031464e 0x7373459 0x34333434 0x504e0730 0x30453432 0x3431534e 0xc594c33 0x30554635 0x354e3030 0x36434304 0x32434435 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x74233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x435046 0x2000078 0x84440052 0x54045643 0x454e4452 0x6434543 0x20202053 0x4507575a 0x53304357 0x58544d08 0x20202020 0x20202020 0x46430837 0x3843392d 0x30303152 0x470400a0 0xb32c5242 0x4202020 0x20504603 0x78 0x0>;
				fru-number = "74Y4344";
				serial-number = "YL30UF55N006";
				part-number = "00E4241";
				ccin-extension = [31 00];
				hw-version = [00];
				card-type = [80 f3 00];
				hw-characteristics = [00];
				ccin = "2CD5";
				description = "System planar 1S4U";

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

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

				backplane@800 {
					phandle = <0x6>;
					ibm,loc-code = "U78C9.001.WZS0CWX-P1";
					fru-type = [42 50];
					reg = <0x800>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
					ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3031464e 0x7373459 0x34333434 0x504e0730 0x30453432 0x3431534e 0xc594c33 0x30554635 0x354e3030 0x36434304 0x32434435 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x74233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x435046 0x2000078 0x0>;
					fru-number = "74Y4344";
					serial-number = "YL30UF55N006";
					part-number = "00E4241";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 f3 00];
					hw-characteristics = [00];
					ccin = "2CD5";
					description = "System planar 1S4U";

					anchor-card@500 {
						phandle = <0x14>;
						ibm,loc-code = "U78C9.001.WZS0CWX-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 0x32313532 0x504e0730 0x30453231 0x3438534e 0xc594c31 0x30424733 0x3132314e 0x4a434304 0x35324632 0x50520881 0x300000 0x48 0x45043030 0x31304354 0x440b400 0x485702 0x14233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x4239 0x3c435331 0x58150757 0x4e705f53 0x50f139a0 0xbf7efeb7 0x44d314d 0xd7cd74f2 0x862d884d 0x327cb552 0x79809378 0xa24d333e 0x6aed1eb8 0x49dab34d 0x344e1745 0x9bf468e9 0xa1504603 0x78 0x0>;
						fru-number = "00E2152";
						serial-number = "YL10BG3121NJ";
						part-number = "00E2148";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [40 b4 00];
						hw-characteristics = [00];
						ccin = "52F2";
						description = "System Anchor Card - IBM Power 814";
					};

					backplane-extender@900 {
						phandle = <0x11>;
						ibm,loc-code = "U78C9.001.WZS0CWX-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 0x31393630 0x504e0730 0x30453338 0x3039534e 0xc594c31 0x30554635 0x3537304c 0x39434304 0x32423042 0x48450430 0x30303143 0x540480b5 0x4857 0x2000142 0x33060000 0x0 0x42340100 0x42370c00 0x0 0x0 0x50 0x46010078 0x0>;
						fru-number = "00E1960";
						serial-number = "YL10UF5570L9";
						part-number = "00E3809";
						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 = <0x1f>;
							ibm,loc-code = "U78C9.001.WZS0CWX-P1-C1-T1";
							fru-type = [43 53];
							reg = <0x2a00>;
							#size-cells = <0x0>;
							#address-cells = <0x1>;
						};

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

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

					hmc-connector@2d00 {
						phandle = <0x19>;
						ibm,loc-code = "U78C9.001.WZS0CWX-P1-T3";
						fru-type = [48 4d];
						reg = <0x2d00>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					hmc-connector@2d01 {
						phandle = <0x1a>;
						ibm,loc-code = "U78C9.001.WZS0CWX-P1-T4";
						fru-type = [48 4d];
						reg = <0x2d01>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

					ms-dimm@d000 {
						phandle = <0x1b>;
						ibm,loc-code = "U78C9.001.WZS0CWX-P1-C16";
						fru-type = [4d 53];
						reg = <0xd000>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20313647 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3034464e 0x7343154 0x39353735 0x504e0734 0x31543935 0x3735534e 0xc594833 0x314d5333 0x41343031 0x31434304 0x33314530 0x50520849 0x0 0x1000053 0x5a073030 0x31363338 0x34484504 0x30303031 0x43540400 0x48 0x57020090 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "41T9575";
						serial-number = "YH31MS3A4011";
						part-number = "41T9575";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E0";
						description = "16GB CDIMM";
						ibm,chip-id = <0x0>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0016384";
					};

					ms-dimm@d002 {
						phandle = <0x1c>;
						ibm,loc-code = "U78C9.001.WZS0CWX-P1-C18";
						fru-type = [4d 53];
						reg = <0xd002>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
						ibm,vpd = <0x84940052 0x54045649 0x4e494452 0x1049424d 0x20313647 0x42204d53 0x20202020 0x20434501 0x31565a02 0x3034464e 0x7343154 0x39353735 0x504e0734 0x31543935 0x3735534e 0xc594833 0x314d5533 0x41433143 0x50434304 0x33314530 0x50520849 0x0 0x1000053 0x5a073030 0x31363338 0x34484504 0x30303031 0x43540400 0x48 0x57020090 0x42330600 0x0 0x423401 0x42370c 0x0 0x0 0x0 0x50460078 0x0>;
						fru-number = "41T9575";
						serial-number = "YH31MU3AC1CP";
						part-number = "41T9575";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "31E0";
						description = "16GB CDIMM";
						ibm,chip-id = <0x0>;
						ibm,memory-bus-frequency = <0x0 0x0>;
						size = "0016384";
					};

					processor@1000 {
						phandle = <0x12>;
						ibm,loc-code = "U78C9.001.WZS0CWX-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 30 36 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 32 33 50 4e 07 30 30 46 58 37 34 38 53 4e 0c 59 41 31 39 33 32 30 36 33 35 36 32 43 43 04 35 34 45 31 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 30 01 44 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX523";
						serial-number = "YA1932063562";
						part-number = "00FX748";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E1";
						description = "06-WAY PROC CUOD";
						ibm,chip-id = <0x0>;
					};

					processor@1001 {
						phandle = <0x13>;
						ibm,loc-code = "U78C9.001.WZS0CWX-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 30 36 2d 57 41 59 20 50 52 4f 43 20 43 55 4f 44 46 4e 07 30 30 46 58 35 32 33 50 4e 07 30 30 46 58 37 34 38 53 4e 0c 59 41 31 39 33 32 30 36 33 35 36 32 43 43 04 35 34 45 31 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 30 01 44 00 80 01 56 5a 02 30 31 43 45 01 31 50 46 02 00 00 78 00];
						fru-number = "00FX523";
						serial-number = "YA1932063562";
						part-number = "00FX748";
						ccin-extension = [31 00];
						hw-version = [00];
						card-type = [00];
						hw-characteristics = [00];
						ccin = "54E1";
						description = "06-WAY PROC CUOD";
						ibm,chip-id = <0x1>;
					};

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

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

					usb-connector@2904 {
						phandle = <0x17>;
						ibm,loc-code = "U78C9.001.WZS0CWX-P1-T5";
						fru-type = [43 55];
						reg = <0x2904>;
						#size-cells = <0x0>;
						#address-cells = <0x1>;
					};

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

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

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

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

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

				op-panel@300 {
					phandle = <0x8>;
					ibm,loc-code = "U78C9.001.WZS0CWX-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 0x30453239 0x3532534e 0xc594c33 0x30554633 0x38453033 0x52434304 0x32423038 0x48450430 0x30303143 0x540480b5 0x4857 0x2000242 0x33060000 0x0 0x42340100 0x42370c00 0x0 0x0 0x50 0x46010078 0x0>;
					fru-number = "00E1966";
					serial-number = "YL30UF38E03R";
					part-number = "00E2952";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 b5 00];
					hw-characteristics = [00];
					ccin = "2B08";
					description = "CEC OP PANEL    ";
				};

				power-supply@3102 {
					phandle = <0xb>;
					ibm,loc-code = "U78C9.001.WZS0CWX-E3";
					fru-type = [50 53];
					reg = <0x3102>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				power-supply@3103 {
					phandle = <0xc>;
					ibm,loc-code = "U78C9.001.WZS0CWX-E4";
					fru-type = [50 53];
					reg = <0x3103>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
				};

				service-processor@200 {
					phandle = <0x7>;
					ibm,loc-code = "U78C9.001.WZS0CWX-P1";
					fru-type = [53 50];
					reg = <0x200>;
					#size-cells = <0x0>;
					#address-cells = <0x1>;
					ibm,vpd = <0x848c0052 0x54045649 0x4e494452 0x10492f4f 0x20424143 0x4b504c41 0x4e452020 0x20434501 0x31565a02 0x3031464e 0x7373459 0x34333434 0x504e0730 0x30453432 0x3431534e 0xc594c33 0x30554635 0x354e3030 0x36434304 0x32434435 0x50520821 0x0 0x48 0x45043030 0x30324354 0x480f300 0x26485702 0x74233 0x6000000 0x142 0x34010042 0x370c0000 0x0 0x0 0x5046 0x2000078 0x841c0052 0x54044c58 0x5230565a 0x230314c 0x58083100 0x4010030 0x435046 0x2000078 0x84500052 0x54045652 0x31304452 0x10465350 0x20202020 0x20202020 0x20202020 0x20464704 0x564e5350 0x44430f42 0x44203230 0x31323032 0x32303038 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 = "74Y4344";
					serial-number = "YL30UF55N006";
					part-number = "00E4241";
					ccin-extension = [31 00];
					hw-version = [00];
					card-type = [80 f3 00];
					hw-characteristics = [00];
					ccin = "2CD5";
					description = "System planar 1S4U";
				};
			};

			system-vpd@1c00 {
				phandle = <0x4>;
				ibm,loc-code = "U8286.41A.TU00163";
				fru-type = [53 56];
				reg = <0x1c00>;
				#size-cells = <0x0>;
				#address-cells = <0x1>;
			};
		};
	};

	xscom@3fc0000000000 {
		phandle = <0x41>;
		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 = "U78C9.001.WZS0CWX-P1-C32";
		ibm,module-vpd = <0xcafebeef 0x10000 0xa502aa2f>;
		part-number = "00KV631";
		serial-number = "YA1932063562";
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x0>;
		ibm,mem-interleave-scope = <0x0>;

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

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

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

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

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

	xscom@3fc0800000000 {
		phandle = <0x43>;
		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 = "U78C9.001.WZS0CWX-P1-C32";
		ibm,module-vpd = <0xcafebeef 0x10000 0x9f87fa41>;
		part-number = "00KV631";
		serial-number = "YA1932063562";
		ibm,ccm-node-id = <0x0>;
		ibm,hw-card-id = <0x0>;
		ibm,hw-module-id = <0x0>;
		ibm,mem-interleave-scope = <0x0>;

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

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

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

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

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