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/*
2347f258d3Sfw * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
2406e46062Sjbeloro * Use is subject to license terms.
2506e46062Sjbeloro *
2606e46062Sjbeloro * ident	"%Z%%M%	%I%	%E% SMI"
2706e46062Sjbeloro *
2806e46062Sjbeloro * This configuration file is parsed by PICL frudr plugin in response
29*035c74aaSvenki * to a PICL_FRU_ADDED event for PS1
3006e46062Sjbeloro *
3106e46062Sjbeloro * supported prop types: void, int, uint, float, string
3206e46062Sjbeloro * supported prop access_modes: r, w, rw
3306e46062Sjbeloro *
3406e46062Sjbeloro * VERSION <version_number>  -- supported version number is 1.0
3506e46062Sjbeloro *
3606e46062Sjbeloro * name:<namepath> --     gives the anchor node
3706e46062Sjbeloro *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
3806e46062Sjbeloro *
3906e46062Sjbeloro * _class:<classpath> --   gives the anchor node
4006e46062Sjbeloro *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
4106e46062Sjbeloro *
4206e46062Sjbeloro * NODE <name> <class>
4306e46062Sjbeloro *       {describes a subtree}
4406e46062Sjbeloro * ENDNODE
4506e46062Sjbeloro *
4606e46062Sjbeloro * PROP <name> <type> <access_mode> [<size> <value>] -- per property
4706e46062Sjbeloro *
4806e46062Sjbeloro * REFPROP <name> <dstnode>
4906e46062Sjbeloro *
5006e46062Sjbeloro * REFNODE <name> <class> with <destnode> -- Associates a new node
5106e46062Sjbeloro *       with <destnode> if exists
5206e46062Sjbeloro *       where
5306e46062Sjbeloro *             <name> is the nodename
5406e46062Sjbeloro *             <class> is the picl class.
5506e46062Sjbeloro *             <destnode> is name:<namepath> or _class:<classpath>
5606e46062Sjbeloro *
5706e46062Sjbeloro * If "name:" or "_class:" is not specified in the <path>,
5806e46062Sjbeloro * the default is "name:"
5906e46062Sjbeloro *
6006e46062Sjbeloro */
6106e46062Sjbeloro
6206e46062Sjbeloro/*
6306e46062Sjbeloro * define a macro to force a #ident line into the output stream
6406e46062Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
6506e46062Sjbeloro */
6606e46062Sjbeloro#ifndef id
6706e46062Sjbeloro#define	id(s)	#ident s
6806e46062Sjbeloro#endif
6906e46062Sjbeloroid("%Z%%M%	%I%	%E% SMI")
7006e46062Sjbeloro
7106e46062Sjbeloro#ifndef RMCLOMV
7206e46062Sjbeloro#define	RMCLOMV	/platform/ebus@1f,464000/rmc-comm@0,c28000/SUNW,rmclomv
7306e46062Sjbeloro#endif	/* RMCLOMV */
7406e46062Sjbeloro
7506e46062Sjbeloroname:/frutree/chassis/PS1/power-supply
7606e46062Sjbeloro	PROP FRUDataAvailable void r
7747f258d3Sfw	REFPROP _seeprom_source name:/platform/i2c@1f,520000/power-supply-fru-prom@0,32
7806e46062SjbeloroTABLE Devices
7906e46062SjbeloroROW
8006e46062SjbeloroPROP Class string r 0 "led"
8106e46062SjbeloroREFPROP _led_ name:RMCLOMV/ps1_pok
8206e46062SjbeloroENDROW
8306e46062SjbeloroROW
8406e46062SjbeloroPROP Class string r 0 "led"
8506e46062SjbeloroREFPROP _led_ name:RMCLOMV/ps1_stby
8606e46062SjbeloroENDROW
8706e46062SjbeloroROW
8806e46062SjbeloroPROP Class string r 0 "led"
8906e46062SjbeloroREFPROP _led_ name:RMCLOMV/ps1_service
9006e46062SjbeloroENDROW
9106e46062SjbeloroROW
9206e46062SjbeloroPROP Class string r 0 "voltage-indicator"
9306e46062SjbeloroREFPROP _voltage-indicator_ name:RMCLOMV/ps1_ff_pok
9406e46062SjbeloroENDROW
9506e46062SjbeloroROW
9606e46062SjbeloroPROP Class string r 0 "voltage-indicator"
9706e46062SjbeloroREFPROP _voltage-indicator_ name:RMCLOMV/ps1_p_pwr
9806e46062SjbeloroENDROW
9906e46062SjbeloroROW
10006e46062SjbeloroPROP Class string r 0 "voltage-indicator"
10106e46062SjbeloroREFPROP _voltage-indicator_ name:RMCLOMV/ps1_ff_uv
10206e46062SjbeloroENDROW
10306e46062SjbeloroROW
10406e46062SjbeloroPROP Class string r 0 "voltage-indicator"
10506e46062SjbeloroREFPROP _voltage-indicator_ name:RMCLOMV/ps1_ff_ov
10606e46062SjbeloroENDROW
10706e46062SjbeloroROW
10806e46062SjbeloroPROP Class string r 0 "current-indicator"
10906e46062SjbeloroREFPROP _current-indicator_ name:RMCLOMV/ps1_ff_oc
11006e46062SjbeloroENDROW
11106e46062SjbeloroROW
11206e46062SjbeloroPROP Class string r 0 "temperature-indicator"
11306e46062SjbeloroREFPROP _temperature-indicator_ name:RMCLOMV/ps1_ff_ot
11406e46062SjbeloroENDROW
11506e46062SjbeloroROW
11606e46062SjbeloroPROP Class string r 0 "fan"
11706e46062SjbeloroREFPROP _fan_ name:RMCLOMV/ps1_ff_fan
11806e46062SjbeloroENDROW
11906e46062SjbeloroENDTABLE
12006e46062Sjbeloro
12147f258d3Sfwname:/platform/i2c@1f,520000/power-supply-fru-prom@0,32
12206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
12347f258d3Sfw        PROP FRUDevicePath string r 0 "/devices/i2c@1f,520000/power-supply-fru-prom@0,32:power-supply-fru-prom"
12406e46062Sjbeloro
12506e46062Sjbeloroname:RMCLOMV/ps1_pok
12606e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
12706e46062Sjbeloroname:RMCLOMV/ps1_stby
12806e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
12906e46062Sjbeloroname:RMCLOMV/ps1_service
13006e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
13106e46062Sjbeloroname:RMCLOMV/ps1_ff_pok
13206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
13306e46062Sjbeloroname:RMCLOMV/ps1_p_pwr
13406e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
13506e46062Sjbeloroname:RMCLOMV/ps1_ff_uv
13606e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
13706e46062Sjbeloroname:RMCLOMV/ps1_ff_ov
13806e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
13906e46062Sjbeloroname:RMCLOMV/ps1_ff_oc
14006e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
14106e46062Sjbeloroname:RMCLOMV/ps1_ff_ot
14206e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
14306e46062Sjbeloroname:RMCLOMV/ps1_ff_fan
14406e46062Sjbeloro	REFPROP _fru_parent name:/frutree/chassis/PS1/power-supply
145