blob: b894fe41c48881a139061f1eb0ad3619083bbc64 [file] [log] [blame]
Norman Jamesce46e3e2015-08-30 22:25:55 -05001#! /usr/bin/python
Norman James9e6acf92015-09-08 07:00:04 -05002
Norman James88872672015-09-21 16:51:35 -05003HOME_PATH = './'
Norman James2943cc62015-10-28 18:59:53 -05004CACHE_PATH = '/var/cache/obmc/'
Norman James3e5c8592015-10-22 14:33:01 -05005FLASH_DOWNLOAD_PATH = "/tmp"
Norman Jamesb38ea5a2015-10-28 12:44:56 -05006GPIO_BASE = 320
Norman James2943cc62015-10-28 18:59:53 -05007SYSTEM_NAME = "Barreleye"
Norman James3e5c8592015-10-22 14:33:01 -05008
9
10## System states
11## state can change to next state in 2 ways:
12## - a process emits a GotoSystemState signal with state name to goto
13## - objects specified in EXIT_STATE_DEPEND have started
Norman James362a80f2015-09-14 14:04:39 -050014SYSTEM_STATES = [
Norman Jamesa9966b32015-10-28 06:55:58 -050015 'BASE_APPS',
Norman James3e5c8592015-10-22 14:33:01 -050016 'BMC_INIT',
17 'BMC_STARTING',
18 'BMC_READY',
19 'HOST_POWERING_ON',
20 'HOST_POWERED_ON',
21 'HOST_BOOTING',
Norman James2656f332015-10-26 06:42:41 -050022 'HOST_BOOTED',
Norman James3e5c8592015-10-22 14:33:01 -050023 'HOST_POWERED_DOWN',
Norman James362a80f2015-09-14 14:04:39 -050024]
25
Norman James3e5c8592015-10-22 14:33:01 -050026EXIT_STATE_DEPEND = {
Norman Jamesa9966b32015-10-28 06:55:58 -050027 'BASE_APPS' : {
Norman James76abea32015-10-29 06:17:54 -050028 '/org/openbmc/sensors': 0,
Norman Jamesa9966b32015-10-28 06:55:58 -050029 },
Norman James3e5c8592015-10-22 14:33:01 -050030 'BMC_STARTING' : {
31 '/org/openbmc/control/chassis0': 0,
32 '/org/openbmc/control/power0' : 0,
33 '/org/openbmc/control/led/BMC_READY' : 0,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050034 '/org/openbmc/control/host0' : 0,
Norman James2943cc62015-10-28 18:59:53 -050035 '/org/openbmc/control/flash/bios' : 0,
Norman James3e5c8592015-10-22 14:33:01 -050036 }
37}
38
39## method will be called when state is entered
Norman James362a80f2015-09-14 14:04:39 -050040ENTER_STATE_CALLBACK = {
Norman James2943cc62015-10-28 18:59:53 -050041 'HOST_POWERED_ON' : {
42 'boot' : {
43 'bus_name' : 'org.openbmc.control.Host',
44 'obj_name' : '/org/openbmc/control/host0',
45 'interface_name' : 'org.openbmc.control.Host',
46 }
Norman James3e5c8592015-10-22 14:33:01 -050047 },
48 'BMC_READY' : {
Norman James2943cc62015-10-28 18:59:53 -050049 'setOn' : {
50 'bus_name' : 'org.openbmc.control.led',
51 'obj_name' : '/org/openbmc/control/led/BMC_READY',
52 'interface_name' : 'org.openbmc.Led',
53 },
54 'init' : {
55 'bus_name' : 'org.openbmc.control.Flash',
56 'obj_name' : '/org/openbmc/control/flash/bios',
57 'interface_name' : 'org.openbmc.Flash',
58 },
Norman James362a80f2015-09-14 14:04:39 -050059 }
Norman James90baede2015-09-02 20:32:49 -050060}
61
Norman Jamesb38ea5a2015-10-28 12:44:56 -050062APPS = {
63 'property_manager' : {
64 'system_state' : 'BASE_APPS',
Norman James76abea32015-10-29 06:17:54 -050065 'start_process' : False,
66 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050067 'process_name' : 'property_manager.py',
68 'args' : [ SYSTEM_NAME ]
69 },
70 'bmc_init' : {
71 'system_state' : 'BMC_INIT',
72 'start_process' : True,
Norman James19e45912015-10-04 20:19:41 -050073 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050074 'process_name' : 'control_bmc_barreleye.exe',
75 },
76 'inventory' : {
77 'system_state' : 'BMC_STARTING',
78 'start_process' : True,
Norman James3e5c8592015-10-22 14:33:01 -050079 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050080 'process_name' : 'inventory_items.py',
81 'args' : [ SYSTEM_NAME ]
82 },
83 'pcie_present' : {
84 'system_state' : 'HOST_POWERED_ON',
85 'start_process' : True,
86 'monitor_process' : False,
87 'process_name' : 'pcie_slot_present.exe',
88 },
89 'virtual_sensors' : {
90 'system_state' : 'BMC_STARTING',
91 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -050092 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050093 'process_name' : 'sensors_virtual_p8.py',
94 },
95 'sensor_manager' : {
Norman James76abea32015-10-29 06:17:54 -050096 'system_state' : 'BASE_APPS',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050097 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -050098 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050099 'process_name' : 'sensor_manager.py',
100 'args' : [ SYSTEM_NAME ]
101 },
102 'host_watchdog' : {
103 'system_state' : 'BMC_STARTING',
104 'start_process' : True,
105 'monitor_process' : True,
106 'process_name' : 'host_watchdog.exe',
107 },
108 'power_control' : {
109 'system_state' : 'BMC_STARTING',
110 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500111 'monitor_process' : True,
Norman James5d78b4d2015-09-05 13:34:34 -0500112 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500113 'args' : [ '3000', '10' ]
114 },
115 'power_button' : {
116 'system_state' : 'BMC_STARTING',
Norman James2943cc62015-10-28 18:59:53 -0500117 'start_process' : False,
118 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500119 'process_name' : 'button_power.exe',
120 },
121 'led_control' : {
122 'system_state' : 'BMC_STARTING',
123 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500124 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500125 'process_name' : 'led_controller.exe',
126 },
127 'flash_control' : {
128 'system_state' : 'BMC_STARTING',
129 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500130 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500131 'process_name' : 'flash_bios.exe',
132 },
133 'download_manager' : {
134 'system_state' : 'BMC_STARTING',
135 'start_process' : True,
Norman James8c6d8382015-10-06 07:47:16 -0500136 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500137 'process_name' : 'download_manager.py',
138 'args' : [ SYSTEM_NAME ]
139 },
140 'host_control' : {
141 'system_state' : 'BMC_STARTING',
142 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500143 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500144 'process_name' : 'control_host.exe',
145 },
146 'chassis_control' : {
147 'system_state' : 'BMC_STARTING',
148 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500149 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500150 'process_name' : 'chassis_control.py',
151 },
152 'fans' : {
153 'system_state' : 'BMC_STARTING',
154 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500155 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500156 'process_name' : 'fan.exe',
157 'args' : [ 'fan0','fan1','fan2','fan3','fan4' ]
Norman Jamesce46e3e2015-08-30 22:25:55 -0500158 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500159}
Norman Jamesce46e3e2015-08-30 22:25:55 -0500160
Norman Jamesa9966b32015-10-28 06:55:58 -0500161CACHED_INTERFACES = {
162 "org.openbmc.InventoryItem" : True,
163 "org.openbmc.control.Chassis" : True,
164 }
Norman James3e5c8592015-10-22 14:33:01 -0500165INVENTORY_ROOT = '/org/openbmc/inventory'
Norman James362a80f2015-09-14 14:04:39 -0500166
Norman James88872672015-09-21 16:51:35 -0500167FRU_INSTANCES = {
Norman James3e5c8592015-10-22 14:33:01 -0500168 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
Norman James19e45912015-10-04 20:19:41 -0500169
Norman James3e5c8592015-10-22 14:33:01 -0500170 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
171
172 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
173 '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, },
174
175
176 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
177 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
178 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
179 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
180 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
181
182 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
183
184 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
185 '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, },
186
187 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
188 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
189 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
190 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
191 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
192 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
193 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
194 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
195 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
196 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
197 '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, },
198 '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, },
199
200 '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
201 '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
202 '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
203 '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
204 '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
205 '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
206 '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
207 '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
208 '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
209 '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
210 '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
211 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
212
213 '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
214 '<inventory_root>/system/chassis/motherboard/centaur1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
215 '<inventory_root>/system/chassis/motherboard/centaur2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
216 '<inventory_root>/system/chassis/motherboard/centaur3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
217 '<inventory_root>/system/chassis/motherboard/centaur4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
218 '<inventory_root>/system/chassis/motherboard/centaur5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
219 '<inventory_root>/system/chassis/motherboard/centaur6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
220 '<inventory_root>/system/chassis/motherboard/centaur7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
221
222 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
223 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
224 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
225 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
226 '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
227 '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
228 '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
229 '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
230 '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
231 '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
232 '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
233 '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
234 '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
235 '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
236 '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
237 '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
238 '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
239 '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
240 '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
241 '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
242 '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
243 '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
244 '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
245 '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
246 '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
247 '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
248 '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
249 '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
250 '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
251 '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
252 '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
253 '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
254
255 '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
256 '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
257 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
258 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
259 '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
260 '<inventory_root>/system/chassis/io_board/pcie_mezz1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman James19e45912015-10-04 20:19:41 -0500261
Norman James88872672015-09-21 16:51:35 -0500262}
Norman James362a80f2015-09-14 14:04:39 -0500263
Norman James19e45912015-10-04 20:19:41 -0500264ID_LOOKUP = {
265 'FRU' : {
Norman James3e5c8592015-10-22 14:33:01 -0500266 0x0d : '<inventory_root>/system/chassis',
267 0x34 : '<inventory_root>/system/chassis/motherboard',
268 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
269 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0',
270 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
271 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
272 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
273 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman Jamesa9966b32015-10-28 06:55:58 -0500274 0x35 : '<inventory_root>/system',
Norman James3e5c8592015-10-22 14:33:01 -0500275 },
276 'FRU_STR' : {
277 'PRODUCT_15' : '<inventory_root>/system',
278 'CHASSIS_2' : '<inventory_root>/system/chassis',
279 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
280 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0',
281 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0',
282 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1',
283 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2',
284 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James19e45912015-10-04 20:19:41 -0500285 },
286 'SENSOR' : {
Norman James3e5c8592015-10-22 14:33:01 -0500287 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
288 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
289 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
290 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
291 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
292 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
293 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
294 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
295 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
296 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
297 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
298 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
299 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
300 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0',
301 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
302 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
303 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
304 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
305 0x09 : '/org/openbmc/sensor/virtual/BootCount',
306 0x05 : '/org/openbmc/sensor/virtual/BootProgress',
307 0x04 : '/org/openbmc/sensor/virtual/HostStatus',
308 0x08 : '/org/openbmc/sensor/virtual/OccStatus',
309 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus',
Norman James19e45912015-10-04 20:19:41 -0500310 },
311 'GPIO_PRESENT' : {
Norman James3e5c8592015-10-22 14:33:01 -0500312 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
313 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman James19e45912015-10-04 20:19:41 -0500314 }
315}
Norman James362a80f2015-09-14 14:04:39 -0500316
Norman Jamesce46e3e2015-08-30 22:25:55 -0500317GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500318GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
319GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
320GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
321GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
322GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
323GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James2943cc62015-10-28 18:59:53 -0500324GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R5', 'direction': 'out' }
325GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'H2', 'direction': 'out' }
326GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500327GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
328GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
329GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
330GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
331GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
332GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
333GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
334GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesa9966b32015-10-28 06:55:58 -0500335
336def convertGpio(name):
337 name = name.upper()
338 c = name[0:1]
339 offset = int(name[1:])
340 a = ord(c)-65
341 base = a*8+GPIO_BASE
342 return base+offset
343
344
345