blob: cabe910ca393f88344ad1a8b5bff0dfa0ebfd832 [file] [log] [blame]
Norman James362a80f2015-09-14 14:04:39 -05001<node>
Norman James5236a8f2015-11-05 20:39:31 -06002 <interface name="org.openbmc.Hwmon">
3 <property name="poll_interval" type="i" access="read"/>
4 <property name="sysfs_path" type="s" access="read"/>
Norman James74828452015-11-17 13:10:34 -06005 <property name="scale" type="i" access="read"/>
Norman James5236a8f2015-11-05 20:39:31 -06006 </interface>
Norman James362a80f2015-09-14 14:04:39 -05007 <interface name="org.openbmc.Fan">
8 <method name="setCoolingZone">
9 <arg name="cooling_zone" type="i" direction="in"/>
10 </method>
11 <method name="getSpeed">
12 <arg name="speed" type="i" direction="out"/>
13 </method>
14 <method name="setSpeed">
15 <arg name="speed" type="i" direction="in"/>
16 </method>
17 <property name="speed" type="i" access="readwrite"/>
18 <property name="cooling_zone" type="i" access="readwrite"/>
19 <property name="pwm_num" type="i" access="readwrite"/>
20 <signal name="SpeedChanged">
21 <arg name="speed" type="i"/>
22 </signal>
23 <signal name="TachError"/>
24 </interface>
25 <interface name="org.openbmc.SensorValue">
26 <method name="init"/>
27 <method name="getValue">
28 <arg name="value" type="v" direction="out"/>
29 </method>
Norman James19e45912015-10-04 20:19:41 -050030 <method name="setValue">
31 <arg name="value" type="v" direction="in"/>
32 </method>
Norman James362a80f2015-09-14 14:04:39 -050033
34 <property name="value" type="v" access="read"/>
35 <property name="units" type="s" access="read"/>
36 <property name="poll_interval" type="i" access="readwrite"/>
37 <property name="heatbeat" type="i" access="read"/>
38 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050039
40 <signal name="Changed">
41 <arg name="value" type="v"/>
42 <arg name="units" type="s"/>
43 </signal>
Norman James32e74e22015-09-15 21:28:06 -050044 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050045 <signal name="Heartbeat">
46 <arg name="bus_name" type="s"/>
47 </signal>
48 </interface>
49 <interface name="org.openbmc.SensorThreshold">
50 <method name="getState">
51 <arg name="state" type="y" direction="out"/>
52 </method>
53
54 <property name="lower_critical" type="v" access="readwrite"/>
55 <property name="lower_warning" type="v" access="readwrite"/>
56 <property name="upper_warning" type="v" access="readwrite"/>
57 <property name="upper_critical" type="v" access="readwrite"/>
58 <property name="state" type="y" access="read"/>
59
60 <signal name="Warning"/>
61 <signal name="Critical"/>
62 <signal name="Normal"/>
63 </interface>
64 <interface name="org.openbmc.SensorI2c">
65 <property name="dev_path" type="s" access="readwrite"/>
66 <property name="address" type="s" access="readwrite"/>
67 </interface>
68 <interface name="org.openbmc.SensorMatch">
69 <property name="match_value" type="v" access="read"/>
70 <property name="state" type="y" access="read"/>
71 <signal name="SensorMatch">
72 <arg name="state" type="y"/>
73 </signal>
74 </interface>
75 <interface name="org.openbmc.Process">
76 <method name="stop"/>
77 </interface>
Norman James18998182015-10-11 21:54:53 -050078 <interface name="org.openbmc.SharedResource">
79 <method name="lock">
80 <arg name="name" type="s" direction="in"/>
81 </method>
82 <method name="unlock"/>
83 <method name="isLocked">
84 <arg name="lock" type="b" direction="out"/>
85 <arg name="name" type="s" direction="out"/>
86 </method>
87 <property name="lock" type="b" access="read"/>
88 <property name="name" type="s" access="read"/>
89 </interface>
90
Norman James362a80f2015-09-14 14:04:39 -050091 <interface name="org.openbmc.Control">
92 <method name="init"/>
93 <property name="poll_interval" type="i" access="readwrite"/>
94 <property name="heatbeat" type="i" access="read"/>
95 <signal name="Heartbeat">
96 <arg name="bus_name" type="s"/>
97 </signal>
98 <signal name="GotoSystemState">
99 <arg name="state_name" type="s"/>
100 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -0500101 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -0500102 </interface>
103 <interface name="org.openbmc.control.Bmc">
Williamf784d752016-01-19 12:28:49 +0800104 <method name="warmReset"/>
Norman James362a80f2015-09-14 14:04:39 -0500105 </interface>
106 <interface name="org.openbmc.control.Host">
107 <method name="boot"/>
108 <method name="shutdown"/>
109 <method name="reboot"/>
Norman James493996c2015-10-31 17:27:13 -0500110 <property name="debug_mode" type="i" access="readwrite"/>
111 <property name="flash_side" type="s" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500112 <signal name="Booted"/>
113 </interface>
114 <interface name="org.openbmc.control.Power">
115 <method name="setPowerState">
116 <arg name="state" type="i" direction="in"/>
117 </method>
118 <method name="getPowerState">
119 <arg name="state" type="i" direction="out"/>
120 </method>
121 <signal name="PowerGood">
122 </signal>
123 <signal name="PowerLost">
124 </signal>
125 <property name="pgood" type="i" access="read"/>
126 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500127 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500128 </interface>
Adriana Kobylak60c15862016-06-16 09:06:32 -0500129 <interface name="org.openbmc.control.Checkstop">
130 </interface>
Norman James362a80f2015-09-14 14:04:39 -0500131 <interface name="org.openbmc.Watchdog">
132 <method name="start"/>
133 <method name="poke"/>
134 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500135 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500136 <arg direction="in" type="i" name="interval" />
137 </method>
Norman James362a80f2015-09-14 14:04:39 -0500138 <property name="watchdog" type="i" access="readwrite"/>
139 <property name="poll_interval" type="i" access="readwrite"/>
140 <signal name="WatchdogError"/>
141 </interface>
142 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500143 <method name="getEventLog">
144 <arg name="log" type="a(s)" direction="out"/>
145 </method>
Norman James362a80f2015-09-14 14:04:39 -0500146 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500147 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500148 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500149 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500150 </signal>
151 </interface>
152 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500153 <method name="update">
154 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500155 </method>
Norman James95b84c42015-10-22 07:12:20 -0500156 <method name="error">
157 <arg name="message" type="s" direction="in"/>
158 </method>
159 <method name="done"/>
160
Norman Jamesf066e872015-10-07 15:29:51 -0500161 <method name="updateViaTftp">
162 <arg name="url" type="s" direction="in"/>
163 <arg name="filename" type="s" direction="in"/>
164 </method>
Norman James362a80f2015-09-14 14:04:39 -0500165 <method name="init"/>
166 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500167 <signal name="Download">
168 <arg name="url" type="s"/>
169 <arg name="filename" type="s"/>
170 </signal>
Norman James18998182015-10-11 21:54:53 -0500171 <property name="filename" type="s" access="read"/>
172 <property name="flasher_path" type="s" access="read"/>
173 <property name="flasher_name" type="s" access="read"/>
174 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500175 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500176 </interface>
177 <interface name="org.openbmc.FlashControl">
178 <method name="flash">
179 <arg name="type" type="s" direction="in"/>
180 <arg name="filename" type="s" direction="in"/>
181 </method>
182 <signal name="Done">
183 <arg name="filename" type="s"/>
184 </signal>
185 <signal name="Error">
186 <arg name="filename" type="s"/>
187 </signal>
188 <signal name="Progress">
189 <arg name="filename" type="s"/>
190 <arg name="progress" type="y"/>
191 </signal>
192 <property name="filename" type="s" access="read"/>
193 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500194 </interface>
195 <interface name="org.openbmc.Button">
196 <method name="isOn">
197 <arg name="state" type="b" direction="out"/>
198 </method>
Norman James493996c2015-10-31 17:27:13 -0500199 <method name="simPress"/>
200 <method name="simLongPress"/>
Norman James362a80f2015-09-14 14:04:39 -0500201
202 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500203 <signal name="Released"/>
204 <signal name="Pressed"/>
205 <signal name="PressedLong"/>
206
207 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500208 </interface>
209 <interface name="org.openbmc.Led">
210 <method name="setOn"/>
211 <method name="setOff"/>
212 <method name="setBlinkSlow"/>
213 <method name="setBlinkFast"/>
214
215 <property name="color" type="i" access="read"/>
216 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500217 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800218 </interface>
219 <interface name="org.openbmc.HostIpmi">
220 <signal name="ReceivedMessage">
221 <arg type="y" name="seq" />
222 <arg type="y" name="netfn" />
223 <arg type="y" name="cmd" />
224 <arg type="ay" name="data" />
225 </signal>
226 <method name="sendMessage">
227 <arg direction="in" type="y" name="seq" />
228 <arg direction="in" type="y" name="netfn" />
229 <arg direction="in" type="y" name="cmd" />
230 <arg direction="in" type="ay" name="data" />
231 <arg direction="out" type="x" />
232 </method>
Norman James362a80f2015-09-14 14:04:39 -0500233 </interface>
234</node>