1*1103Sjbeloro/*
2*1103Sjbeloro * CDDL HEADER START
3*1103Sjbeloro *
4*1103Sjbeloro * The contents of this file are subject to the terms of the
5*1103Sjbeloro * Common Development and Distribution License (the "License").
6*1103Sjbeloro * You may not use this file except in compliance with the License.
7*1103Sjbeloro *
8*1103Sjbeloro * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*1103Sjbeloro * or http://www.opensolaris.org/os/licensing.
10*1103Sjbeloro * See the License for the specific language governing permissions
11*1103Sjbeloro * and limitations under the License.
12*1103Sjbeloro *
13*1103Sjbeloro * When distributing Covered Code, include this CDDL HEADER in each
14*1103Sjbeloro * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*1103Sjbeloro * If applicable, add the following below this CDDL HEADER, with the
16*1103Sjbeloro * fields enclosed by brackets "[]" replaced with your own identifying
17*1103Sjbeloro * information: Portions Copyright [yyyy] [name of copyright owner]
18*1103Sjbeloro *
19*1103Sjbeloro * CDDL HEADER END
20*1103Sjbeloro */
21*1103Sjbeloro
22*1103Sjbeloro/*
23*1103Sjbeloro * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24*1103Sjbeloro * Use is subject to license terms.
25*1103Sjbeloro *
26*1103Sjbeloro * ident	"%Z%%M%	%I%	%E% SMI"
27*1103Sjbeloro *
28*1103Sjbeloro * This configuration file is parsed by PICL plugin envmon after
29*1103Sjbeloro * it has established rmclomv nodes in /platform
30*1103Sjbeloro *
31*1103Sjbeloro * supported prop types: void, int, uint, float, string
32*1103Sjbeloro * supported prop access_modes: r, w, rw
33*1103Sjbeloro *
34*1103Sjbeloro * VERSION <version_number>  -- supported version number is 1.0
35*1103Sjbeloro *
36*1103Sjbeloro * name:<namepath> --     gives the anchor node
37*1103Sjbeloro *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
38*1103Sjbeloro *
39*1103Sjbeloro * _class:<classpath> --   gives the anchor node
40*1103Sjbeloro *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
41*1103Sjbeloro *
42*1103Sjbeloro * NODE <name> <class>
43*1103Sjbeloro *       {describes a subtree}
44*1103Sjbeloro * ENDNODE
45*1103Sjbeloro *
46*1103Sjbeloro * PROP <name> <type> <access_mode> [<size> <value>] -- per property
47*1103Sjbeloro *
48*1103Sjbeloro * REFPROP <name> <dstnode>
49*1103Sjbeloro *
50*1103Sjbeloro * REFNODE <name> <class> with <destnode> -- Associates a new node
51*1103Sjbeloro *       with <destnode> if exists
52*1103Sjbeloro *       where
53*1103Sjbeloro *             <name> is the nodename
54*1103Sjbeloro *             <class> is the picl class.
55*1103Sjbeloro *             <destnode> is name:<namepath> or _class:<classpath>
56*1103Sjbeloro *
57*1103Sjbeloro * If "name:" or "_class:" is not specified in the <path>,
58*1103Sjbeloro * the default is "name:"
59*1103Sjbeloro *
60*1103Sjbeloro */
61*1103Sjbeloro
62*1103Sjbeloro/*
63*1103Sjbeloro * define a macro to force a #ident line into the output stream
64*1103Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
65*1103Sjbeloro */
66*1103Sjbeloro#ifndef id
67*1103Sjbeloro#define	id(s)	#ident s
68*1103Sjbeloro#endif
69*1103Sjbeloroid("%Z%%M%	%I%	%E% SMI")
70*1103Sjbeloro
71*1103SjbeloroVERSION 1.1
72*1103SjbeloroVERBOSE 1
73*1103Sjbeloro
74*1103Sjbeloro#define	RMC_COMM	/platform/ebus@1f,464000/rmc-comm@0,c28000
75*1103Sjbeloro
76*1103Sjbeloro/*
77*1103Sjbeloro * add a node for the rmclomv leaf driver
78*1103Sjbeloro */
79*1103Sjbeloroname:RMC_COMM
80*1103Sjbeloro	NODE SUNW,rmclomv service-processor
81*1103Sjbeloro	ENDNODE
82*1103Sjbeloro
83*1103Sjbeloroname:RMC_COMM/SUNW,rmclomv
84*1103Sjbeloro	PROP devfs-path string r 0 "/pseudo/rmclomv@0"
85