2N/A/*
2N/A * CDDL HEADER START
2N/A *
2N/A * The contents of this file are subject to the terms of the
2N/A * Common Development and Distribution License (the "License").
2N/A * You may not use this file except in compliance with the License.
2N/A *
2N/A * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2N/A * or http://www.opensolaris.org/os/licensing.
2N/A * See the License for the specific language governing permissions
2N/A * and limitations under the License.
2N/A *
2N/A * When distributing Covered Code, include this CDDL HEADER in each
2N/A * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2N/A * If applicable, add the following below this CDDL HEADER, with the
2N/A * fields enclosed by brackets "[]" replaced with your own identifying
2N/A * information: Portions Copyright [yyyy] [name of copyright owner]
2N/A *
2N/A * CDDL HEADER END
2N/A */
2N/A
2N/A/*
2N/A * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
2N/A * Use is subject to license terms.
2N/A */
2N/A
2N/A/*
2N/A * ident "%Z%%M% %I% %E% SMI"
2N/A *
2N/A * This configuration file is parsed by PICL plugin frudr in response
2N/A * to a PICL_FRU_ADDED event for FT2
2N/A *
2N/A * supported prop types: void, int, uint, float, string
2N/A * supported prop access_modes: r, w, rw
2N/A *
2N/A * VERSION <version_number> -- supported version number is 1.0
2N/A *
2N/A * name:<namepath> -- gives the anchor node
2N/A * where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
2N/A *
2N/A * _class:<classpath> -- gives the anchor node
2N/A * where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
2N/A *
2N/A * NODE <name> <class>
2N/A * {describes a subtree}
2N/A * ENDNODE
2N/A *
2N/A * PROP <name> <type> <access_mode> [<size> <value>] -- per property
2N/A *
2N/A * REFPROP <name> <dstnode>
2N/A *
2N/A * REFNODE <name> <class> with <destnode> -- Associates a new node
2N/A * with <destnode> if exists
2N/A * where
2N/A * <name> is the nodename
2N/A * <class> is the picl class.
2N/A * <destnode> is name:<namepath> or _class:<classpath>
2N/A *
2N/A * If "name:" or "_class:" is not specified in the <path>,
2N/A * the default is "name:"
2N/A *
2N/A */
2N/A
2N/A/*
2N/A * define a macro to force a #ident line into the output stream
2N/A * otherwise cpp removes it. Use #ifndef because of #included definitions.
2N/A */
2N/A#ifndef id
2N/A#define id(s) #ident s
2N/A#endif
2N/Aid("%Z%%M% %I% %E% SMI")
2N/A
2N/AVERSION 1.1
2N/AVERBOSE 1
2N/A
2N/A#ifndef FCB0_1U
2N/A#define FCB0_1U /frutree/chassis/MB/system-board/FIOB/front-io-board-1/FCB0/fan-connector-board
2N/A#endif
2N/A#ifndef FCB0_2U
2N/A#define FCB0_2U /frutree/chassis/MB/system-board/FIOB/front-io-board-2/FCB0/fan-connector-board
2N/A#endif
2N/A
2N/A/*
2N/A * Create fan nodes for Seattle 1U
2N/A */
2N/Aname:FCB0_1U/FT2/fan-tray
2N/A NODE F0 location
2N/A PROP SlotType string r 0 "fan-unit"
2N/A PROP Label string r 0 "F0"
2N/A ENDNODE
2N/A NODE F1 location
2N/A PROP SlotType string r 0 "fan-unit"
2N/A PROP Label string r 0 "F1"
2N/A ENDNODE
2N/A
2N/A/*
2N/A * Create fan nodes for Seattle 2U
2N/A */
2N/Aname:FCB0_2U/FT2/fan-tray
2N/A NODE F0 location
2N/A PROP SlotType string r 0 "fan-unit"
2N/A PROP Label string r 0 "F0"
2N/A ENDNODE
2N/A
2N/A#include "fru_FT2_data.info"
2N/A