blob: e86a484418a1a2f2e9c595f56a343c5bd49ba4d5 [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"/>
11 </interface>
Norman James362a80f2015-09-14 14:04:39 -050012 <interface name="org.openbmc.Fan">
13 <method name="setCoolingZone">
14 <arg name="cooling_zone" type="i" direction="in"/>
15 </method>
16 <method name="getSpeed">
17 <arg name="speed" type="i" direction="out"/>
18 </method>
19 <method name="setSpeed">
20 <arg name="speed" type="i" direction="in"/>
21 </method>
22 <property name="speed" type="i" access="readwrite"/>
23 <property name="cooling_zone" type="i" access="readwrite"/>
24 <property name="pwm_num" type="i" access="readwrite"/>
25 <signal name="SpeedChanged">
26 <arg name="speed" type="i"/>
27 </signal>
28 <signal name="TachError"/>
29 </interface>
30 <interface name="org.openbmc.SensorValue">
31 <method name="init"/>
32 <method name="getValue">
33 <arg name="value" type="v" direction="out"/>
34 </method>
Norman James19e45912015-10-04 20:19:41 -050035 <method name="setValue">
36 <arg name="value" type="v" direction="in"/>
37 </method>
Norman James362a80f2015-09-14 14:04:39 -050038
39 <property name="value" type="v" access="read"/>
40 <property name="units" type="s" access="read"/>
41 <property name="poll_interval" type="i" access="readwrite"/>
42 <property name="heatbeat" type="i" access="read"/>
43 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050044
45 <signal name="Changed">
46 <arg name="value" type="v"/>
47 <arg name="units" type="s"/>
48 </signal>
Norman James32e74e22015-09-15 21:28:06 -050049 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050050 <signal name="Heartbeat">
51 <arg name="bus_name" type="s"/>
52 </signal>
53 </interface>
54 <interface name="org.openbmc.SensorThreshold">
55 <method name="getState">
56 <arg name="state" type="y" direction="out"/>
57 </method>
58
59 <property name="lower_critical" type="v" access="readwrite"/>
60 <property name="lower_warning" type="v" access="readwrite"/>
61 <property name="upper_warning" type="v" access="readwrite"/>
62 <property name="upper_critical" type="v" access="readwrite"/>
63 <property name="state" type="y" access="read"/>
64
65 <signal name="Warning"/>
66 <signal name="Critical"/>
67 <signal name="Normal"/>
68 </interface>
69 <interface name="org.openbmc.SensorI2c">
70 <property name="dev_path" type="s" access="readwrite"/>
71 <property name="address" type="s" access="readwrite"/>
72 </interface>
73 <interface name="org.openbmc.SensorMatch">
74 <property name="match_value" type="v" access="read"/>
75 <property name="state" type="y" access="read"/>
76 <signal name="SensorMatch">
77 <arg name="state" type="y"/>
78 </signal>
79 </interface>
80 <interface name="org.openbmc.Process">
81 <method name="stop"/>
82 </interface>
Norman James18998182015-10-11 21:54:53 -050083 <interface name="org.openbmc.SharedResource">
84 <method name="lock">
85 <arg name="name" type="s" direction="in"/>
86 </method>
87 <method name="unlock"/>
88 <method name="isLocked">
89 <arg name="lock" type="b" direction="out"/>
90 <arg name="name" type="s" direction="out"/>
91 </method>
92 <property name="lock" type="b" access="read"/>
93 <property name="name" type="s" access="read"/>
94 </interface>
95
Norman James362a80f2015-09-14 14:04:39 -050096 <interface name="org.openbmc.Control">
97 <method name="init"/>
98 <property name="poll_interval" type="i" access="readwrite"/>
99 <property name="heatbeat" type="i" access="read"/>
100 <signal name="Heartbeat">
101 <arg name="bus_name" type="s"/>
102 </signal>
103 <signal name="GotoSystemState">
104 <arg name="state_name" type="s"/>
105 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -0500106 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -0500107 </interface>
108 <interface name="org.openbmc.control.Bmc">
109 <method name="place_holder"/>
110 </interface>
111 <interface name="org.openbmc.control.Host">
112 <method name="boot"/>
113 <method name="shutdown"/>
114 <method name="reboot"/>
Norman James493996c2015-10-31 17:27:13 -0500115 <property name="debug_mode" type="i" access="readwrite"/>
116 <property name="flash_side" type="s" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500117 <signal name="Booted"/>
118 </interface>
119 <interface name="org.openbmc.control.Power">
120 <method name="setPowerState">
121 <arg name="state" type="i" direction="in"/>
122 </method>
123 <method name="getPowerState">
124 <arg name="state" type="i" direction="out"/>
125 </method>
126 <signal name="PowerGood">
127 </signal>
128 <signal name="PowerLost">
129 </signal>
130 <property name="pgood" type="i" access="read"/>
131 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500132 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500133 </interface>
134 <interface name="org.openbmc.Watchdog">
135 <method name="start"/>
136 <method name="poke"/>
137 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500138 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500139 <arg direction="in" type="i" name="interval" />
140 </method>
Norman James362a80f2015-09-14 14:04:39 -0500141 <property name="watchdog" type="i" access="readwrite"/>
142 <property name="poll_interval" type="i" access="readwrite"/>
143 <signal name="WatchdogError"/>
144 </interface>
145 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500146 <method name="getEventLog">
147 <arg name="log" type="a(s)" direction="out"/>
148 </method>
Norman James362a80f2015-09-14 14:04:39 -0500149 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500150 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500151 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500152 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500153 </signal>
154 </interface>
155 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500156 <method name="update">
157 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500158 </method>
Norman James95b84c42015-10-22 07:12:20 -0500159 <method name="error">
160 <arg name="message" type="s" direction="in"/>
161 </method>
162 <method name="done"/>
163
Norman Jamesf066e872015-10-07 15:29:51 -0500164 <method name="updateViaTftp">
165 <arg name="url" type="s" direction="in"/>
166 <arg name="filename" type="s" direction="in"/>
167 </method>
Norman James362a80f2015-09-14 14:04:39 -0500168 <method name="init"/>
169 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500170 <signal name="Download">
171 <arg name="url" type="s"/>
172 <arg name="filename" type="s"/>
173 </signal>
Norman James18998182015-10-11 21:54:53 -0500174 <property name="filename" type="s" access="read"/>
175 <property name="flasher_path" type="s" access="read"/>
176 <property name="flasher_name" type="s" access="read"/>
177 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500178 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500179 </interface>
180 <interface name="org.openbmc.FlashControl">
181 <method name="flash">
182 <arg name="type" type="s" direction="in"/>
183 <arg name="filename" type="s" direction="in"/>
184 </method>
185 <signal name="Done">
186 <arg name="filename" type="s"/>
187 </signal>
188 <signal name="Error">
189 <arg name="filename" type="s"/>
190 </signal>
191 <signal name="Progress">
192 <arg name="filename" type="s"/>
193 <arg name="progress" type="y"/>
194 </signal>
195 <property name="filename" type="s" access="read"/>
196 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500197 </interface>
198 <interface name="org.openbmc.Button">
199 <method name="isOn">
200 <arg name="state" type="b" direction="out"/>
201 </method>
Norman James493996c2015-10-31 17:27:13 -0500202 <method name="simPress"/>
203 <method name="simLongPress"/>
Norman James362a80f2015-09-14 14:04:39 -0500204
205 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500206 <signal name="Released"/>
207 <signal name="Pressed"/>
208 <signal name="PressedLong"/>
209
210 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500211 </interface>
212 <interface name="org.openbmc.Led">
213 <method name="setOn"/>
214 <method name="setOff"/>
215 <method name="setBlinkSlow"/>
216 <method name="setBlinkFast"/>
217
218 <property name="color" type="i" access="read"/>
219 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500220 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800221 </interface>
222 <interface name="org.openbmc.HostIpmi">
223 <signal name="ReceivedMessage">
224 <arg type="y" name="seq" />
225 <arg type="y" name="netfn" />
226 <arg type="y" name="cmd" />
227 <arg type="ay" name="data" />
228 </signal>
229 <method name="sendMessage">
230 <arg direction="in" type="y" name="seq" />
231 <arg direction="in" type="y" name="netfn" />
232 <arg direction="in" type="y" name="cmd" />
233 <arg direction="in" type="ay" name="data" />
234 <arg direction="out" type="x" />
235 </method>
Norman James362a80f2015-09-14 14:04:39 -0500236 </interface>
237</node>