blob: d2962912fa9194c1268e9f81b4376ac0d8526c31 [file] [log] [blame]
Norman James362a80f2015-09-14 14:04:39 -05001<node>
Norman James493996c2015-10-31 17:27:13 -05002 <interface name="org.openbmc.Object.Mapper">
3 <signal name="ObjectAdded">
4 <arg name="object_path" type="s"/>
5 <arg name="interface_name" type="s"/>
6 </signal>
7 </interface>
Norman James5236a8f2015-11-05 20:39:31 -06008 <interface name="org.openbmc.Hwmon">
9 <property name="poll_interval" type="i" access="read"/>
10 <property name="sysfs_path" type="s" access="read"/>
Norman James74828452015-11-17 13:10:34 -060011 <property name="scale" type="i" access="read"/>
Norman James5236a8f2015-11-05 20:39:31 -060012 </interface>
Norman James362a80f2015-09-14 14:04:39 -050013 <interface name="org.openbmc.Fan">
14 <method name="setCoolingZone">
15 <arg name="cooling_zone" type="i" direction="in"/>
16 </method>
17 <method name="getSpeed">
18 <arg name="speed" type="i" direction="out"/>
19 </method>
20 <method name="setSpeed">
21 <arg name="speed" type="i" direction="in"/>
22 </method>
23 <property name="speed" type="i" access="readwrite"/>
24 <property name="cooling_zone" type="i" access="readwrite"/>
25 <property name="pwm_num" type="i" access="readwrite"/>
26 <signal name="SpeedChanged">
27 <arg name="speed" type="i"/>
28 </signal>
29 <signal name="TachError"/>
30 </interface>
31 <interface name="org.openbmc.SensorValue">
32 <method name="init"/>
33 <method name="getValue">
34 <arg name="value" type="v" direction="out"/>
35 </method>
Norman James19e45912015-10-04 20:19:41 -050036 <method name="setValue">
37 <arg name="value" type="v" direction="in"/>
38 </method>
Norman James362a80f2015-09-14 14:04:39 -050039
40 <property name="value" type="v" access="read"/>
41 <property name="units" type="s" access="read"/>
42 <property name="poll_interval" type="i" access="readwrite"/>
43 <property name="heatbeat" type="i" access="read"/>
44 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050045
46 <signal name="Changed">
47 <arg name="value" type="v"/>
48 <arg name="units" type="s"/>
49 </signal>
Norman James32e74e22015-09-15 21:28:06 -050050 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050051 <signal name="Heartbeat">
52 <arg name="bus_name" type="s"/>
53 </signal>
54 </interface>
55 <interface name="org.openbmc.SensorThreshold">
56 <method name="getState">
57 <arg name="state" type="y" direction="out"/>
58 </method>
59
60 <property name="lower_critical" type="v" access="readwrite"/>
61 <property name="lower_warning" type="v" access="readwrite"/>
62 <property name="upper_warning" type="v" access="readwrite"/>
63 <property name="upper_critical" type="v" access="readwrite"/>
64 <property name="state" type="y" access="read"/>
65
66 <signal name="Warning"/>
67 <signal name="Critical"/>
68 <signal name="Normal"/>
69 </interface>
70 <interface name="org.openbmc.SensorI2c">
71 <property name="dev_path" type="s" access="readwrite"/>
72 <property name="address" type="s" access="readwrite"/>
73 </interface>
74 <interface name="org.openbmc.SensorMatch">
75 <property name="match_value" type="v" access="read"/>
76 <property name="state" type="y" access="read"/>
77 <signal name="SensorMatch">
78 <arg name="state" type="y"/>
79 </signal>
80 </interface>
81 <interface name="org.openbmc.Process">
82 <method name="stop"/>
83 </interface>
Norman James18998182015-10-11 21:54:53 -050084 <interface name="org.openbmc.SharedResource">
85 <method name="lock">
86 <arg name="name" type="s" direction="in"/>
87 </method>
88 <method name="unlock"/>
89 <method name="isLocked">
90 <arg name="lock" type="b" direction="out"/>
91 <arg name="name" type="s" direction="out"/>
92 </method>
93 <property name="lock" type="b" access="read"/>
94 <property name="name" type="s" access="read"/>
95 </interface>
96
Norman James362a80f2015-09-14 14:04:39 -050097 <interface name="org.openbmc.Control">
98 <method name="init"/>
99 <property name="poll_interval" type="i" access="readwrite"/>
100 <property name="heatbeat" type="i" access="read"/>
101 <signal name="Heartbeat">
102 <arg name="bus_name" type="s"/>
103 </signal>
104 <signal name="GotoSystemState">
105 <arg name="state_name" type="s"/>
106 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -0500107 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -0500108 </interface>
109 <interface name="org.openbmc.control.Bmc">
Williamf784d752016-01-19 12:28:49 +0800110 <method name="warmReset"/>
Norman James362a80f2015-09-14 14:04:39 -0500111 </interface>
112 <interface name="org.openbmc.control.Host">
113 <method name="boot"/>
114 <method name="shutdown"/>
115 <method name="reboot"/>
Norman James493996c2015-10-31 17:27:13 -0500116 <property name="debug_mode" type="i" access="readwrite"/>
117 <property name="flash_side" type="s" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500118 <signal name="Booted"/>
119 </interface>
120 <interface name="org.openbmc.control.Power">
121 <method name="setPowerState">
122 <arg name="state" type="i" direction="in"/>
123 </method>
124 <method name="getPowerState">
125 <arg name="state" type="i" direction="out"/>
126 </method>
127 <signal name="PowerGood">
128 </signal>
129 <signal name="PowerLost">
130 </signal>
131 <property name="pgood" type="i" access="read"/>
132 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500133 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500134 </interface>
Adriana Kobylak60c15862016-06-16 09:06:32 -0500135 <interface name="org.openbmc.control.Checkstop">
136 </interface>
Norman James362a80f2015-09-14 14:04:39 -0500137 <interface name="org.openbmc.Watchdog">
138 <method name="start"/>
139 <method name="poke"/>
140 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500141 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500142 <arg direction="in" type="i" name="interval" />
143 </method>
Norman James362a80f2015-09-14 14:04:39 -0500144 <property name="watchdog" type="i" access="readwrite"/>
145 <property name="poll_interval" type="i" access="readwrite"/>
146 <signal name="WatchdogError"/>
147 </interface>
148 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500149 <method name="getEventLog">
150 <arg name="log" type="a(s)" direction="out"/>
151 </method>
Norman James362a80f2015-09-14 14:04:39 -0500152 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500153 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500154 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500155 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500156 </signal>
157 </interface>
158 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500159 <method name="update">
160 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500161 </method>
Norman James95b84c42015-10-22 07:12:20 -0500162 <method name="error">
163 <arg name="message" type="s" direction="in"/>
164 </method>
165 <method name="done"/>
166
Norman Jamesf066e872015-10-07 15:29:51 -0500167 <method name="updateViaTftp">
168 <arg name="url" type="s" direction="in"/>
169 <arg name="filename" type="s" direction="in"/>
170 </method>
Norman James362a80f2015-09-14 14:04:39 -0500171 <method name="init"/>
172 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500173 <signal name="Download">
174 <arg name="url" type="s"/>
175 <arg name="filename" type="s"/>
176 </signal>
Norman James18998182015-10-11 21:54:53 -0500177 <property name="filename" type="s" access="read"/>
178 <property name="flasher_path" type="s" access="read"/>
179 <property name="flasher_name" type="s" access="read"/>
180 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500181 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500182 </interface>
183 <interface name="org.openbmc.FlashControl">
184 <method name="flash">
185 <arg name="type" type="s" direction="in"/>
186 <arg name="filename" type="s" direction="in"/>
187 </method>
188 <signal name="Done">
189 <arg name="filename" type="s"/>
190 </signal>
191 <signal name="Error">
192 <arg name="filename" type="s"/>
193 </signal>
194 <signal name="Progress">
195 <arg name="filename" type="s"/>
196 <arg name="progress" type="y"/>
197 </signal>
198 <property name="filename" type="s" access="read"/>
199 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500200 </interface>
201 <interface name="org.openbmc.Button">
202 <method name="isOn">
203 <arg name="state" type="b" direction="out"/>
204 </method>
Norman James493996c2015-10-31 17:27:13 -0500205 <method name="simPress"/>
206 <method name="simLongPress"/>
Norman James362a80f2015-09-14 14:04:39 -0500207
208 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500209 <signal name="Released"/>
210 <signal name="Pressed"/>
211 <signal name="PressedLong"/>
212
213 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500214 </interface>
215 <interface name="org.openbmc.Led">
216 <method name="setOn"/>
217 <method name="setOff"/>
218 <method name="setBlinkSlow"/>
219 <method name="setBlinkFast"/>
220
221 <property name="color" type="i" access="read"/>
222 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500223 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800224 </interface>
225 <interface name="org.openbmc.HostIpmi">
226 <signal name="ReceivedMessage">
227 <arg type="y" name="seq" />
228 <arg type="y" name="netfn" />
229 <arg type="y" name="cmd" />
230 <arg type="ay" name="data" />
231 </signal>
232 <method name="sendMessage">
233 <arg direction="in" type="y" name="seq" />
234 <arg direction="in" type="y" name="netfn" />
235 <arg direction="in" type="y" name="cmd" />
236 <arg direction="in" type="ay" name="data" />
237 <arg direction="out" type="x" />
238 </method>
Norman James362a80f2015-09-14 14:04:39 -0500239 </interface>
240</node>