blob: 2ba627b5081648cbc7d0ccff838c5709298ae622 [file] [log] [blame]
Norman James362a80f2015-09-14 14:04:39 -05001<node>
Norman James362a80f2015-09-14 14:04:39 -05002 <interface name="org.openbmc.Fan">
3 <method name="setCoolingZone">
4 <arg name="cooling_zone" type="i" direction="in"/>
5 </method>
6 <method name="getSpeed">
7 <arg name="speed" type="i" direction="out"/>
8 </method>
9 <method name="setSpeed">
10 <arg name="speed" type="i" direction="in"/>
11 </method>
12 <property name="speed" type="i" access="readwrite"/>
13 <property name="cooling_zone" type="i" access="readwrite"/>
14 <property name="pwm_num" type="i" access="readwrite"/>
15 <signal name="SpeedChanged">
16 <arg name="speed" type="i"/>
17 </signal>
18 <signal name="TachError"/>
19 </interface>
20 <interface name="org.openbmc.SensorValue">
21 <method name="init"/>
22 <method name="getValue">
23 <arg name="value" type="v" direction="out"/>
24 </method>
Norman James19e45912015-10-04 20:19:41 -050025 <method name="setValue">
26 <arg name="value" type="v" direction="in"/>
27 </method>
Norman James362a80f2015-09-14 14:04:39 -050028
29 <property name="value" type="v" access="read"/>
30 <property name="units" type="s" access="read"/>
31 <property name="poll_interval" type="i" access="readwrite"/>
32 <property name="heatbeat" type="i" access="read"/>
33 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050034
35 <signal name="Changed">
36 <arg name="value" type="v"/>
37 <arg name="units" type="s"/>
38 </signal>
Norman James32e74e22015-09-15 21:28:06 -050039 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050040 <signal name="Heartbeat">
41 <arg name="bus_name" type="s"/>
42 </signal>
43 </interface>
44 <interface name="org.openbmc.SensorThreshold">
45 <method name="getState">
46 <arg name="state" type="y" direction="out"/>
47 </method>
48
49 <property name="lower_critical" type="v" access="readwrite"/>
50 <property name="lower_warning" type="v" access="readwrite"/>
51 <property name="upper_warning" type="v" access="readwrite"/>
52 <property name="upper_critical" type="v" access="readwrite"/>
53 <property name="state" type="y" access="read"/>
54
55 <signal name="Warning"/>
56 <signal name="Critical"/>
57 <signal name="Normal"/>
58 </interface>
59 <interface name="org.openbmc.SensorI2c">
60 <property name="dev_path" type="s" access="readwrite"/>
61 <property name="address" type="s" access="readwrite"/>
62 </interface>
63 <interface name="org.openbmc.SensorMatch">
64 <property name="match_value" type="v" access="read"/>
65 <property name="state" type="y" access="read"/>
66 <signal name="SensorMatch">
67 <arg name="state" type="y"/>
68 </signal>
69 </interface>
70 <interface name="org.openbmc.Process">
71 <method name="stop"/>
72 </interface>
Norman James18998182015-10-11 21:54:53 -050073 <interface name="org.openbmc.SharedResource">
74 <method name="lock">
75 <arg name="name" type="s" direction="in"/>
76 </method>
77 <method name="unlock"/>
78 <method name="isLocked">
79 <arg name="lock" type="b" direction="out"/>
80 <arg name="name" type="s" direction="out"/>
81 </method>
82 <property name="lock" type="b" access="read"/>
83 <property name="name" type="s" access="read"/>
84 </interface>
85
Norman James362a80f2015-09-14 14:04:39 -050086 <interface name="org.openbmc.Control">
87 <method name="init"/>
88 <property name="poll_interval" type="i" access="readwrite"/>
89 <property name="heatbeat" type="i" access="read"/>
90 <signal name="Heartbeat">
91 <arg name="bus_name" type="s"/>
92 </signal>
93 <signal name="GotoSystemState">
94 <arg name="state_name" type="s"/>
95 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -050096 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -050097 </interface>
98 <interface name="org.openbmc.control.Bmc">
99 <method name="place_holder"/>
100 </interface>
101 <interface name="org.openbmc.control.Host">
102 <method name="boot"/>
103 <method name="shutdown"/>
104 <method name="reboot"/>
105 <signal name="Booted"/>
106 </interface>
107 <interface name="org.openbmc.control.Power">
108 <method name="setPowerState">
109 <arg name="state" type="i" direction="in"/>
110 </method>
111 <method name="getPowerState">
112 <arg name="state" type="i" direction="out"/>
113 </method>
114 <signal name="PowerGood">
115 </signal>
116 <signal name="PowerLost">
117 </signal>
118 <property name="pgood" type="i" access="read"/>
119 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500120 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500121 </interface>
122 <interface name="org.openbmc.Watchdog">
123 <method name="start"/>
124 <method name="poke"/>
125 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500126 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500127 <arg direction="in" type="i" name="interval" />
128 </method>
Norman James362a80f2015-09-14 14:04:39 -0500129 <property name="watchdog" type="i" access="readwrite"/>
130 <property name="poll_interval" type="i" access="readwrite"/>
131 <signal name="WatchdogError"/>
132 </interface>
133 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500134 <method name="getEventLog">
135 <arg name="log" type="a(s)" direction="out"/>
136 </method>
Norman James362a80f2015-09-14 14:04:39 -0500137 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500138 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500139 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500140 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500141 </signal>
142 </interface>
143 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500144 <method name="update">
145 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500146 </method>
Norman Jamesf066e872015-10-07 15:29:51 -0500147 <method name="updateViaTftp">
148 <arg name="url" type="s" direction="in"/>
149 <arg name="filename" type="s" direction="in"/>
150 </method>
Norman James362a80f2015-09-14 14:04:39 -0500151 <method name="init"/>
152 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500153 <signal name="Download">
154 <arg name="url" type="s"/>
155 <arg name="filename" type="s"/>
156 </signal>
Norman James18998182015-10-11 21:54:53 -0500157 <property name="filename" type="s" access="read"/>
158 <property name="flasher_path" type="s" access="read"/>
159 <property name="flasher_name" type="s" access="read"/>
160 <property name="flasher_instance" type="s" access="read"/>
161 </interface>
162 <interface name="org.openbmc.FlashControl">
163 <method name="flash">
164 <arg name="type" type="s" direction="in"/>
165 <arg name="filename" type="s" direction="in"/>
166 </method>
167 <signal name="Done">
168 <arg name="filename" type="s"/>
169 </signal>
170 <signal name="Error">
171 <arg name="filename" type="s"/>
172 </signal>
173 <signal name="Progress">
174 <arg name="filename" type="s"/>
175 <arg name="progress" type="y"/>
176 </signal>
177 <property name="filename" type="s" access="read"/>
178 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500179 </interface>
180 <interface name="org.openbmc.Button">
181 <method name="isOn">
182 <arg name="state" type="b" direction="out"/>
183 </method>
184 <method name="simButtonPress"/>
185 <method name="simButtonLongPress"/>
186
187 <property name="state" type="b" access="read"/>
188 <signal name="ButtonRelease"/>
189 <signal name="ButtonPressed"/>
190 <signal name="ButtonPressedLong"/>
191 </interface>
192 <interface name="org.openbmc.Led">
193 <method name="setOn"/>
194 <method name="setOff"/>
195 <method name="setBlinkSlow"/>
196 <method name="setBlinkFast"/>
197
198 <property name="color" type="i" access="read"/>
199 <property name="function" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800200 </interface>
201 <interface name="org.openbmc.HostIpmi">
202 <signal name="ReceivedMessage">
203 <arg type="y" name="seq" />
204 <arg type="y" name="netfn" />
205 <arg type="y" name="cmd" />
206 <arg type="ay" name="data" />
207 </signal>
208 <method name="sendMessage">
209 <arg direction="in" type="y" name="seq" />
210 <arg direction="in" type="y" name="netfn" />
211 <arg direction="in" type="y" name="cmd" />
212 <arg direction="in" type="ay" name="data" />
213 <arg direction="out" type="x" />
214 </method>
Norman James362a80f2015-09-14 14:04:39 -0500215 </interface>
216</node>