fru_SC_data.info revision 06e46062ef4f5f4b687cbafb4518fb123fe23920
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * CDDL HEADER START
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * The contents of this file are subject to the terms of the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Common Development and Distribution License (the "License").
199767f8919635c4928607450d9e0abb932109ceToomas Soome * You may not use this file except in compliance with the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
199767f8919635c4928607450d9e0abb932109ceToomas Soome * or http://www.opensolaris.org/os/licensing.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * See the License for the specific language governing permissions
199767f8919635c4928607450d9e0abb932109ceToomas Soome * and limitations under the License.
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * When distributing Covered Code, include this CDDL HEADER in each
199767f8919635c4928607450d9e0abb932109ceToomas Soome * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * If applicable, add the following below this CDDL HEADER, with the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * fields enclosed by brackets "[]" replaced with your own identifying
199767f8919635c4928607450d9e0abb932109ceToomas Soome * information: Portions Copyright [yyyy] [name of copyright owner]
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * CDDL HEADER END
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * Use is subject to license terms.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ident "%Z%%M% %I% %E% SMI"
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * supported prop types: void, int, uint, float, string
199767f8919635c4928607450d9e0abb932109ceToomas Soome * supported prop access_modes: r, w, rw
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * VERSION <version_number> -- supported version number is 1.0
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * name:<namepath> -- gives the anchor node
199767f8919635c4928607450d9e0abb932109ceToomas Soome * where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * _class:<classpath> -- gives the anchor node
199767f8919635c4928607450d9e0abb932109ceToomas Soome * where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * NODE <name> <class>
199767f8919635c4928607450d9e0abb932109ceToomas Soome * {describes a subtree}
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ENDNODE
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * PROP <name> <type> <access_mode> [<size> <value>] -- per property
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * REFPROP <name> <dstnode>
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * REFNODE <name> <class> with <destnode> -- Associates a new node
199767f8919635c4928607450d9e0abb932109ceToomas Soome * with <destnode> if exists
199767f8919635c4928607450d9e0abb932109ceToomas Soome * where
199767f8919635c4928607450d9e0abb932109ceToomas Soome * <name> is the nodename
199767f8919635c4928607450d9e0abb932109ceToomas Soome * <class> is the picl class.
199767f8919635c4928607450d9e0abb932109ceToomas Soome * <destnode> is name:<namepath> or _class:<classpath>
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * If "name:" or "_class:" is not specified in the <path>,
199767f8919635c4928607450d9e0abb932109ceToomas Soome * the default is "name:"
199767f8919635c4928607450d9e0abb932109ceToomas Soome *
199767f8919635c4928607450d9e0abb932109ceToomas Soome * This file captures all of the location and fru parents for the
199767f8919635c4928607450d9e0abb932109ceToomas Soome * sensors and led's in the system, whose state is learned from
199767f8919635c4928607450d9e0abb932109ceToomas Soome * ALOM via rmclomv.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * define a macro to force a #ident line into the output stream
199767f8919635c4928607450d9e0abb932109ceToomas Soome * otherwise cpp removes it. Use #ifndef because of #included definitions.
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifndef id
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define id(s) #ident s
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soomeid("%Z%%M% %I% %E% SMI")
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * There are a lot of nodes below the rmclomv node, define a shortname
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome#ifndef RMCLOMV
199767f8919635c4928607450d9e0abb932109ceToomas Soome#define RMCLOMV /platform/ebus@1f,464000/rmc-comm@0,c28000/SUNW,rmclomv
199767f8919635c4928607450d9e0abb932109ceToomas Soome#endif
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * fru/location parents and device tables for the disks and their
199767f8919635c4928607450d9e0abb932109ceToomas Soome * associated sensors
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD0_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD1_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD2_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD3_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD4_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD5_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD6_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_HDD7_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * fru/location parents and device tables for the power supplies
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_PSU0_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_PSU1_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_PSU2_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_PSU3_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * usb ports
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_usb-a-1_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_usb-a-2_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_usb-a-3_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome#include "fru_usb-a-4_data.info"
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * parents for the fan tachometers
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft0_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT0
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft1_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT1
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft2_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT2
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft3_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT3
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft4_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT4
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/ft5_f0_tach
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/FT5
199767f8919635c4928607450d9e0abb932109ceToomas Soome
199767f8919635c4928607450d9e0abb932109ceToomas Soome/*
199767f8919635c4928607450d9e0abb932109ceToomas Soome * parents for system leds
199767f8919635c4928607450d9e0abb932109ceToomas Soome */
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/sys_act
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
199767f8919635c4928607450d9e0abb932109ceToomas Soomename:RMCLOMV/sys_service
199767f8919635c4928607450d9e0abb932109ceToomas Soome REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
name:RMCLOMV/sys_locate
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
PROP IsLocator string r 0 "true"
PROP LocatorName string r 0 "system"
PROP LocatorOn string r 0 "blinking"
name:RMCLOMV/sys_fanfail
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
name:RMCLOMV/sys_psfail
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
name:RMCLOMV/sys_overtemp
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/FLEDB/front-led-board
/*
* parents for fan-fault led's
*/
name:RMCLOMV/ft0_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
name:RMCLOMV/ft1_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
name:RMCLOMV/ft2_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
name:RMCLOMV/ft3_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
name:RMCLOMV/ft4_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
name:RMCLOMV/ft5_f0_fault
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/HDDCNTRL/disk-controller/HDDBP/disk-backplane-8
/*
* keyswitch parent
*/
name:RMCLOMV/keyswitch
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/SC/service-processor
PROP Label string r 0 "SYSCTRL"
/*
* chassis serial number parent
*/
name:RMCLOMV/chassis_serial_number
REFPROP _fru_parent name:/frutree/chassis
PROP Label string r 0 "CHASSISSERIAL"
/*
* fru parents for motherboard sensors
*/
name:RMCLOMV/mb_v_+1v0
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+1v2
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+1v5
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+1v8
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+2v5
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+3v3
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+3v3stby
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+5v
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_+12v
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_v_-12v
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_i_usb0
REFPROP _location_parent name:/frutree/chassis/MB/system-board/USB0
name:RMCLOMV/mb_i_usb1
REFPROP _location_parent name:/frutree/chassis/MB/system-board/USB1
name:RMCLOMV/fire_t_core
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_io_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
name:RMCLOMV/mb_ff_pok
REFPROP _fru_parent name:/frutree/chassis/MB/system-board
/*
* fru parents for front IO board sensors
*/
name:RMCLOMV/fiob_i_usb2
REFPROP _location_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/USB2
name:RMCLOMV/fiob_i_usb3
REFPROP _location_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board/USB3
name:RMCLOMV/fiob_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/FIOB/front-IO-board
/*
* fru parent for SC battery
*/
name:RMCLOMV/sc_bat_v_bat
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/SC/service-processor/BATTERY/battery
/*
* parents for CPU board and CPU die sensors
*/
name:RMCLOMV/c0_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C0/cpu-module
name:RMCLOMV/c0_p0_ff_pok
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C0/cpu-module
name:RMCLOMV/c0_p0_t_core
REFPROP _location_parent name:/frutree/chassis/MB/system-board/C0/cpu-module/P0/cpu
name:RMCLOMV/c1_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C1/cpu-module
name:RMCLOMV/c1_p0_ff_pok
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C1/cpu-module
name:RMCLOMV/c1_p0_t_core
REFPROP _location_parent name:/frutree/chassis/MB/system-board/C1/cpu-module/P0/cpu
name:RMCLOMV/c2_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C2/cpu-module
name:RMCLOMV/c2_p0_ff_pok
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C2/cpu-module
name:RMCLOMV/c2_p0_t_core
REFPROP _location_parent name:/frutree/chassis/MB/system-board/C2/cpu-module/P0/cpu
name:RMCLOMV/c3_t_amb
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C3/cpu-module
name:RMCLOMV/c3_p0_ff_pok
REFPROP _fru_parent name:/frutree/chassis/MB/system-board/C3/cpu-module
name:RMCLOMV/c3_p0_t_core
REFPROP _location_parent name:/frutree/chassis/MB/system-board/C3/cpu-module/P0/cpu