106e46062Sjbeloro/*
206e46062Sjbeloro * CDDL HEADER START
306e46062Sjbeloro *
406e46062Sjbeloro * The contents of this file are subject to the terms of the
506e46062Sjbeloro * Common Development and Distribution License (the "License").
606e46062Sjbeloro * You may not use this file except in compliance with the License.
706e46062Sjbeloro *
806e46062Sjbeloro * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
906e46062Sjbeloro * or http://www.opensolaris.org/os/licensing.
1006e46062Sjbeloro * See the License for the specific language governing permissions
1106e46062Sjbeloro * and limitations under the License.
1206e46062Sjbeloro *
1306e46062Sjbeloro * When distributing Covered Code, include this CDDL HEADER in each
1406e46062Sjbeloro * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1506e46062Sjbeloro * If applicable, add the following below this CDDL HEADER, with the
1606e46062Sjbeloro * fields enclosed by brackets "[]" replaced with your own identifying
1706e46062Sjbeloro * information: Portions Copyright [yyyy] [name of copyright owner]
1806e46062Sjbeloro *
1906e46062Sjbeloro * CDDL HEADER END
2006e46062Sjbeloro */
2106e46062Sjbeloro
2206e46062Sjbeloro/*
23930176a0Svenki * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2406e46062Sjbeloro * Use is subject to license terms.
2506e46062Sjbeloro */
2606e46062Sjbeloro
2706e46062Sjbeloro/*
2806e46062Sjbeloro * ident	"%Z%%M%	%I%	%E% SMI"
2906e46062Sjbeloro *
3006e46062Sjbeloro * This file creates device tables for all of the fru's in the system
3106e46062Sjbeloro * (except for hard disk drives and power supplies.)  Each table contains
3206e46062Sjbeloro * one or more rows of devices, each with a reference to a particular
3306e46062Sjbeloro * device/sensor.
3406e46062Sjbeloro *
3506e46062Sjbeloro * This file will be #included by piclfrutree.info.  It should be included
3606e46062Sjbeloro * after the frutree and system hierarchies are defined.
3706e46062Sjbeloro */
3806e46062Sjbeloro
3906e46062Sjbeloro/*
4006e46062Sjbeloro * define a macro to force a #ident line into the output stream
4106e46062Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
4206e46062Sjbeloro */
4306e46062Sjbeloro#ifndef id
4406e46062Sjbeloro#define	id(s)	#ident s
4506e46062Sjbeloro#endif
4606e46062Sjbeloroid("%Z%%M% %I%     %E% SMI")
4706e46062Sjbeloro
4806e46062Sjbeloro/*
4906e46062Sjbeloro * add a Devices table to DVD
5006e46062Sjbeloro */
5106e46062Sjbeloroname:/frutree/chassis/MB/system-board/RMD0/removable-media
5206e46062Sjbeloro	TABLE Devices
5306e46062Sjbeloro	ROW
5406e46062Sjbeloro	PROP Class string r 0 "cdrom"
5506e46062Sjbeloro	REFPROP _cdrom_ name:/platform/pci@1e,600000/pci@0/pci@1/pci@0/ide@1f/sd@0,0
5606e46062Sjbeloro	ENDROW
5706e46062Sjbeloro	ENDTABLE
5806e46062Sjbeloro
5906e46062Sjbeloro/*
6006e46062Sjbeloro * add Devices table for the keyswitch
6106e46062Sjbeloro */
6206e46062Sjbeloroname:/frutree/chassis/SYSCTRL
6306e46062Sjbeloro	TABLE Devices
6406e46062Sjbeloro	ROW
6506e46062Sjbeloro	PROP Class string r 0 "keyswitch"
6606e46062Sjbeloro	REFPROP _keyswitch_ name:RMCLOMV/keyswitch
6706e46062Sjbeloro	ENDROW
6806e46062Sjbeloro	ENDTABLE
6906e46062Sjbeloro
7006e46062Sjbeloro/*
7106e46062Sjbeloro * add Devices table for the chassis
7206e46062Sjbeloro */
7306e46062Sjbeloroname:/frutree/chassis
7406e46062Sjbeloro	TABLE Devices
7506e46062Sjbeloro	ROW
7606e46062Sjbeloro	PROP Class string r 0 "chassis_serial_number"
7706e46062Sjbeloro	REFPROP _chassis-serial-number_ name:RMCLOMV/chassis_serial_number
7806e46062Sjbeloro	ENDROW
7906e46062Sjbeloro	ENDTABLE
8006e46062Sjbeloro
8106e46062Sjbeloro/*
8206e46062Sjbeloro * add a Devices table to the system-board
8306e46062Sjbeloro */
8406e46062Sjbeloroname:/frutree/chassis/MB/system-board
8506e46062Sjbeloro	TABLE Devices
8606e46062Sjbeloro	ROW
8706e46062Sjbeloro	PROP Class string r 0 "voltage-sensor"
8806e46062Sjbeloro	REFPROP _voltage-sensor_ name:RMCLOMV/mb_v_+3v3
8906e46062Sjbeloro	ENDROW
9006e46062Sjbeloro	ROW
9106e46062Sjbeloro	PROP Class string r 0 "voltage-sensor"
9206e46062Sjbeloro	REFPROP _voltage-sensor_ name:RMCLOMV/mb_v_+12v
9306e46062Sjbeloro	ENDROW
9406e46062Sjbeloro	ROW
9506e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
9606e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_t_remote
9706e46062Sjbeloro	ENDROW
9806e46062Sjbeloro	ROW
9906e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
10006e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_t_1064
10106e46062Sjbeloro	ENDROW
10206e46062Sjbeloro	ROW
10306e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
10406e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_t_fire
10506e46062Sjbeloro	ENDROW
10606e46062Sjbeloro	ROW
10706e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
10806e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_t_amb
10906e46062Sjbeloro	ENDROW
11006e46062Sjbeloro	ROW
11106e46062Sjbeloro	PROP Class string r 0 "led"
11206e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_act
11306e46062Sjbeloro	ENDROW
11406e46062Sjbeloro	ROW
11506e46062Sjbeloro	PROP Class string r 0 "led"
11606e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_service
11706e46062Sjbeloro	ENDROW
11806e46062Sjbeloro	ROW
11906e46062Sjbeloro	PROP Class string r 0 "led"
12006e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_locate
12106e46062Sjbeloro	ENDROW
12206e46062Sjbeloro	ROW
12306e46062Sjbeloro	PROP Class string r 0 "led"
12406e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_overtemp
12506e46062Sjbeloro	ENDROW
12606e46062Sjbeloro	ROW
12706e46062Sjbeloro	PROP Class string r 0 "led"
12806e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_psfail
12906e46062Sjbeloro	ENDROW
13006e46062Sjbeloro	ROW
13106e46062Sjbeloro	PROP Class string r 0 "led"
13206e46062Sjbeloro	REFPROP _led_ name:RMCLOMV/sys_fanfail
13306e46062Sjbeloro	ENDROW
13406e46062Sjbeloro	ROW
13506e46062Sjbeloro	PROP Class string r 0 "keyswitch"
13606e46062Sjbeloro	REFPROP _keyswitch_ name:RMCLOMV/keyswitch
13706e46062Sjbeloro	ENDROW
13806e46062Sjbeloro	ENDTABLE
13906e46062Sjbeloro
14006e46062Sjbeloro/*
14106e46062Sjbeloro * add a Devices table to the battery
14206e46062Sjbeloro */
14306e46062Sjbeloroname:/frutree/chassis/MB/system-board/BATTERY/battery
14406e46062Sjbeloro	TABLE Devices
14506e46062Sjbeloro	ROW
14606e46062Sjbeloro	PROP Class string r 0 "voltage-sensor"
14706e46062Sjbeloro	REFPROP _voltage-sensor_ name:RMCLOMV/mb_bat_v_bat
14806e46062Sjbeloro	ENDROW
14906e46062Sjbeloro	ENDTABLE
15006e46062Sjbeloro
15106e46062Sjbeloro/*
15206e46062Sjbeloro * add a Devices table to the service-processor
15306e46062Sjbeloro */
15406e46062Sjbeloroname:/frutree/chassis/MB/system-board/SC/sc
15506e46062Sjbeloro	TABLE Devices
15606e46062Sjbeloro	ROW
15706e46062Sjbeloro	PROP Class string r 0 "service-processor"
15806e46062Sjbeloro	REFPROP _service-processor_ name:RMCLOMV
15906e46062Sjbeloro	ENDROW
16006e46062Sjbeloro	ENDTABLE
16106e46062Sjbeloro
16206e46062Sjbeloro/*
16306e46062Sjbeloro * add a Devices table to the front io board
16406e46062Sjbeloro */
16506e46062Sjbeloroname:/frutree/chassis/MB/system-board/FIOB/front-io-board-1
16606e46062Sjbeloro	TABLE Devices
16706e46062Sjbeloro	ROW
16806e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
16906e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/fiob_t_amb
17006e46062Sjbeloro	ENDROW
17106e46062Sjbeloro	ENDTABLE
17206e46062Sjbeloro
17306e46062Sjbeloroname:/frutree/chassis/MB/system-board/FIOB/front-io-board-2
17406e46062Sjbeloro	TABLE Devices
17506e46062Sjbeloro	ROW
17606e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
17706e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/fiob_t_amb
17806e46062Sjbeloro	ENDROW
17906e46062Sjbeloro	ENDTABLE
18006e46062Sjbeloro
18106e46062Sjbeloro/*
18206e46062Sjbeloro * add a Devices table to the disk back plane
18306e46062Sjbeloro */
18406e46062Sjbeloroname:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
18506e46062Sjbeloro	TABLE Devices
18606e46062Sjbeloro	ROW
18706e46062Sjbeloro	PROP Class string r 0 "fan"
18806e46062Sjbeloro	REFPROP _fan_ name:RMCLOMV/sasbp_f0
18906e46062Sjbeloro	ENDROW
19006e46062Sjbeloro	ROW
19106e46062Sjbeloro	PROP Class string r 0 "fan"
19206e46062Sjbeloro	REFPROP _fan_ name:RMCLOMV/sasbp_f1
19306e46062Sjbeloro	ENDROW
19406e46062Sjbeloro	ENDTABLE
19506e46062Sjbeloro
19606e46062Sjbeloroname:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
19706e46062Sjbeloro	TABLE Devices
19806e46062Sjbeloro	ROW
19906e46062Sjbeloro	PROP Class string r 0 "fan"
20006e46062Sjbeloro	REFPROP _fan_ name:RMCLOMV/sasbp_f0
20106e46062Sjbeloro	ENDROW
20206e46062Sjbeloro	ROW
20306e46062Sjbeloro	PROP Class string r 0 "fan"
20406e46062Sjbeloro	REFPROP _fan_ name:RMCLOMV/sasbp_f1
20506e46062Sjbeloro	ENDROW
20606e46062Sjbeloro	ENDTABLE
20706e46062Sjbeloro
20806e46062Sjbeloro/*
20906e46062Sjbeloro * add a Devices table to the power distribution board
21006e46062Sjbeloro */
21106e46062Sjbeloroname:/frutree/chassis/PDB
21206e46062Sjbeloro	TABLE Devices
21306e46062Sjbeloro	ROW
21406e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
21506e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/pdb_t_disk
21606e46062Sjbeloro	ENDROW
217930176a0Svenki	ROW
218930176a0Svenki	PROP Class string r 0 "temperature-sensor"
219930176a0Svenki	REFPROP _temperature-sensor_ name:RMCLOMV/pdb_t_ps0
220930176a0Svenki	ENDROW
221930176a0Svenki	ROW
222930176a0Svenki	PROP Class string r 0 "temperature-sensor"
223930176a0Svenki	REFPROP _temperature-sensor_ name:RMCLOMV/pdb_t_ps1
224930176a0Svenki	ENDROW
22506e46062Sjbeloro	ENDTABLE
22606e46062Sjbeloro
22706e46062Sjbeloro/*
22806e46062Sjbeloro * fru parent for DVD
22906e46062Sjbeloro */
23006e46062Sjbeloroname:/platform/pci@1e,600000/pci@0/pci@1/pci@0/ide@1f/sd@0,0
23106e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/RMD0/removable-media
23206e46062Sjbeloro
23306e46062Sjbeloro/*
23406e46062Sjbeloro * fru parents for mother-board and other sensors
23506e46062Sjbeloro */
23606e46062Sjbeloroname:RMCLOMV/mb_v_+3v3
23706e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
23806e46062Sjbeloroname:RMCLOMV/mb_v_+12v
23906e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
24006e46062Sjbeloroname:RMCLOMV/mb_t_remote
24106e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
24206e46062Sjbeloroname:RMCLOMV/mb_t_1064
24306e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
24406e46062Sjbeloroname:RMCLOMV/mb_t_fire
24506e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
24606e46062Sjbeloroname:RMCLOMV/mb_t_amb
24706e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
24806e46062Sjbeloroname:RMCLOMV/sys_act
24906e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
25006e46062Sjbeloroname:RMCLOMV/sys_service
25106e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
25206e46062Sjbeloroname:RMCLOMV/sys_locate
25306e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
25406e46062Sjbeloro	PROP IsLocator string r 0 "true"
25506e46062Sjbeloro	PROP LocatorName string r 0 "system"
25606e46062Sjbeloro	PROP LocatorOn string r 0 "blinking"
25706e46062Sjbeloroname:RMCLOMV/sys_overtemp
25806e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
25906e46062Sjbeloroname:RMCLOMV/sys_psfail
26006e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
26106e46062Sjbeloroname:RMCLOMV/sys_fanfail
26206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
26306e46062Sjbeloroname:RMCLOMV/keyswitch
26406e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board
26506e46062Sjbeloro	PROP Label string r 0 "SYSCTRL"
26606e46062Sjbeloroname:RMCLOMV/chassis_serial_number
26706e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis
26806e46062Sjbeloro	PROP Label string r 0 "CHASSISSERIAL"
26906e46062Sjbeloroname:RMCLOMV/pdb_t_disk
27006e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PDB/power-distribution-board
271930176a0Svenkiname:RMCLOMV/pdb_t_ps0
272930176a0Svenki	REFPROP _fru_parent name:/frutree/chassis/PDB/power-distribution-board
273930176a0Svenkiname:RMCLOMV/pdb_t_ps1
274930176a0Svenki	REFPROP _fru_parent name:/frutree/chassis/PDB/power-distribution-board
27506e46062Sjbeloroname:RMCLOMV/fiob_t_amb
27606e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-io-board-1
27706e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-io-board-2
27806e46062Sjbeloroname:RMCLOMV/mb_bat_v_bat
27906e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/BATTERY/battery
28006e46062Sjbeloroname:RMCLOMV/sasbp_f0
28106e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
28206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
28306e46062Sjbeloro
28406e46062Sjbeloroname:RMCLOMV/sasbp_f1
28506e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-1
28606e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDBP/disk-backplane-3
28706e46062Sjbeloro
28806e46062Sjbeloro/*
28906e46062Sjbeloro * add Devices tables for cpu-related sensors
29006e46062Sjbeloro */
29106e46062Sjbeloroname:/frutree/chassis/MB/system-board/P0/cpu
29206e46062Sjbeloro	TABLE Devices
29306e46062Sjbeloro	ROW
29406e46062Sjbeloro	PROP Class string r 0 "cpu"
29506e46062Sjbeloro	REFPROP _cpu_ name:/platform/SUNW,UltraSPARC-IIIi+@0,0
296*5c739e65Sfw	REFPROP _cpu_ name:/platform/SUNW,UltraSPARC-IIIi@0,0
29706e46062Sjbeloro	ENDROW
29806e46062Sjbeloro	ROW
29906e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
30006e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_p0_t_core
30106e46062Sjbeloro	ENDROW
30206e46062Sjbeloro	ROW
30306e46062Sjbeloro	PROP Class string r 0 "voltage-sensor"
30406e46062Sjbeloro	REFPROP _voltage-sensor_ name:RMCLOMV/mb_p0_v_core
30506e46062Sjbeloro	ENDROW
30606e46062Sjbeloro	ENDTABLE
30706e46062Sjbeloro
30806e46062Sjbeloroname:RMCLOMV/mb_p0_t_core
30906e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu
31006e46062Sjbeloroname:RMCLOMV/mb_p0_v_core
31106e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P0/cpu
31206e46062Sjbeloro
31306e46062Sjbeloroname:/frutree/chassis/MB/system-board/P1/cpu
31406e46062Sjbeloro	TABLE Devices
31506e46062Sjbeloro	ROW
31606e46062Sjbeloro	PROP Class string r 0 "cpu"
31706e46062Sjbeloro	REFPROP _cpu_ name:/platform/SUNW,UltraSPARC-IIIi+@1,0
318*5c739e65Sfw	REFPROP _cpu_ name:/platform/SUNW,UltraSPARC-IIIi@1,0
31906e46062Sjbeloro	ENDROW
32006e46062Sjbeloro	ROW
32106e46062Sjbeloro	PROP Class string r 0 "temperature-sensor"
32206e46062Sjbeloro	REFPROP _temperature-sensor_ name:RMCLOMV/mb_p1_t_core
32306e46062Sjbeloro	ENDROW
32406e46062Sjbeloro	ROW
32506e46062Sjbeloro	PROP Class string r 0 "voltage-sensor"
32606e46062Sjbeloro	REFPROP _voltage-sensor_ name:RMCLOMV/mb_p1_v_core
32706e46062Sjbeloro	ENDROW
32806e46062Sjbeloro	ENDTABLE
32906e46062Sjbeloroname:RMCLOMV/mb_p1_t_core
33006e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu
33106e46062Sjbeloroname:RMCLOMV/mb_p1_v_core
33206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/MB/system-board/P1/cpu
33306e46062Sjbeloro
33406e46062Sjbeloroname:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D0/mem-module
33506e46062Sjbeloro	TABLE Devices
33606e46062Sjbeloro	ROW
33706e46062Sjbeloro	PROP Class string r 0 "memory-module"
33806e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=0
33906e46062Sjbeloro	ENDROW
34006e46062Sjbeloro	ENDTABLE
34106e46062Sjbeloroname:/frutree/chassis/MB/system-board/P0/cpu/B0/bank/D1/mem-module
34206e46062Sjbeloro	TABLE Devices
34306e46062Sjbeloro	ROW
34406e46062Sjbeloro	PROP Class string r 0 "memory-module"
34506e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@0,0/memory-module-group?ID=0/memory-module?ID=1
34606e46062Sjbeloro	ENDROW
34706e46062Sjbeloro	ENDTABLE
34806e46062Sjbeloroname:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D0/mem-module
34906e46062Sjbeloro	TABLE Devices
35006e46062Sjbeloro	ROW
35106e46062Sjbeloro	PROP Class string r 0 "memory-module"
35206e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=0
35306e46062Sjbeloro	ENDROW
35406e46062Sjbeloro	ENDTABLE
35506e46062Sjbeloroname:/frutree/chassis/MB/system-board/P0/cpu/B1/bank/D1/mem-module
35606e46062Sjbeloro	TABLE Devices
35706e46062Sjbeloro	ROW
35806e46062Sjbeloro	PROP Class string r 0 "memory-module"
35906e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@0,0/memory-module-group?ID=1/memory-module?ID=1
36006e46062Sjbeloro	ENDROW
36106e46062Sjbeloro	ENDTABLE
36206e46062Sjbeloroname:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D0/mem-module
36306e46062Sjbeloro	TABLE Devices
36406e46062Sjbeloro	ROW
36506e46062Sjbeloro	PROP Class string r 0 "memory-module"
36606e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=0
36706e46062Sjbeloro	ENDROW
36806e46062Sjbeloro	ENDTABLE
36906e46062Sjbeloroname:/frutree/chassis/MB/system-board/P1/cpu/B0/bank/D1/mem-module
37006e46062Sjbeloro	TABLE Devices
37106e46062Sjbeloro	ROW
37206e46062Sjbeloro	PROP Class string r 0 "memory-module"
37306e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@1,0/memory-module-group?ID=0/memory-module?ID=1
37406e46062Sjbeloro	ENDROW
37506e46062Sjbeloro	ENDTABLE
37606e46062Sjbeloroname:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D0/mem-module
37706e46062Sjbeloro	TABLE Devices
37806e46062Sjbeloro	ROW
37906e46062Sjbeloro	PROP Class string r 0 "memory-module"
38006e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=0
38106e46062Sjbeloro	ENDROW
38206e46062Sjbeloro	ENDTABLE
38306e46062Sjbeloroname:/frutree/chassis/MB/system-board/P1/cpu/B1/bank/D1/mem-module
38406e46062Sjbeloro	TABLE Devices
38506e46062Sjbeloro	ROW
38606e46062Sjbeloro	PROP Class string r 0 "memory-module"
38706e46062Sjbeloro	REFPROP _memory-module_ name:/platform/memory-controller@1,0/memory-module-group?ID=1/memory-module?ID=1
38806e46062Sjbeloro	ENDROW
38906e46062Sjbeloro	ENDTABLE
390