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
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2006 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*
* ident "%Z%%M% %I% %E% SMI"
*
* This file creates the system board structure
*/
/*
* define a macro to force a #ident line into the output stream
* otherwise cpp removes it. Use #ifndef because of #included definitions.
*/
#ifndef id
#define id(s) #ident s
#endif
id("%Z%%M% %I% %E% SMI")
/*
* Motherboard properties
*/
name:/frutree/chassis/MB
NODE system-board fru
NODE SC location
PROP Label string r 0 "SC"
NODE sc fru
ENDNODE
ENDNODE
NODE P0 location
PROP SlotType string r 0 "cpu"
PROP Label string r 0 "P0"
ENDNODE
NODE P1 location
PROP SlotType string r 0 "cpu"
PROP Label string r 0 "P1"
ENDNODE
NODE HDDBP location
PROP Label string r 0 "HDDBP"
REFNODE disk-backplane-1 fru WITH /platform?PlatformName=SUNW,Sun-Fire-V215
REFNODE disk-backplane-3 fru WITH /platform?PlatformName=SUNW,Sun-Fire-V245
ENDNODE
NODE RMD0 location
PROP SlotType string r 0 "dvd-slot"
PROP Label string r 0 "RMD0"
ENDNODE
NODE SCC location
PROP Label string r 0 "SCC"
NODE system-config-chip fru
ENDNODE
ENDNODE
NODE RISER-RIGHT location
PROP Label string r 0 "RISER-RIGHT"
ENDNODE
NODE RISER-LEFT location
PROP Label string r 0 "RISER-LEFT"
ENDNODE
NODE USB0 location
PROP Label string r 0 "USB0"
ENDNODE
NODE USB1 location
PROP Label string r 0 "USB1"
ENDNODE
NODE FIOB location
PROP Label string r 0 "FIOB"
REFNODE front-io-board-1 fru WITH /platform?PlatformName=SUNW,Sun-Fire-V215
REFNODE front-io-board-2 fru WITH /platform?PlatformName=SUNW,Sun-Fire-V245
ENDNODE
NODE BATTERY location
PROP Label string r 0 "BATTERY"
NODE battery fru
ENDNODE
ENDNODE
ENDNODE
/*
* motherboard seeprom source
*/
name:/frutree/chassis/MB/system-board
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/motherboard-fru-prom@0,a2
name:/platform/i2c@1f,530000/motherboard-fru-prom@0,a2
REFPROP _fru_parent /frutree/chassis/MB/system-board
/*
* Processor 0
*/
name:/frutree/chassis/MB/system-board/P0
REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi+@0,0
REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@0,0
name:/frutree/chassis/MB/system-board/P0/cpu
NODE B0 location
PROP Label string r 0 "B0"
NODE bank fru
NODE D0 location
ENDNODE
NODE D1 location
ENDNODE
ENDNODE
ENDNODE
NODE B1 location
PROP Label string r 0 "B1"
NODE bank fru
NODE D0 location
ENDNODE
NODE D1 location
ENDNODE
ENDNODE
ENDNODE
/*
* Processor 1
*/
name:/frutree/chassis/MB/system-board/P1
REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi+@1,0
REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@1,0
name:/frutree/chassis/MB/system-board/P1/cpu
NODE B0 location
PROP Label string r 0 "B0"
NODE bank fru
NODE D0 location
ENDNODE
NODE D1 location
ENDNODE
ENDNODE
ENDNODE
NODE B1 location
PROP Label string r 0 "B1"
NODE bank fru
NODE D0 location
ENDNODE
NODE D1 location
ENDNODE
ENDNODE
ENDNODE
/*
* Processor 0 memory
*/
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D0"
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D1"
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D0"
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D1"
/*
* Processor 1 memory
*/
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D0"
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D1"
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D0"
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1
PROP SlotType string r 0 "memory-module"
PROP Label string r 0 "D1"
/*
* Dimm nodes
*/
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,e0
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,e2
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,e4
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,e6
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,e8
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,ea
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,ec
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1
REFNODE mem-module fru WITH name:/platform/i2c@1f,530000/dimm-spd@0,ee
/* Populate all possible nodes in the devtree with a status of "okay".
* This will get overridden by ASR. If the dimm slots are not fully
* populated then no extra nodes or properties are created.
*/
name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=0
PROP status string r 0 "okay"
name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=1
PROP status string r 0 "okay"
name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=0
PROP status string r 0 "okay"
name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=1
PROP status string r 0 "okay"
name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=0
PROP status string r 0 "okay"
name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=1
PROP status string r 0 "okay"
name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=0
PROP status string r 0 "okay"
name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=1
PROP status string r 0 "okay"
/*
* DIMM seeprom sources
*/
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,e0
name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,e2
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,e4
name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,e6
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,e8
name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,ea
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,ec
name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/dimm-spd@0,ee
/*
* DIMM FRU parents
*/
name:/platform/i2c@1f,530000/dimm-spd@0,e0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,e2
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,e4
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,e6
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,e8
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,ea
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,ec
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
name:/platform/i2c@1f,530000/dimm-spd@0,ee
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
name:/platform/SUNW,UltraSPARC-IIIi+@0,0
REFPROP _fru_parent /frutree/chassis/MB/system-board/P0/cpu
name:/platform/SUNW,UltraSPARC-IIIi+@1,0
REFPROP _fru_parent /frutree/chassis/MB/system-board/P1/cpu
name:/platform/SUNW,UltraSPARC-IIIi@0,0
REFPROP _fru_parent /frutree/chassis/MB/system-board/P0/cpu
name:/platform/SUNW,UltraSPARC-IIIi@1,0
REFPROP _fru_parent /frutree/chassis/MB/system-board/P1/cpu
/*
* DIMM parents
*/
name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=1
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=1
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=1
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=1
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
/*
* create reference properties for motherboard pci devices
*/
_class:/jbus/pciex@1e,600000
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
_class:/jbus/pciex@1f,700000
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
/*
* Front IO Board 1U
*/
name:/frutree/chassis/MB/system-board/FIOB/front-io-board-1
NODE USB2 location
PROP Label string r 0 "USB2"
ENDNODE
NODE FLEDB location
PROP Label string r 0 "FLEDB"
NODE front-led-board fru
ENDNODE
ENDNODE
NODE FCB0 location
PROP Label string r 0 "FCB0"
NODE fan-connector-board fru
ENDNODE
ENDNODE
NODE FCB1 location
PROP Label string r 0 "FCB1"
NODE fan-connector-board fru
ENDNODE
ENDNODE
/*
* Front IO Board 2U
*/
name:/frutree/chassis/MB/system-board/FIOB/front-io-board-2
NODE USB2 location
PROP Label string r 0 "USB2"
ENDNODE
NODE USB3 location
PROP Label string r 0 "USB3"
ENDNODE
NODE FLEDB location
PROP Label string r 0 "FLEDB"
NODE front-led-board fru
ENDNODE
ENDNODE
NODE FCB0 location
PROP Label string r 0 "FCB0"
NODE fan-connector-board fru
ENDNODE
ENDNODE
NODE FCB1 location
PROP Label string r 0 "FCB1"
NODE fan-connector-board fru
ENDNODE
ENDNODE
/*
* PDB nodes for 1U and 2U. Note that we should have only one of these
* two nodes for each platform (1U/2U).
*/
name:/frutree/chassis/PDB/power-distribution-board
REFNODE FT6 location WITH /platform?PlatformName=SUNW,Sun-Fire-V215
REFNODE HDDFB location WITH /platform?PlatformName=SUNW,Sun-Fire-V245
name:/frutree/chassis/PDB/power-distribution-board/HDDFB
PROP Label string r 0 "HDDFB"
NODE fan-connector-board fru
ENDNODE
/*
* Add dvdrom fru nodes for disks which are present
*/
name:/frutree/chassis/MB/system-board/RMD0
REFNODE removable-media fru WITH name:/platform/pci@1e,600000/pci@0/pci@1/pci@0/ide@1f/sd@0,0
/*
* HDDBP
*/
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
NODE HDD0 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD0"
ENDNODE
NODE HDD1 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD1"
ENDNODE
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/sasbp-fru-prom@0,64
name:/platform/i2c@1f,530000/sasbp-fru-prom@0,64
REFPROP _fru_parent /frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
NODE HDD0 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD0"
ENDNODE
NODE HDD1 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD1"
ENDNODE
NODE HDD2 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD2"
ENDNODE
NODE HDD3 location
PROP SlotType string r 0 "disk-slot"
PROP Label string r 0 "HDD3"
ENDNODE
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/sasbp-fru-prom@0,64
name:/platform/i2c@1f,530000/sasbp-fru-prom@0,64
REFPROP _fru_parent /frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
/* add disk fru nodes for disks which are present */
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1/HDD0
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@0,0
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1/HDD1
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@1,0
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3/HDD0
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@0,0
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3/HDD1
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@1,0
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3/HDD2
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@2,0
name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3/HDD3
REFNODE disk fru WITH name:/platform/pci@1e,600000/pci@0/pci@a/pci@0/pci@8/scsi@1/sd@3,0
/*
* System Fans for Seattle 1U
*/
#ifndef FCB0_1U
#define FCB0_1U /frutree/chassis/MB/system-board/FIOB/front-io-board-1/FCB0/fan-connector-board
#endif
#ifndef FCB1_1U
#define FCB1_1U /frutree/chassis/MB/system-board/FIOB/front-io-board-1/FCB1/fan-connector-board
#endif
#ifndef PDB_1U
#define PDB_1U /frutree/chassis/PDB/power-distribution-board
#endif
/*
* As per FSD rev 0.19, in Seattle 1U, two fans are integrated into
* a single assembly and share a connector. We assume therefore that
* every fan tray in Seattle 1U contains both fans, so the presence
* of either fan node (under RMCLOMV) is indicative of the presence
* of the containing fan tray. In other words, either we have the
* fan tray with both fans present, or we have no fan tray at all.
*/
name:FCB0_1U
NODE FT0 location
PROP Label string r 0 "FT0"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft0_f0
ENDNODE
NODE FT1 location
PROP Label string r 0 "FT1"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft1_f0
ENDNODE
NODE FT2 location
PROP Label string r 0 "FT2"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft2_f0
ENDNODE
name:FCB1_1U
NODE FT3 location
PROP Label string r 0 "FT3"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft3_f0
ENDNODE
NODE FT4 location
PROP Label string r 0 "FT4"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft4_f0
ENDNODE
NODE FT5 location
PROP Label string r 0 "FT5"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft5_f0
ENDNODE
name:PDB_1U/FT6
PROP Label string r 0 "FT6"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/pdb_ft6_f0
/*
* Create fan nodes for Seattle 1U
*
* Note that although we could create the F0 and F1 nodes on each
* tray conditionally, based on the ftN_f0 and ftN_f1 rmclomv nodes,
* it won't add any value; we've already based the creation of the
* fan-tray node to the existence of ftN_f0.
*/
name:FCB0_1U/FT0/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:FCB0_1U/FT1/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:FCB0_1U/FT2/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:FCB1_1U/FT3/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:FCB1_1U/FT4/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:FCB1_1U/FT5/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
name:PDB_1U/FT6/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
/*
* System Fans for Seattle 2U
*/
#ifndef FCB0_2U
#define FCB0_2U /frutree/chassis/MB/system-board/FIOB/front-io-board-2/FCB0/fan-connector-board
#endif
#ifndef FCB1_2U
#define FCB1_2U /frutree/chassis/MB/system-board/FIOB/front-io-board-2/FCB1/fan-connector-board
#endif
#ifndef PDB_2U
#define PDB_2U /frutree/chassis/PDB/power-distribution-board/HDDFB/fan-connector-board
#endif
/*
* In Seattle 2U, each fan assembly has only one fan (except for the pdb),
* so the presence of f0 is indicative of the presence of the fan tray.
*/
name:FCB0_2U
NODE FT0 location
PROP Label string r 0 "FT0"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft0_f0
ENDNODE
NODE FT1 location
PROP Label string r 0 "FT1"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft1_f0
ENDNODE
NODE FT2 location
PROP Label string r 0 "FT2"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft2_f0
ENDNODE
name:FCB1_2U
NODE FT3 location
PROP Label string r 0 "FT3"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft3_f0
ENDNODE
NODE FT4 location
PROP Label string r 0 "FT4"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft4_f0
ENDNODE
NODE FT5 location
PROP Label string r 0 "FT5"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/ft5_f0
ENDNODE
name:PDB_2U
NODE FT6 location
PROP Label string r 0 "FT6"
PROP SlotType string r 0 "fan-tray"
REFNODE fan-tray fru WITH name:RMCLOMV/pdb_hddfb_ft6_f0
ENDNODE
/*
* Create fan nodes for Seattle 2U
*/
name:FCB0_2U/FT0/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:FCB0_2U/FT1/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:FCB0_2U/FT2/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:FCB1_2U/FT3/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:FCB1_2U/FT4/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:FCB1_2U/FT5/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
name:PDB_2U/FT6/fan-tray
NODE F0 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F0"
ENDNODE
NODE F1 location
PROP SlotType string r 0 "fan-unit"
PROP Label string r 0 "F1"
ENDNODE
/*
* PCI Riser Card Right
*/
#ifndef PCI_R
#define PCI_R /frutree/chassis/MB/system-board/RISER-RIGHT
#endif
name:PCI_R
REFNODE pci-riser-board fru WITH name:/platform/i2c@1f,530000/riser-fru-prom@0,aa
name:PCI_R/pci-riser-board
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/riser-fru-prom@0,aa
NODE PCI0 location
PROP Label string r 0 "PCI0"
PROP SlotType string r 0 "pci-e"
ENDNODE
REFNODE PCI2 location WITH /platform?PlatformName=SUNW,Sun-Fire-V245
name:/platform/i2c@1f,530000/riser-fru-prom@0,aa
REFPROP _fru_parent PCI_R/pci-riser-board
name:PCI_R/pci-riser-board/PCI2
PROP Label string r 0 "PCI2"
PROP SlotType string r 0 "pci-e"
/*
* PCI Riser Card Left
*/
#ifndef PCI_L
#define PCI_L /frutree/chassis/MB/system-board/RISER-LEFT
#endif
name:PCI_L
REFNODE pci-riser-board fru WITH name:/platform/i2c@1f,530000/riser-fru-prom@0,a8
name:PCI_L/pci-riser-board
PROP FRUDataAvailable void r
REFPROP _seeprom_source name:/platform/i2c@1f,530000/riser-fru-prom@0,a8
name:/platform/i2c@1f,530000/riser-fru-prom@0,a8
REFPROP _fru_parent PCI_L/pci-riser-board
name:PCI_L/pci-riser-board
REFNODE PCI1 location WITH /platform?PlatformName=SUNW,Sun-Fire-V215
name:PCI_L/pci-riser-board/PCI1
PROP Label string r 0 "PCI1"
PROP SlotType string r 0 "pci-x-e"
REFNODE pci-card fru WITH _class:/jbus/pciex@1f,700000/picl?DeviceID=0
REFNODE pci-card fru WITH _class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl?DeviceID=1
name:PCI_L/pci-riser-board
REFNODE PCI1 location WITH /platform?PlatformName=SUNW,Sun-Fire-V245
REFNODE PCI3 location WITH /platform?PlatformName=SUNW,Sun-Fire-V245
name:PCI_L/pci-riser-board/PCI3
PROP Label string r 0 "PCI3"
PROP SlotType string r 0 "pci-x-e"
REFNODE pci-card fru WITH _class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl?DeviceID=0
REFNODE pci-card fru WITH _class:/jbus/pciex@1f,700000/pci@0/picl?DeviceID=2
name:PCI_L/pci-riser-board/PCI1
PROP Label string r 0 "PCI1"
PROP SlotType string r 0 "pci-x-e"
REFNODE pci-card fru WITH _class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl?DeviceID=0
REFNODE pci-card fru WITH _class:/jbus/pciex@1f,700000/pci@0,2/picl?DeviceID=1
/*
* Populate PCI_R slots
*/
name:PCI_R/pci-riser-board/PCI0
REFNODE pci-card fru WITH _class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl?DeviceID=0
name:PCI_R/pci-riser-board/PCI2
REFNODE pci-card fru WITH _class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl?DeviceID=0
/*
* _fru_parent PCIEX devices
*/
/* 1UEER, 2UEER: PCI0 */
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,0
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,1
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,2
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,3
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,4
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,5
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,6
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@8/picl@0,7
REFPROP _fru_parent PCI_R/pci-riser-board/PCI0/pci-card
/* 2UEER: PCI2 */
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,0
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,1
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,2
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,3
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,4
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,5
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,6
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@2/picl@0,7
REFPROP _fru_parent PCI_R/pci-riser-board/PCI2/pci-card
/* 1UEEL: PCI1 */
_class:/jbus/pciex@1f,700000/picl@0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/picl@0,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
/* 2UEEL: PCI1 */
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@9/picl@0,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
/* 2UEEL: PCI3 */
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pciex@0/pciex@8/picl@0,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
/*
* _fru_parent PCI-X devices
*/
/* 1UXXL: PCI1 */
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1e,600000/pciex@0/pciex@9/pci@0/pci@8/picl@1,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
/* 2UEXL-I: PCI1 */
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
_class:/jbus/pciex@1f,700000/pci@0,2/picl@1,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI1/pci-card
/* 2UEXL-I: PCI3 */
_class:/jbus/pciex@1f,700000/pci@0/picl@2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,0
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,1
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,2
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,3
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,4
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,5
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,6
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
_class:/jbus/pciex@1f,700000/pci@0/picl@2,7
REFPROP _fru_parent PCI_L/pci-riser-board/PCI3/pci-card
|