blob: ead899c5927712aba912143d07689fde93f8c6a7 [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>
135 <interface name="org.openbmc.Watchdog">
136 <method name="start"/>
137 <method name="poke"/>
138 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500139 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500140 <arg direction="in" type="i" name="interval" />
141 </method>
Norman James362a80f2015-09-14 14:04:39 -0500142 <property name="watchdog" type="i" access="readwrite"/>
143 <property name="poll_interval" type="i" access="readwrite"/>
144 <signal name="WatchdogError"/>
145 </interface>
146 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500147 <method name="getEventLog">
148 <arg name="log" type="a(s)" direction="out"/>
149 </method>
Norman James362a80f2015-09-14 14:04:39 -0500150 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500151 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500152 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500153 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500154 </signal>
155 </interface>
156 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500157 <method name="update">
158 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500159 </method>
Norman James95b84c42015-10-22 07:12:20 -0500160 <method name="error">
161 <arg name="message" type="s" direction="in"/>
162 </method>
163 <method name="done"/>
164
Norman Jamesf066e872015-10-07 15:29:51 -0500165 <method name="updateViaTftp">
166 <arg name="url" type="s" direction="in"/>
167 <arg name="filename" type="s" direction="in"/>
168 </method>
Norman James362a80f2015-09-14 14:04:39 -0500169 <method name="init"/>
170 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500171 <signal name="Download">
172 <arg name="url" type="s"/>
173 <arg name="filename" type="s"/>
174 </signal>
Norman James18998182015-10-11 21:54:53 -0500175 <property name="filename" type="s" access="read"/>
176 <property name="flasher_path" type="s" access="read"/>
177 <property name="flasher_name" type="s" access="read"/>
178 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500179 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500180 </interface>
181 <interface name="org.openbmc.FlashControl">
182 <method name="flash">
183 <arg name="type" type="s" direction="in"/>
184 <arg name="filename" type="s" direction="in"/>
185 </method>
186 <signal name="Done">
187 <arg name="filename" type="s"/>
188 </signal>
189 <signal name="Error">
190 <arg name="filename" type="s"/>
191 </signal>
192 <signal name="Progress">
193 <arg name="filename" type="s"/>
194 <arg name="progress" type="y"/>
195 </signal>
196 <property name="filename" type="s" access="read"/>
197 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500198 </interface>
199 <interface name="org.openbmc.Button">
200 <method name="isOn">
201 <arg name="state" type="b" direction="out"/>
202 </method>
Norman James493996c2015-10-31 17:27:13 -0500203 <method name="simPress"/>
204 <method name="simLongPress"/>
Norman James362a80f2015-09-14 14:04:39 -0500205
206 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500207 <signal name="Released"/>
208 <signal name="Pressed"/>
209 <signal name="PressedLong"/>
210
211 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500212 </interface>
213 <interface name="org.openbmc.Led">
214 <method name="setOn"/>
215 <method name="setOff"/>
216 <method name="setBlinkSlow"/>
217 <method name="setBlinkFast"/>
218
219 <property name="color" type="i" access="read"/>
220 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500221 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800222 </interface>
223 <interface name="org.openbmc.HostIpmi">
224 <signal name="ReceivedMessage">
225 <arg type="y" name="seq" />
226 <arg type="y" name="netfn" />
227 <arg type="y" name="cmd" />
228 <arg type="ay" name="data" />
229 </signal>
230 <method name="sendMessage">
231 <arg direction="in" type="y" name="seq" />
232 <arg direction="in" type="y" name="netfn" />
233 <arg direction="in" type="y" name="cmd" />
234 <arg direction="in" type="ay" name="data" />
235 <arg direction="out" type="x" />
236 </method>
Norman James362a80f2015-09-14 14:04:39 -0500237 </interface>
238</node>