1*8326d453Svenki/*
2*8326d453Svenki * CDDL HEADER START
3*8326d453Svenki *
4*8326d453Svenki * The contents of this file are subject to the terms of the
5*8326d453Svenki * Common Development and Distribution License (the "License").
6*8326d453Svenki * You may not use this file except in compliance with the License.
7*8326d453Svenki *
8*8326d453Svenki * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*8326d453Svenki * or http://www.opensolaris.org/os/licensing.
10*8326d453Svenki * See the License for the specific language governing permissions
11*8326d453Svenki * and limitations under the License.
12*8326d453Svenki *
13*8326d453Svenki * When distributing Covered Code, include this CDDL HEADER in each
14*8326d453Svenki * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*8326d453Svenki * If applicable, add the following below this CDDL HEADER, with the
16*8326d453Svenki * fields enclosed by brackets "[]" replaced with your own identifying
17*8326d453Svenki * information: Portions Copyright [yyyy] [name of copyright owner]
18*8326d453Svenki *
19*8326d453Svenki * CDDL HEADER END
20*8326d453Svenki */
21*8326d453Svenki
22*8326d453Svenki/*
23*8326d453Svenki * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24*8326d453Svenki * Use is subject to license terms.
25*8326d453Svenki */
26*8326d453Svenki
27*8326d453Svenki/*
28*8326d453Svenki * ident	"%Z%%M%	%I%	%E% SMI"
29*8326d453Svenki *
30*8326d453Svenki * This configuration file is parsed by PICL plugin frudr in response
31*8326d453Svenki * to a PICL_FRU_ADDED event for FT0
32*8326d453Svenki *
33*8326d453Svenki * supported prop types: void, int, uint, float, string
34*8326d453Svenki * supported prop access_modes: r, w, rw
35*8326d453Svenki *
36*8326d453Svenki * VERSION <version_number>  -- supported version number is 1.0
37*8326d453Svenki *
38*8326d453Svenki * name:<namepath> --     gives the anchor node
39*8326d453Svenki *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
40*8326d453Svenki *
41*8326d453Svenki * _class:<classpath> --   gives the anchor node
42*8326d453Svenki *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
43*8326d453Svenki *
44*8326d453Svenki * NODE <name> <class>
45*8326d453Svenki *       {describes a subtree}
46*8326d453Svenki * ENDNODE
47*8326d453Svenki *
48*8326d453Svenki * PROP <name> <type> <access_mode> [<size> <value>] -- per property
49*8326d453Svenki *
50*8326d453Svenki * REFPROP <name> <dstnode>
51*8326d453Svenki *
52*8326d453Svenki * REFNODE <name> <class> with <destnode> -- Associates a new node
53*8326d453Svenki *       with <destnode> if exists
54*8326d453Svenki *       where
55*8326d453Svenki *             <name> is the nodename
56*8326d453Svenki *             <class> is the picl class.
57*8326d453Svenki *             <destnode> is name:<namepath> or _class:<classpath>
58*8326d453Svenki *
59*8326d453Svenki * If "name:" or "_class:" is not specified in the <path>,
60*8326d453Svenki * the default is "name:"
61*8326d453Svenki *
62*8326d453Svenki */
63*8326d453Svenki
64*8326d453Svenki/*
65*8326d453Svenki * define a macro to force a #ident line into the output stream
66*8326d453Svenki * otherwise cpp removes it. Use #ifndef because of #included definitions.
67*8326d453Svenki */
68*8326d453Svenki#ifndef id
69*8326d453Svenki#define	id(s)	#ident s
70*8326d453Svenki#endif
71*8326d453Svenkiid("%Z%%M% %I%     %E% SMI")
72*8326d453Svenki
73*8326d453SvenkiVERSION 1.1
74*8326d453SvenkiVERBOSE 1
75*8326d453Svenki
76*8326d453Svenki#ifndef FCB0_1U
77*8326d453Svenki#define FCB0_1U /frutree/chassis/MB/system-board/FIOB/front-io-board-1/FCB0/fan-connector-board
78*8326d453Svenki#endif
79*8326d453Svenki#ifndef FCB0_2U
80*8326d453Svenki#define FCB0_2U /frutree/chassis/MB/system-board/FIOB/front-io-board-2/FCB0/fan-connector-board
81*8326d453Svenki#endif
82*8326d453Svenki
83*8326d453Svenki/*
84*8326d453Svenki * Create fan nodes for Seattle 1U
85*8326d453Svenki */
86*8326d453Svenkiname:FCB0_1U/FT0/fan-tray
87*8326d453Svenki    NODE F0 location
88*8326d453Svenki	PROP SlotType string r 0 "fan-unit"
89*8326d453Svenki	PROP Label string r 0 "F0"
90*8326d453Svenki    ENDNODE
91*8326d453Svenki    NODE F1 location
92*8326d453Svenki	PROP SlotType string r 0 "fan-unit"
93*8326d453Svenki	PROP Label string r 0 "F1"
94*8326d453Svenki    ENDNODE
95*8326d453Svenki
96*8326d453Svenki/*
97*8326d453Svenki * Create fan nodes for Seattle 2U
98*8326d453Svenki */
99*8326d453Svenkiname:FCB0_2U/FT0/fan-tray
100*8326d453Svenki    NODE F0 location
101*8326d453Svenki	PROP SlotType string r 0 "fan-unit"
102*8326d453Svenki	PROP Label string r 0 "F0"
103*8326d453Svenki    ENDNODE
104*8326d453Svenki
105*8326d453Svenki#include "fru_FT0_data.info"
106