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 2003 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	    ENDNODE
48*7c478bd9Sstevel@tonic-gate	ENDNODE
49*7c478bd9Sstevel@tonic-gate
50*7c478bd9Sstevel@tonic-gate/*
51*7c478bd9Sstevel@tonic-gate * motherboard seeprom source
52*7c478bd9Sstevel@tonic-gate */
53*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
54*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
55*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/motherboard-fru-prom@0,a2
56*7c478bd9Sstevel@tonic-gate
57*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/motherboard-fru-prom@0,a2
58*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board
59*7c478bd9Sstevel@tonic-gate
60*7c478bd9Sstevel@tonic-gate/*
61*7c478bd9Sstevel@tonic-gate * ALOM (sc) node and fru-prom
62*7c478bd9Sstevel@tonic-gate */
63*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/SC
64*7c478bd9Sstevel@tonic-gate	REFNODE sc fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/alom-fru-prom@0,a6
65*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/SC/sc
66*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
67*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/alom-fru-prom@0,a6
68*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/alom-fru-prom@0,a6
69*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board/SC/sc
70*7c478bd9Sstevel@tonic-gate
71*7c478bd9Sstevel@tonic-gate/*
72*7c478bd9Sstevel@tonic-gate * Processors
73*7c478bd9Sstevel@tonic-gate */
74*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
75*7c478bd9Sstevel@tonic-gateNODE CPU0 location
76*7c478bd9Sstevel@tonic-gate    PROP SlotType string r 0 "cpu"
77*7c478bd9Sstevel@tonic-gate    PROP Label string r 0 "CPU0"
78*7c478bd9Sstevel@tonic-gateENDNODE
79*7c478bd9Sstevel@tonic-gateNODE CPU1 location
80*7c478bd9Sstevel@tonic-gate    PROP SlotType string r 0 "cpu"
81*7c478bd9Sstevel@tonic-gate    PROP Label string r 0 "CPU1"
82*7c478bd9Sstevel@tonic-gateENDNODE
83*7c478bd9Sstevel@tonic-gate
84*7c478bd9Sstevel@tonic-gate/*
85*7c478bd9Sstevel@tonic-gate * Processor 0
86*7c478bd9Sstevel@tonic-gate */
87*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU0
88*7c478bd9Sstevel@tonic-gate	REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@0,0
89*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU0/cpu
90*7c478bd9Sstevel@tonic-gate	REFNODE F0 location WITH name:/frutree/chassis/MB/system-board/CPU0/cpu
91*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU0/cpu/F0
92*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
93*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F0"
94*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_cpu0_f0_rs
95*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
96*7c478bd9Sstevel@tonic-gate	REFNODE DIMM0 location WITH name:/frutree/chassis/MB/system-board/
97*7c478bd9Sstevel@tonic-gate	REFNODE DIMM1 location WITH name:/frutree/chassis/MB/system-board/
98*7c478bd9Sstevel@tonic-gate	REFNODE DIMM2 location WITH name:/frutree/chassis/MB/system-board/
99*7c478bd9Sstevel@tonic-gate	REFNODE DIMM3 location WITH name:/frutree/chassis/MB/system-board/
100*7c478bd9Sstevel@tonic-gate
101*7c478bd9Sstevel@tonic-gate/*
102*7c478bd9Sstevel@tonic-gate * Processor 1
103*7c478bd9Sstevel@tonic-gate */
104*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU1
105*7c478bd9Sstevel@tonic-gate	REFNODE cpu fru WITH name:/platform/SUNW,UltraSPARC-IIIi@1,0
106*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU1/cpu
107*7c478bd9Sstevel@tonic-gate	REFNODE F0 location WITH name:/frutree/chassis/MB/system-board/CPU1/cpu
108*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/CPU1/cpu/F0
109*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "fan-unit"
110*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "F0"
111*7c478bd9Sstevel@tonic-gate	REFNODE fan-unit fru WITH name:RMCLOMV/mb_cpu1_f0_rs
112*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board
113*7c478bd9Sstevel@tonic-gate	REFNODE DIMM4 location WITH name:/frutree/chassis/MB/system-board
114*7c478bd9Sstevel@tonic-gate	REFNODE DIMM5 location WITH name:/frutree/chassis/MB/system-board
115*7c478bd9Sstevel@tonic-gate	REFNODE DIMM6 location WITH name:/frutree/chassis/MB/system-board
116*7c478bd9Sstevel@tonic-gate	REFNODE DIMM7 location WITH name:/frutree/chassis/MB/system-board
117*7c478bd9Sstevel@tonic-gate
118*7c478bd9Sstevel@tonic-gate/*
119*7c478bd9Sstevel@tonic-gate * Processor 0 memory
120*7c478bd9Sstevel@tonic-gate */
121*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM0
122*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
123*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM0"
124*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM1
125*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
126*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM1"
127*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM2
128*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
129*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM2"
130*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM3
131*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
132*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM3"
133*7c478bd9Sstevel@tonic-gate
134*7c478bd9Sstevel@tonic-gate/*
135*7c478bd9Sstevel@tonic-gate * Processor 1 memory
136*7c478bd9Sstevel@tonic-gate */
137*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM4
138*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
139*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM4"
140*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM5
141*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
142*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM5"
143*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM6
144*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
145*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM6"
146*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM7
147*7c478bd9Sstevel@tonic-gate	PROP SlotType string r 0 "memory-module"
148*7c478bd9Sstevel@tonic-gate	PROP Label string r 0 "DIMM7"
149*7c478bd9Sstevel@tonic-gate
150*7c478bd9Sstevel@tonic-gate/*
151*7c478bd9Sstevel@tonic-gate * Dimm nodes
152*7c478bd9Sstevel@tonic-gate */
153*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM0
154*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
155*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM1
156*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
157*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM2
158*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
159*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM3
160*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
161*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM4
162*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
163*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM5
164*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
165*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM6
166*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
167*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM7
168*7c478bd9Sstevel@tonic-gate	REFNODE mem-module fru WITH name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
169*7c478bd9Sstevel@tonic-gate
170*7c478bd9Sstevel@tonic-gate/*
171*7c478bd9Sstevel@tonic-gate * DIMM seeprom sources
172*7c478bd9Sstevel@tonic-gate */
173*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM0/mem-module
174*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
175*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
176*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM1/mem-module
177*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
178*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
179*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM2/mem-module
180*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
181*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
182*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM3/mem-module
183*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
184*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
185*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM4/mem-module
186*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
187*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
188*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM5/mem-module
189*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
190*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
191*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM6/mem-module
192*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
193*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
194*7c478bd9Sstevel@tonic-gatename:/frutree/chassis/MB/system-board/DIMM7/mem-module
195*7c478bd9Sstevel@tonic-gate	PROP FRUDataAvailable void r
196*7c478bd9Sstevel@tonic-gate	REFPROP _seeprom_source name:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
197*7c478bd9Sstevel@tonic-gate
198*7c478bd9Sstevel@tonic-gate/*
199*7c478bd9Sstevel@tonic-gate * DIMM FRU parents
200*7c478bd9Sstevel@tonic-gate */
201*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b6
202*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM0/mem-module
203*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,b8
204*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM1/mem-module
205*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ba
206*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM2/mem-module
207*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,bc
208*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM3/mem-module
209*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c6
210*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM4/mem-module
211*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,c8
212*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM5/mem-module
213*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,ca
214*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM6/mem-module
215*7c478bd9Sstevel@tonic-gatename:/platform/pci@1e,600000/isa@7/i2c@0,320/dimm-spd@0,cc
216*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM7/mem-module
217*7c478bd9Sstevel@tonic-gate
218*7c478bd9Sstevel@tonic-gatename:/platform/SUNW,UltraSPARC-IIIi@0,0
219*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board/CPU0/cpu
220*7c478bd9Sstevel@tonic-gate
221*7c478bd9Sstevel@tonic-gatename:/platform/SUNW,UltraSPARC-IIIi@1,0
222*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent /frutree/chassis/MB/system-board/CPU1/cpu
223*7c478bd9Sstevel@tonic-gate
224*7c478bd9Sstevel@tonic-gate/*
225*7c478bd9Sstevel@tonic-gate * DIMM parents
226*7c478bd9Sstevel@tonic-gate */
227*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=0
228*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM0/mem-module
229*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=1
230*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM1/mem-module
231*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=0
232*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM2/mem-module
233*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=1
234*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM3/mem-module
235*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=0
236*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM4/mem-module
237*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=1
238*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM5/mem-module
239*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=0
240*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM6/mem-module
241*7c478bd9Sstevel@tonic-gatename:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=1
242*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/DIMM7/mem-module
243*7c478bd9Sstevel@tonic-gate/*
244*7c478bd9Sstevel@tonic-gate * create reference properties for motherboard pci devices
245*7c478bd9Sstevel@tonic-gate */
246*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1c,600000
247*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
248*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1d,700000
249*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
250*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1e,600000
251*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
252*7c478bd9Sstevel@tonic-gate_class:/jbus/pci@1f,700000
253*7c478bd9Sstevel@tonic-gate	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
254