1*7c478bd9Sstevel@tonic-gate/*
2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START
3*7c478bd9Sstevel@tonic-gate *
4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the
5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only
6*7c478bd9Sstevel@tonic-gate * (the "License").  You may not use this file except in compliance
7*7c478bd9Sstevel@tonic-gate * with the License.
8*7c478bd9Sstevel@tonic-gate *
9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing.
11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions
12*7c478bd9Sstevel@tonic-gate * and limitations under the License.
13*7c478bd9Sstevel@tonic-gate *
14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each
15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the
17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying
18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner]
19*7c478bd9Sstevel@tonic-gate *
20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END
21*7c478bd9Sstevel@tonic-gate */
22*7c478bd9Sstevel@tonic-gate/*
23*7c478bd9Sstevel@tonic-gate * Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms.
25*7c478bd9Sstevel@tonic-gate *
26*7c478bd9Sstevel@tonic-gate * #ident	"%Z%%M%	%I%	%E% SMI"
27*7c478bd9Sstevel@tonic-gate *
28*7c478bd9Sstevel@tonic-gate * This file creates the system board structure
29*7c478bd9Sstevel@tonic-gate */
30*7c478bd9Sstevel@tonic-gate
31*7c478bd9Sstevel@tonic-gate/*
32*7c478bd9Sstevel@tonic-gate * define a macro to force a #ident line into the output stream
33*7c478bd9Sstevel@tonic-gate * otherwise cpp removes it. Use #ifndef because of #included definitions.
34*7c478bd9Sstevel@tonic-gate */
35*7c478bd9Sstevel@tonic-gate#ifndef id
36*7c478bd9Sstevel@tonic-gate#define	id(s)	#ident s
37*7c478bd9Sstevel@tonic-gate#endif
38*7c478bd9Sstevel@tonic-gateid("%Z%%M% %I%     %E% SMI")
39*7c478bd9Sstevel@tonic-gate
40*7c478bd9Sstevel@tonic-gate/*
41*7c478bd9Sstevel@tonic-gate * Motherboard properties
42*7c478bd9Sstevel@tonic-gate */
43*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB
44*7c478bd9Sstevel@tonic-gate    NODE system-board fru
45*7c478bd9Sstevel@tonic-gate	NODE SC location
46*7c478bd9Sstevel@tonic-gate    	    PROP Label string r 0 "SC"
47*7c478bd9Sstevel@tonic-gate	    NODE sc fru
48*7c478bd9Sstevel@tonic-gate	    ENDNODE
49*7c478bd9Sstevel@tonic-gate	ENDNODE
50*7c478bd9Sstevel@tonic-gate	NODE BAT location
51*7c478bd9Sstevel@tonic-gate    	    PROP Label string r 0 "BAT"
52*7c478bd9Sstevel@tonic-gate	    NODE battery fru
53*7c478bd9Sstevel@tonic-gate	    ENDNODE
54*7c478bd9Sstevel@tonic-gate	ENDNODE
55*7c478bd9Sstevel@tonic-gate    ENDNODE
56*7c478bd9Sstevel@tonic-gate
57*7c478bd9Sstevel@tonic-gate/*
58*7c478bd9Sstevel@tonic-gate * motherboard seeprom source
59*7c478bd9Sstevel@tonic-gate */
60*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
61*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
62*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/motherboard-fru-prom@0,a2
63*7c478bd9Sstevel@tonic-gate
64*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/motherboard-fru-prom@0,a2
65*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board
66*7c478bd9Sstevel@tonic-gate
67*7c478bd9Sstevel@tonic-gate/*
68*7c478bd9Sstevel@tonic-gate * Processors
69*7c478bd9Sstevel@tonic-gate */
70*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
71*7c478bd9Sstevel@tonic-gateNODE P0 location
72*7c478bd9Sstevel@tonic-gate    PROP SlotType string r 0 "cpu"
73*7c478bd9Sstevel@tonic-gate    PROP Label string r 0 "P0"
74*7c478bd9Sstevel@tonic-gateENDNODE
75*7c478bd9Sstevel@tonic-gateNODE P1 location
76*7c478bd9Sstevel@tonic-gate    PROP SlotType string r 0 "cpu"
77*7c478bd9Sstevel@tonic-gate    PROP Label string r 0 "P1"
78*7c478bd9Sstevel@tonic-gateENDNODE
79*7c478bd9Sstevel@tonic-gate
80*7c478bd9Sstevel@tonic-gate/*
81*7c478bd9Sstevel@tonic-gate * Processor 0
82*7c478bd9Sstevel@tonic-gate */
83*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0
84*7c478bd9Sstevel@tonic-gate	REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@0,0
85*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu
86*7c478bd9Sstevel@tonic-gate	REFNODE F0 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
87*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/F0
88*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
89*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F0"
90*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_p0_f0_rs
91*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu
92*7c478bd9Sstevel@tonic-gate	REFNODE F1 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
93*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/F1
94*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
95*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F1"
96*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_p0_f1_rs
97*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu
98*7c478bd9Sstevel@tonic-gate	REFNODE B0 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
99*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0
100*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "B0"
101*7c478bd9Sstevel@tonic-gate	REFNODE bank fru WITH name:/frutree/chassis/MB/system-board/P0/cpu
102*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank
103*7c478bd9Sstevel@tonic-gate	REFNODE D0 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
104*7c478bd9Sstevel@tonic-gate	REFNODE D1 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
105*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu
106*7c478bd9Sstevel@tonic-gate	REFNODE B1 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
107*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1
108*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "B1"
109*7c478bd9Sstevel@tonic-gate	REFNODE bank fru WITH name:/frutree/chassis/MB/system-board/P0/cpu
110*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank
111*7c478bd9Sstevel@tonic-gate	REFNODE D0 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
112*7c478bd9Sstevel@tonic-gate	REFNODE D1 location WITH name:/frutree/chassis/MB/system-board/P0/cpu
113*7c478bd9Sstevel@tonic-gate
114*7c478bd9Sstevel@tonic-gate/*
115*7c478bd9Sstevel@tonic-gate * Processor 1
116*7c478bd9Sstevel@tonic-gate */
117*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1
118*7c478bd9Sstevel@tonic-gate	REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@1,0
119*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu
120*7c478bd9Sstevel@tonic-gate	REFNODE F0 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
121*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/F0
122*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
123*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F0"
124*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_p1_f0_rs
125*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu
126*7c478bd9Sstevel@tonic-gate	REFNODE F1 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
127*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/F1
128*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
129*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F1"
130*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_p1_f1_rs
131*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu
132*7c478bd9Sstevel@tonic-gate	REFNODE B0 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
133*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0
134*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "B0"
135*7c478bd9Sstevel@tonic-gate	REFNODE bank fru WITH name:/frutree/chassis/MB/system-board/P1/cpu
136*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank
137*7c478bd9Sstevel@tonic-gate	REFNODE D0 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
138*7c478bd9Sstevel@tonic-gate	REFNODE D1 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
139*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu
140*7c478bd9Sstevel@tonic-gate	REFNODE B1 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
141*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1
142*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "B1"
143*7c478bd9Sstevel@tonic-gate	REFNODE bank fru WITH name:/frutree/chassis/MB/system-board/P1/cpu
144*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank
145*7c478bd9Sstevel@tonic-gate	REFNODE D0 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
146*7c478bd9Sstevel@tonic-gate	REFNODE D1 location WITH name:/frutree/chassis/MB/system-board/P1/cpu
147*7c478bd9Sstevel@tonic-gate
148*7c478bd9Sstevel@tonic-gate/*
149*7c478bd9Sstevel@tonic-gate * Processor 0 memory
150*7c478bd9Sstevel@tonic-gate */
151*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0
152*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
153*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D0"
154*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1
155*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
156*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D1"
157*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0
158*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
159*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D0"
160*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1
161*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
162*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D1"
163*7c478bd9Sstevel@tonic-gate
164*7c478bd9Sstevel@tonic-gate/*
165*7c478bd9Sstevel@tonic-gate * Processor 1 memory
166*7c478bd9Sstevel@tonic-gate */
167*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0
168*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
169*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D0"
170*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1
171*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
172*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D1"
173*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0
174*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
175*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D0"
176*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1
177*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
178*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "D1"
179*7c478bd9Sstevel@tonic-gate
180*7c478bd9Sstevel@tonic-gate/*
181*7c478bd9Sstevel@tonic-gate * Dimm nodes
182*7c478bd9Sstevel@tonic-gate */
183*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0
184*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
185*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1
186*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
187*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0
188*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
189*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1
190*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
191*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0
192*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
193*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1
194*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
195*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0
196*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
197*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1
198*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
199*7c478bd9Sstevel@tonic-gate
200*7c478bd9Sstevel@tonic-gate/*
201*7c478bd9Sstevel@tonic-gate * DIMM seeprom sources
202*7c478bd9Sstevel@tonic-gate */
203*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
204*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
205*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
206*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
207*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
208*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
209*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
210*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
211*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
212*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
213*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
214*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
215*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
216*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
217*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
218*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
219*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
220*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
221*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
222*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
223*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
224*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
225*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
226*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
227*7c478bd9Sstevel@tonic-gate
228*7c478bd9Sstevel@tonic-gate/*
229*7c478bd9Sstevel@tonic-gate * DIMM FRU parents
230*7c478bd9Sstevel@tonic-gate */
231*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
232*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
233*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
234*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
235*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
236*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
237*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
238*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
239*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
240*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
241*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
242*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
243*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
244*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
245*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
246*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
247*7c478bd9Sstevel@tonic-gate
248*7c478bd9Sstevel@tonic-gatename:/platform/SUNW,UltraSPARC-IIIi@0,0
249*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board/P0/cpu
250*7c478bd9Sstevel@tonic-gate
251*7c478bd9Sstevel@tonic-gatename:/platform/SUNW,UltraSPARC-IIIi@1,0
252*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board/P1/cpu
253*7c478bd9Sstevel@tonic-gate
254*7c478bd9Sstevel@tonic-gate/*
255*7c478bd9Sstevel@tonic-gate * DIMM parents
256*7c478bd9Sstevel@tonic-gate */
257*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=0
258*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
259*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=1
260*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
261*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=0
262*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
263*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=1
264*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
265*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=0
266*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
267*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=1
268*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
269*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=0
270*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
271*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=1
272*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
273*7c478bd9Sstevel@tonic-gate/*
274*7c478bd9Sstevel@tonic-gate * create reference properties for motherboard pci devices
275*7c478bd9Sstevel@tonic-gate */
276*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1c,600000
277*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
278*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1d,700000
279*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
280*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1e,600000
281*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
282*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1f,700000
283*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
284