1/*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21/*
22 * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved.
23 *
24 * This configuration file is parsed by PICL plugin envmon in response
25 * to a PICL_FRU_ADDED event for FT2
26 *
27 * supported prop types: void, int, uint, float, string
28 * supported prop access_modes: r, w, rw
29 *
30 * VERSION <version_number>  -- supported version number is 1.0
31 *
32 * name:<namepath> --     gives the anchor node
33 *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
34 *
35 * _class:<classpath> --   gives the anchor node
36 *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
37 *
38 * NODE <name> <class>
39 *       {describes a subtree}
40 * ENDNODE
41 *
42 * PROP <name> <type> <access_mode> [<size> <value>] -- per property
43 *
44 * REFPROP <name> <dstnode>
45 *
46 * REFNODE <name> <class> with <destnode> -- Associates a new node
47 *       with <destnode> if exists
48 *       where
49 *             <name> is the nodename
50 *             <class> is the picl class.
51 *             <destnode> is name:<namepath> or _class:<classpath>
52 *
53 * If "name:" or "_class:" is not specified in the <path>,
54 * the default is "name:"
55 *
56 */
57
58VERSION 1.1
59VERBOSE 1
60
61name:/frutree/chassis/FT3
62	PROP SlotType string r 0 "fan-tray"
63	PROP Label string r 0 "FT3"
64	Node F0 location
65	    PROP SlotType string r 0 "fan-unit"
66	    Prop Label string r 0 "F0"
67		NODE fan fru
68		ENDNODE
69	ENDNODE
70name:/platform/pci@1e,600000/isa@7/rmc-comm@0,3e8/SUNW,rmclomv/ft3_f0
71	REFPROP	_location_parent name:/frutree/chassis/FT3/F0
72name:/frutree/chassis/FT3/F0/fan
73	TABLE Devices
74	ROW
75	PROP Class string r 0 "fan"
76	REFPROP _fan_ name:/platform/pci@1e,600000/isa@7/rmc-comm@0,3e8/SUNW,rmclomv/ft3_f0
77	ENDROW
78	ENDTABLE
79