blob: f8c726c538dac2310606ffca4e1c8acd3834085a [file] [log] [blame]
Norman James362a80f2015-09-14 14:04:39 -05001<node>
Norman James5236a8f2015-11-05 20:39:31 -06002 <interface name="org.openbmc.Hwmon">
3 <property name="poll_interval" type="i" access="read"/>
4 <property name="sysfs_path" type="s" access="read"/>
Norman James74828452015-11-17 13:10:34 -06005 <property name="scale" type="i" access="read"/>
Norman James5236a8f2015-11-05 20:39:31 -06006 </interface>
Norman James362a80f2015-09-14 14:04:39 -05007 <interface name="org.openbmc.Fan">
8 <method name="setCoolingZone">
9 <arg name="cooling_zone" type="i" direction="in"/>
10 </method>
11 <method name="getSpeed">
12 <arg name="speed" type="i" direction="out"/>
Andrew Geissler5987cac2018-02-05 13:56:52 -080013 </method>
Norman James362a80f2015-09-14 14:04:39 -050014 <method name="setSpeed">
15 <arg name="speed" type="i" direction="in"/>
16 </method>
17 <property name="speed" type="i" access="readwrite"/>
18 <property name="cooling_zone" type="i" access="readwrite"/>
19 <property name="pwm_num" type="i" access="readwrite"/>
20 <signal name="SpeedChanged">
21 <arg name="speed" type="i"/>
22 </signal>
23 <signal name="TachError"/>
24 </interface>
25 <interface name="org.openbmc.SensorValue">
26 <method name="init"/>
27 <method name="getValue">
28 <arg name="value" type="v" direction="out"/>
29 </method>
Norman James19e45912015-10-04 20:19:41 -050030 <method name="setValue">
31 <arg name="value" type="v" direction="in"/>
32 </method>
Norman James362a80f2015-09-14 14:04:39 -050033
34 <property name="value" type="v" access="read"/>
35 <property name="units" type="s" access="read"/>
36 <property name="poll_interval" type="i" access="readwrite"/>
37 <property name="heatbeat" type="i" access="read"/>
38 <property name="settable" type="b" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -050039
40 <signal name="Changed">
41 <arg name="value" type="v"/>
42 <arg name="units" type="s"/>
43 </signal>
Norman James32e74e22015-09-15 21:28:06 -050044 <signal name="Error"/>
Norman James362a80f2015-09-14 14:04:39 -050045 <signal name="Heartbeat">
46 <arg name="bus_name" type="s"/>
47 </signal>
48 </interface>
49 <interface name="org.openbmc.SensorThreshold">
50 <method name="getState">
51 <arg name="state" type="y" direction="out"/>
52 </method>
53
54 <property name="lower_critical" type="v" access="readwrite"/>
55 <property name="lower_warning" type="v" access="readwrite"/>
56 <property name="upper_warning" type="v" access="readwrite"/>
57 <property name="upper_critical" type="v" access="readwrite"/>
58 <property name="state" type="y" access="read"/>
59
60 <signal name="Warning"/>
61 <signal name="Critical"/>
62 <signal name="Normal"/>
63 </interface>
64 <interface name="org.openbmc.SensorI2c">
65 <property name="dev_path" type="s" access="readwrite"/>
66 <property name="address" type="s" access="readwrite"/>
67 </interface>
68 <interface name="org.openbmc.SensorMatch">
69 <property name="match_value" type="v" access="read"/>
70 <property name="state" type="y" access="read"/>
71 <signal name="SensorMatch">
72 <arg name="state" type="y"/>
73 </signal>
74 </interface>
75 <interface name="org.openbmc.Process">
76 <method name="stop"/>
77 </interface>
Norman James18998182015-10-11 21:54:53 -050078 <interface name="org.openbmc.SharedResource">
79 <method name="lock">
80 <arg name="name" type="s" direction="in"/>
81 </method>
82 <method name="unlock"/>
83 <method name="isLocked">
84 <arg name="lock" type="b" direction="out"/>
85 <arg name="name" type="s" direction="out"/>
86 </method>
87 <property name="lock" type="b" access="read"/>
88 <property name="name" type="s" access="read"/>
89 </interface>
90
Norman James362a80f2015-09-14 14:04:39 -050091 <interface name="org.openbmc.Control">
92 <method name="init"/>
93 <property name="poll_interval" type="i" access="readwrite"/>
94 <property name="heatbeat" type="i" access="read"/>
95 <signal name="Heartbeat">
96 <arg name="bus_name" type="s"/>
Andrew Geissler5987cac2018-02-05 13:56:52 -080097 </signal>
Norman Jamesa3e47c42015-10-18 14:43:10 -050098 <signal name="Started"/>
Norman James362a80f2015-09-14 14:04:39 -050099 </interface>
100 <interface name="org.openbmc.control.Bmc">
Nan Li44dd5a62016-08-24 17:13:06 +0800101 <method name="coldReset"/>
Williamf784d752016-01-19 12:28:49 +0800102 <method name="warmReset"/>
Norman James362a80f2015-09-14 14:04:39 -0500103 </interface>
104 <interface name="org.openbmc.control.Host">
105 <method name="boot"/>
106 <method name="shutdown"/>
107 <method name="reboot"/>
Norman James493996c2015-10-31 17:27:13 -0500108 <property name="debug_mode" type="i" access="readwrite"/>
109 <property name="flash_side" type="s" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500110 <signal name="Booted"/>
111 </interface>
112 <interface name="org.openbmc.control.Power">
113 <method name="setPowerState">
114 <arg name="state" type="i" direction="in"/>
115 </method>
116 <method name="getPowerState">
117 <arg name="state" type="i" direction="out"/>
118 </method>
119 <signal name="PowerGood">
120 </signal>
121 <signal name="PowerLost">
122 </signal>
123 <property name="pgood" type="i" access="read"/>
124 <property name="state" type="i" access="read"/>
Norman James32e74e22015-09-15 21:28:06 -0500125 <property name="pgood_timeout" type="i" access="readwrite"/>
Norman James362a80f2015-09-14 14:04:39 -0500126 </interface>
Adriana Kobylak60c15862016-06-16 09:06:32 -0500127 <interface name="org.openbmc.control.Checkstop">
128 </interface>
Norman James362a80f2015-09-14 14:04:39 -0500129 <interface name="org.openbmc.Watchdog">
130 <method name="start"/>
131 <method name="poke"/>
132 <method name="stop"/>
Norman James47750bc2015-10-20 09:46:10 -0500133 <method name="set">
Adriana Kobylak2cb27752015-10-19 16:23:14 -0500134 <arg direction="in" type="i" name="interval" />
135 </method>
Norman James362a80f2015-09-14 14:04:39 -0500136 <property name="watchdog" type="i" access="readwrite"/>
137 <property name="poll_interval" type="i" access="readwrite"/>
138 <signal name="WatchdogError"/>
139 </interface>
140 <interface name="org.openbmc.EventLog">
Norman James2d1ee892015-09-16 23:13:45 -0500141 <method name="getEventLog">
142 <arg name="log" type="a(s)" direction="out"/>
143 </method>
Norman James362a80f2015-09-14 14:04:39 -0500144 <signal name="EventLog">
Norman James8abb50c2015-09-16 10:58:16 -0500145 <arg name="priority" type="i"/>
Norman James32e74e22015-09-15 21:28:06 -0500146 <arg name="message" type="s"/>
Norman James88872672015-09-21 16:51:35 -0500147 <arg name="rc" type="i"/>
Norman James362a80f2015-09-14 14:04:39 -0500148 </signal>
Andrew Geissler5987cac2018-02-05 13:56:52 -0800149 </interface>
Norman James362a80f2015-09-14 14:04:39 -0500150 <interface name="org.openbmc.Flash">
Norman James8c6d8382015-10-06 07:47:16 -0500151 <method name="update">
152 <arg name="filename" type="s" direction="in"/>
Norman James362a80f2015-09-14 14:04:39 -0500153 </method>
Norman James95b84c42015-10-22 07:12:20 -0500154 <method name="error">
155 <arg name="message" type="s" direction="in"/>
156 </method>
157 <method name="done"/>
158
Norman Jamesf066e872015-10-07 15:29:51 -0500159 <method name="updateViaTftp">
160 <arg name="url" type="s" direction="in"/>
161 <arg name="filename" type="s" direction="in"/>
162 </method>
Norman James362a80f2015-09-14 14:04:39 -0500163 <method name="init"/>
164 <signal name="Updated"/>
Norman Jamesf066e872015-10-07 15:29:51 -0500165 <signal name="Download">
166 <arg name="url" type="s"/>
167 <arg name="filename" type="s"/>
168 </signal>
Norman James18998182015-10-11 21:54:53 -0500169 <property name="filename" type="s" access="read"/>
170 <property name="flasher_path" type="s" access="read"/>
171 <property name="flasher_name" type="s" access="read"/>
172 <property name="flasher_instance" type="s" access="read"/>
Norman James95b84c42015-10-22 07:12:20 -0500173 <property name="status" type="s" access="read"/>
Norman James18998182015-10-11 21:54:53 -0500174 </interface>
175 <interface name="org.openbmc.FlashControl">
176 <method name="flash">
177 <arg name="type" type="s" direction="in"/>
178 <arg name="filename" type="s" direction="in"/>
179 </method>
180 <signal name="Done">
181 <arg name="filename" type="s"/>
182 </signal>
183 <signal name="Error">
184 <arg name="filename" type="s"/>
185 </signal>
186 <signal name="Progress">
187 <arg name="filename" type="s"/>
188 <arg name="progress" type="y"/>
189 </signal>
190 <property name="filename" type="s" access="read"/>
191 <property name="type" type="s" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500192 </interface>
193 <interface name="org.openbmc.Button">
194 <method name="isOn">
195 <arg name="state" type="b" direction="out"/>
196 </method>
Norman James493996c2015-10-31 17:27:13 -0500197 <method name="simPress"/>
198 <method name="simLongPress"/>
Andrew Geissler5987cac2018-02-05 13:56:52 -0800199
Norman James362a80f2015-09-14 14:04:39 -0500200 <property name="state" type="b" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500201 <signal name="Released"/>
202 <signal name="Pressed"/>
203 <signal name="PressedLong"/>
204
205 <property name="timer" type="t" access="read"/>
Norman James362a80f2015-09-14 14:04:39 -0500206 </interface>
207 <interface name="org.openbmc.Led">
208 <method name="setOn"/>
209 <method name="setOff"/>
210 <method name="setBlinkSlow"/>
211 <method name="setBlinkFast"/>
Andrew Geissler5987cac2018-02-05 13:56:52 -0800212
Norman James362a80f2015-09-14 14:04:39 -0500213 <property name="color" type="i" access="read"/>
214 <property name="function" type="s" access="read"/>
Norman James493996c2015-10-31 17:27:13 -0500215 <property name="state" type="s" access="read"/>
Jeremy Kerr0ffd4f82015-09-14 14:00:57 +0800216 </interface>
217 <interface name="org.openbmc.HostIpmi">
218 <signal name="ReceivedMessage">
219 <arg type="y" name="seq" />
220 <arg type="y" name="netfn" />
221 <arg type="y" name="cmd" />
222 <arg type="ay" name="data" />
223 </signal>
224 <method name="sendMessage">
225 <arg direction="in" type="y" name="seq" />
226 <arg direction="in" type="y" name="netfn" />
227 <arg direction="in" type="y" name="cmd" />
228 <arg direction="in" type="ay" name="data" />
229 <arg direction="out" type="x" />
230 </method>
Norman James362a80f2015-09-14 14:04:39 -0500231 </interface>
Andrew Geissler5987cac2018-02-05 13:56:52 -0800232</node>