blob: 6fb726bb8caa3b01d37615b3f1e6bd1fb254d992 [file] [log] [blame]
Norman James362a80f2015-09-14 14:04:39 -05001<node>
Norman James362a80f2015-09-14 14:04:39 -05002 <interface name="org.openbmc.Fan">
3 <method name="setCoolingZone">
4 <arg name="cooling_zone" type="i" direction="in"/>
5 </method>
6 <method name="getSpeed">
7 <arg name="speed" type="i" direction="out"/>
8 </method>
9 <method name="setSpeed">
10 <arg name="speed" type="i" direction="in"/>
11 </method>
12 <property name="speed" type="i" access="readwrite"/>
13 <property name="cooling_zone" type="i" access="readwrite"/>
14 <property name="pwm_num" type="i" access="readwrite"/>
15 <signal name="SpeedChanged">
16 <arg name="speed" type="i"/>
17 </signal>
18 <signal name="TachError"/>
19 </interface>
20 <interface name="org.openbmc.SensorValue">
21 <method name="init"/>
22 <method name="getValue">
23 <arg name="value" type="v" direction="out"/>
24 </method>
Norman James19e45912015-10-04 20:19:41 -050025 <method name="setValue">
26 <arg name="value" type="v" direction="in"/>
27 </method>
Norman James362a80f2015-09-14 14:04:39 -050028
29 <property name="value" type="v" access="read"/>
30 <property name="units" type="s" access="read"/>
31 <property name="poll_interval" type="i" access="readwrite"/>
32 <property name="heatbeat" type="i" access="read"/>
33 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050034
35 <signal name="Changed">
36 <arg name="value" type="v"/>
37 <arg name="units" type="s"/>
38 </signal>
Norman James32e74e22015-09-15 21:28:06 -050039 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050040 <signal name="Heartbeat">
41 <arg name="bus_name" type="s"/>
42 </signal>
43 </interface>
44 <interface name="org.openbmc.SensorThreshold">
45 <method name="getState">
46 <arg name="state" type="y" direction="out"/>
47 </method>
48
49 <property name="lower_critical" type="v" access="readwrite"/>
50 <property name="lower_warning" type="v" access="readwrite"/>
51 <property name="upper_warning" type="v" access="readwrite"/>
52 <property name="upper_critical" type="v" access="readwrite"/>
53 <property name="state" type="y" access="read"/>
54
55 <signal name="Warning"/>
56 <signal name="Critical"/>
57 <signal name="Normal"/>
58 </interface>
59 <interface name="org.openbmc.SensorI2c">
60 <property name="dev_path" type="s" access="readwrite"/>
61 <property name="address" type="s" access="readwrite"/>
62 </interface>
63 <interface name="org.openbmc.SensorMatch">
64 <property name="match_value" type="v" access="read"/>
65 <property name="state" type="y" access="read"/>
66 <signal name="SensorMatch">
67 <arg name="state" type="y"/>
68 </signal>
69 </interface>
70 <interface name="org.openbmc.Process">
71 <method name="stop"/>
72 </interface>
Norman James18998182015-10-11 21:54:53 -050073 <interface name="org.openbmc.SharedResource">
74 <method name="lock">
75 <arg name="name" type="s" direction="in"/>
76 </method>
77 <method name="unlock"/>
78 <method name="isLocked">
79 <arg name="lock" type="b" direction="out"/>
80 <arg name="name" type="s" direction="out"/>
81 </method>
82 <property name="lock" type="b" access="read"/>
83 <property name="name" type="s" access="read"/>
84 </interface>
85
Norman James362a80f2015-09-14 14:04:39 -050086 <interface name="org.openbmc.Control">
87 <method name="init"/>
88 <property name="poll_interval" type="i" access="readwrite"/>
89 <property name="heatbeat" type="i" access="read"/>
90 <signal name="Heartbeat">
91 <arg name="bus_name" type="s"/>
92 </signal>
93 <signal name="GotoSystemState">
94 <arg name="state_name" type="s"/>
95 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -050096 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -050097 </interface>
98 <interface name="org.openbmc.control.Bmc">
99 <method name="place_holder"/>
100 </interface>
101 <interface name="org.openbmc.control.Host">
102 <method name="boot"/>
103 <method name="shutdown"/>
104 <method name="reboot"/>
105 <signal name="Booted"/>
106 </interface>
107 <interface name="org.openbmc.control.Power">
108 <method name="setPowerState">
109 <arg name="state" type="i" direction="in"/>
110 </method>
111 <method name="getPowerState">
112 <arg name="state" type="i" direction="out"/>
113 </method>
114 <signal name="PowerGood">
115 </signal>
116 <signal name="PowerLost">
117 </signal>
118 <property name="pgood" type="i" access="read"/>
119 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500120 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500121 </interface>
122 <interface name="org.openbmc.Watchdog">
123 <method name="start"/>
124 <method name="poke"/>
125 <method name="stop"/>
126 <property name="watchdog" type="i" access="readwrite"/>
127 <property name="poll_interval" type="i" access="readwrite"/>
128 <signal name="WatchdogError"/>
129 </interface>
130 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500131 <method name="getEventLog">
132 <arg name="log" type="a(s)" direction="out"/>
133 </method>
Norman James362a80f2015-09-14 14:04:39 -0500134 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500135 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500136 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500137 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500138 </signal>
139 </interface>
140 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500141 <method name="update">
142 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500143 </method>
Norman Jamesf066e872015-10-07 15:29:51 -0500144 <method name="updateViaTftp">
145 <arg name="url" type="s" direction="in"/>
146 <arg name="filename" type="s" direction="in"/>
147 </method>
Norman James362a80f2015-09-14 14:04:39 -0500148 <method name="init"/>
149 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500150 <signal name="Download">
151 <arg name="url" type="s"/>
152 <arg name="filename" type="s"/>
153 </signal>
Norman James18998182015-10-11 21:54:53 -0500154 <property name="filename" type="s" access="read"/>
155 <property name="flasher_path" type="s" access="read"/>
156 <property name="flasher_name" type="s" access="read"/>
157 <property name="flasher_instance" type="s" access="read"/>
158 </interface>
159 <interface name="org.openbmc.FlashControl">
160 <method name="flash">
161 <arg name="type" type="s" direction="in"/>
162 <arg name="filename" type="s" direction="in"/>
163 </method>
164 <signal name="Done">
165 <arg name="filename" type="s"/>
166 </signal>
167 <signal name="Error">
168 <arg name="filename" type="s"/>
169 </signal>
170 <signal name="Progress">
171 <arg name="filename" type="s"/>
172 <arg name="progress" type="y"/>
173 </signal>
174 <property name="filename" type="s" access="read"/>
175 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500176 </interface>
177 <interface name="org.openbmc.Button">
178 <method name="isOn">
179 <arg name="state" type="b" direction="out"/>
180 </method>
181 <method name="simButtonPress"/>
182 <method name="simButtonLongPress"/>
183
184 <property name="state" type="b" access="read"/>
185 <signal name="ButtonRelease"/>
186 <signal name="ButtonPressed"/>
187 <signal name="ButtonPressedLong"/>
188 </interface>
189 <interface name="org.openbmc.Led">
190 <method name="setOn"/>
191 <method name="setOff"/>
192 <method name="setBlinkSlow"/>
193 <method name="setBlinkFast"/>
194
195 <property name="color" type="i" access="read"/>
196 <property name="function" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800197 </interface>
198 <interface name="org.openbmc.HostIpmi">
199 <signal name="ReceivedMessage">
200 <arg type="y" name="seq" />
201 <arg type="y" name="netfn" />
202 <arg type="y" name="cmd" />
203 <arg type="ay" name="data" />
204 </signal>
205 <method name="sendMessage">
206 <arg direction="in" type="y" name="seq" />
207 <arg direction="in" type="y" name="netfn" />
208 <arg direction="in" type="y" name="cmd" />
209 <arg direction="in" type="ay" name="data" />
210 <arg direction="out" type="x" />
211 </method>
Norman James362a80f2015-09-14 14:04:39 -0500212 </interface>
213</node>