blob: 2e0103b2db1952c6846ede1b67f696e0fac9f2b0 [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 James362a80f2015-09-14 14:04:39 -05008 <interface name="org.openbmc.Fan">
9 <method name="setCoolingZone">
10 <arg name="cooling_zone" type="i" direction="in"/>
11 </method>
12 <method name="getSpeed">
13 <arg name="speed" type="i" direction="out"/>
14 </method>
15 <method name="setSpeed">
16 <arg name="speed" type="i" direction="in"/>
17 </method>
18 <property name="speed" type="i" access="readwrite"/>
19 <property name="cooling_zone" type="i" access="readwrite"/>
20 <property name="pwm_num" type="i" access="readwrite"/>
21 <signal name="SpeedChanged">
22 <arg name="speed" type="i"/>
23 </signal>
24 <signal name="TachError"/>
25 </interface>
26 <interface name="org.openbmc.SensorValue">
27 <method name="init"/>
28 <method name="getValue">
29 <arg name="value" type="v" direction="out"/>
30 </method>
Norman James19e45912015-10-04 20:19:41 -050031 <method name="setValue">
32 <arg name="value" type="v" direction="in"/>
33 </method>
Norman James362a80f2015-09-14 14:04:39 -050034
35 <property name="value" type="v" access="read"/>
36 <property name="units" type="s" access="read"/>
37 <property name="poll_interval" type="i" access="readwrite"/>
38 <property name="heatbeat" type="i" access="read"/>
39 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050040
41 <signal name="Changed">
42 <arg name="value" type="v"/>
43 <arg name="units" type="s"/>
44 </signal>
Norman James32e74e22015-09-15 21:28:06 -050045 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050046 <signal name="Heartbeat">
47 <arg name="bus_name" type="s"/>
48 </signal>
49 </interface>
50 <interface name="org.openbmc.SensorThreshold">
51 <method name="getState">
52 <arg name="state" type="y" direction="out"/>
53 </method>
54
55 <property name="lower_critical" type="v" access="readwrite"/>
56 <property name="lower_warning" type="v" access="readwrite"/>
57 <property name="upper_warning" type="v" access="readwrite"/>
58 <property name="upper_critical" type="v" access="readwrite"/>
59 <property name="state" type="y" access="read"/>
60
61 <signal name="Warning"/>
62 <signal name="Critical"/>
63 <signal name="Normal"/>
64 </interface>
65 <interface name="org.openbmc.SensorI2c">
66 <property name="dev_path" type="s" access="readwrite"/>
67 <property name="address" type="s" access="readwrite"/>
68 </interface>
69 <interface name="org.openbmc.SensorMatch">
70 <property name="match_value" type="v" access="read"/>
71 <property name="state" type="y" access="read"/>
72 <signal name="SensorMatch">
73 <arg name="state" type="y"/>
74 </signal>
75 </interface>
76 <interface name="org.openbmc.Process">
77 <method name="stop"/>
78 </interface>
Norman James18998182015-10-11 21:54:53 -050079 <interface name="org.openbmc.SharedResource">
80 <method name="lock">
81 <arg name="name" type="s" direction="in"/>
82 </method>
83 <method name="unlock"/>
84 <method name="isLocked">
85 <arg name="lock" type="b" direction="out"/>
86 <arg name="name" type="s" direction="out"/>
87 </method>
88 <property name="lock" type="b" access="read"/>
89 <property name="name" type="s" access="read"/>
90 </interface>
91
Norman James362a80f2015-09-14 14:04:39 -050092 <interface name="org.openbmc.Control">
93 <method name="init"/>
94 <property name="poll_interval" type="i" access="readwrite"/>
95 <property name="heatbeat" type="i" access="read"/>
96 <signal name="Heartbeat">
97 <arg name="bus_name" type="s"/>
98 </signal>
99 <signal name="GotoSystemState">
100 <arg name="state_name" type="s"/>
101 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -0500102 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -0500103 </interface>
104 <interface name="org.openbmc.control.Bmc">
105 <method name="place_holder"/>
106 </interface>
107 <interface name="org.openbmc.control.Host">
108 <method name="boot"/>
109 <method name="shutdown"/>
110 <method name="reboot"/>
Norman James493996c2015-10-31 17:27:13 -0500111 <property name="debug_mode" type="i" access="readwrite"/>
112 <property name="flash_side" type="s" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500113 <signal name="Booted"/>
114 </interface>
115 <interface name="org.openbmc.control.Power">
116 <method name="setPowerState">
117 <arg name="state" type="i" direction="in"/>
118 </method>
119 <method name="getPowerState">
120 <arg name="state" type="i" direction="out"/>
121 </method>
122 <signal name="PowerGood">
123 </signal>
124 <signal name="PowerLost">
125 </signal>
126 <property name="pgood" type="i" access="read"/>
127 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500128 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500129 </interface>
130 <interface name="org.openbmc.Watchdog">
131 <method name="start"/>
132 <method name="poke"/>
133 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500134 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500135 <arg direction="in" type="i" name="interval" />
136 </method>
Norman James362a80f2015-09-14 14:04:39 -0500137 <property name="watchdog" type="i" access="readwrite"/>
138 <property name="poll_interval" type="i" access="readwrite"/>
139 <signal name="WatchdogError"/>
140 </interface>
141 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500142 <method name="getEventLog">
143 <arg name="log" type="a(s)" direction="out"/>
144 </method>
Norman James362a80f2015-09-14 14:04:39 -0500145 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500146 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500147 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500148 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500149 </signal>
150 </interface>
151 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500152 <method name="update">
153 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500154 </method>
Norman James95b84c42015-10-22 07:12:20 -0500155 <method name="error">
156 <arg name="message" type="s" direction="in"/>
157 </method>
158 <method name="done"/>
159
Norman Jamesf066e872015-10-07 15:29:51 -0500160 <method name="updateViaTftp">
161 <arg name="url" type="s" direction="in"/>
162 <arg name="filename" type="s" direction="in"/>
163 </method>
Norman James362a80f2015-09-14 14:04:39 -0500164 <method name="init"/>
165 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500166 <signal name="Download">
167 <arg name="url" type="s"/>
168 <arg name="filename" type="s"/>
169 </signal>
Norman James18998182015-10-11 21:54:53 -0500170 <property name="filename" type="s" access="read"/>
171 <property name="flasher_path" type="s" access="read"/>
172 <property name="flasher_name" type="s" access="read"/>
173 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500174 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500175 </interface>
176 <interface name="org.openbmc.FlashControl">
177 <method name="flash">
178 <arg name="type" type="s" direction="in"/>
179 <arg name="filename" type="s" direction="in"/>
180 </method>
181 <signal name="Done">
182 <arg name="filename" type="s"/>
183 </signal>
184 <signal name="Error">
185 <arg name="filename" type="s"/>
186 </signal>
187 <signal name="Progress">
188 <arg name="filename" type="s"/>
189 <arg name="progress" type="y"/>
190 </signal>
191 <property name="filename" type="s" access="read"/>
192 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500193 </interface>
194 <interface name="org.openbmc.Button">
195 <method name="isOn">
196 <arg name="state" type="b" direction="out"/>
197 </method>
Norman James493996c2015-10-31 17:27:13 -0500198 <method name="simPress"/>
199 <method name="simLongPress"/>
Norman James362a80f2015-09-14 14:04:39 -0500200
201 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500202 <signal name="Released"/>
203 <signal name="Pressed"/>
204 <signal name="PressedLong"/>
205
206 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500207 </interface>
208 <interface name="org.openbmc.Led">
209 <method name="setOn"/>
210 <method name="setOff"/>
211 <method name="setBlinkSlow"/>
212 <method name="setBlinkFast"/>
213
214 <property name="color" type="i" access="read"/>
215 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500216 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800217 </interface>
218 <interface name="org.openbmc.HostIpmi">
219 <signal name="ReceivedMessage">
220 <arg type="y" name="seq" />
221 <arg type="y" name="netfn" />
222 <arg type="y" name="cmd" />
223 <arg type="ay" name="data" />
224 </signal>
225 <method name="sendMessage">
226 <arg direction="in" type="y" name="seq" />
227 <arg direction="in" type="y" name="netfn" />
228 <arg direction="in" type="y" name="cmd" />
229 <arg direction="in" type="ay" name="data" />
230 <arg direction="out" type="x" />
231 </method>
Norman James362a80f2015-09-14 14:04:39 -0500232 </interface>
233</node>