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
27*1103Sjbeloro/*
28*1103Sjbeloro * ident	"%Z%%M%	%I%	%E% SMI"
29*1103Sjbeloro *
30*1103Sjbeloro * This configuration file is parsed by PICL plugin envmon after
31*1103Sjbeloro * it has established rmclomv nodes in /platform
32*1103Sjbeloro *
33*1103Sjbeloro * supported prop types: void, int, uint, float, string
34*1103Sjbeloro * supported prop access_modes: r, w, rw
35*1103Sjbeloro *
36*1103Sjbeloro * VERSION <version_number>  -- supported version number is 1.0
37*1103Sjbeloro *
38*1103Sjbeloro * name:<namepath> --     gives the anchor node
39*1103Sjbeloro *      where <namepath> is <nodename>[@<bus-addr>][?<prop>=<val>]
40*1103Sjbeloro *
41*1103Sjbeloro * _class:<classpath> --   gives the anchor node
42*1103Sjbeloro *      where <classpath> is <classname>[@<bus-addr>][?<prop>=<val>]
43*1103Sjbeloro *
44*1103Sjbeloro * NODE <name> <class>
45*1103Sjbeloro *       {describes a subtree}
46*1103Sjbeloro * ENDNODE
47*1103Sjbeloro *
48*1103Sjbeloro * PROP <name> <type> <access_mode> [<size> <value>] -- per property
49*1103Sjbeloro *
50*1103Sjbeloro * REFPROP <name> <dstnode>
51*1103Sjbeloro *
52*1103Sjbeloro * REFNODE <name> <class> with <destnode> -- Associates a new node
53*1103Sjbeloro *       with <destnode> if exists
54*1103Sjbeloro *       where
55*1103Sjbeloro *             <name> is the nodename
56*1103Sjbeloro *             <class> is the picl class.
57*1103Sjbeloro *             <destnode> is name:<namepath> or _class:<classpath>
58*1103Sjbeloro *
59*1103Sjbeloro * If "name:" or "_class:" is not specified in the <path>,
60*1103Sjbeloro * the default is "name:"
61*1103Sjbeloro *
62*1103Sjbeloro */
63*1103Sjbeloro
64*1103Sjbeloro/*
65*1103Sjbeloro * define a macro to force a #ident line into the output stream
66*1103Sjbeloro * otherwise cpp removes it. Use #ifndef because of #included definitions.
67*1103Sjbeloro */
68*1103Sjbeloro#ifndef id
69*1103Sjbeloro#define	id(s)	#ident s
70*1103Sjbeloro#endif
71*1103Sjbeloroid("%Z%%M% %I%     %E% SMI")
72*1103Sjbeloro
73*1103SjbeloroVERSION 1.1
74*1103SjbeloroVERBOSE 1
75*1103Sjbeloro
76*1103Sjbeloro#define	RMC_COMM	/platform/ebus@1f,464000/rmc-comm@2,0
77*1103Sjbeloro
78*1103Sjbeloro/*
79*1103Sjbeloro * add a node for the rmclomv leaf driver
80*1103Sjbeloro */
81*1103Sjbeloroname:RMC_COMM
82*1103Sjbeloro	NODE SUNW,rmclomv service-processor
83*1103Sjbeloro	ENDNODE
84*1103Sjbeloro
85*1103Sjbeloroname:RMC_COMM/SUNW,rmclomv
86*1103Sjbeloro	PROP devfs-path string r 0 "/pseudo/rmclomv@0"
87