blob: c1b178e41f08fdd30e8553fb9b079572df616629 [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 James67b3bcc2015-11-11 10:41:38 -060036 '/org/openbmc/sensors/speed/fan5': 0,
Norman James3e5c8592015-10-22 14:33:01 -050037 }
38}
39
40## method will be called when state is entered
Norman James362a80f2015-09-14 14:04:39 -050041ENTER_STATE_CALLBACK = {
Norman James2943cc62015-10-28 18:59:53 -050042 'HOST_POWERED_ON' : {
43 'boot' : {
44 'bus_name' : 'org.openbmc.control.Host',
45 'obj_name' : '/org/openbmc/control/host0',
46 'interface_name' : 'org.openbmc.control.Host',
Norman James0ca72fb2015-11-10 10:39:36 -060047 },
48 'setMax' : {
49 'bus_name' : 'org.openbmc.control.Fans',
50 'obj_name' : '/org/openbmc/control/fans',
51 'interface_name' : 'org.openbmc.control.Fans',
Norman James2943cc62015-10-28 18:59:53 -050052 }
Norman James3e5c8592015-10-22 14:33:01 -050053 },
54 'BMC_READY' : {
Norman James2943cc62015-10-28 18:59:53 -050055 'setOn' : {
56 'bus_name' : 'org.openbmc.control.led',
57 'obj_name' : '/org/openbmc/control/led/BMC_READY',
58 'interface_name' : 'org.openbmc.Led',
59 },
60 'init' : {
61 'bus_name' : 'org.openbmc.control.Flash',
62 'obj_name' : '/org/openbmc/control/flash/bios',
63 'interface_name' : 'org.openbmc.Flash',
64 },
Norman James362a80f2015-09-14 14:04:39 -050065 }
Norman James90baede2015-09-02 20:32:49 -050066}
67
Norman Jamesb38ea5a2015-10-28 12:44:56 -050068APPS = {
Norman Jamesb728e652015-11-01 07:38:46 -060069 'startup_hacks' : {
70 'system_state' : 'BASE_APPS',
Norman James8005a642015-11-10 13:18:23 -060071 'start_process' : False,
Norman Jamesb728e652015-11-01 07:38:46 -060072 'monitor_process' : False,
Norman James67b3bcc2015-11-11 10:41:38 -060073 'process_name' : 'startup_hacks.sh',
Norman Jamesb728e652015-11-01 07:38:46 -060074 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -050075 'bmc_init' : {
76 'system_state' : 'BMC_INIT',
77 'start_process' : True,
Norman James19e45912015-10-04 20:19:41 -050078 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050079 'process_name' : 'control_bmc_barreleye.exe',
80 },
81 'inventory' : {
82 'system_state' : 'BMC_STARTING',
83 'start_process' : True,
Norman James3e5c8592015-10-22 14:33:01 -050084 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050085 'process_name' : 'inventory_items.py',
86 'args' : [ SYSTEM_NAME ]
87 },
88 'pcie_present' : {
89 'system_state' : 'HOST_POWERED_ON',
90 'start_process' : True,
91 'monitor_process' : False,
92 'process_name' : 'pcie_slot_present.exe',
93 },
Norman James0ca72fb2015-11-10 10:39:36 -060094 'fan_control' : {
95 'system_state' : 'BMC_STARTING',
96 'start_process' : True,
97 'monitor_process' : True,
98 'process_name' : 'fan_control.py',
99 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500100 'virtual_sensors' : {
101 'system_state' : 'BMC_STARTING',
102 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500103 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500104 'process_name' : 'sensors_virtual_p8.py',
105 },
106 'sensor_manager' : {
Norman James76abea32015-10-29 06:17:54 -0500107 'system_state' : 'BASE_APPS',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500108 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500109 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500110 'process_name' : 'sensor_manager.py',
111 'args' : [ SYSTEM_NAME ]
112 },
113 'host_watchdog' : {
114 'system_state' : 'BMC_STARTING',
115 'start_process' : True,
116 'monitor_process' : True,
117 'process_name' : 'host_watchdog.exe',
118 },
119 'power_control' : {
120 'system_state' : 'BMC_STARTING',
121 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500122 'monitor_process' : True,
Norman James5d78b4d2015-09-05 13:34:34 -0500123 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500124 'args' : [ '3000', '10' ]
125 },
126 'power_button' : {
127 'system_state' : 'BMC_STARTING',
Ken871ef742015-11-06 11:22:52 +0800128 'start_process' : True,
129 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500130 'process_name' : 'button_power.exe',
131 },
132 'led_control' : {
133 'system_state' : 'BMC_STARTING',
134 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500135 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500136 'process_name' : 'led_controller.exe',
137 },
138 'flash_control' : {
139 'system_state' : 'BMC_STARTING',
140 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500141 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500142 'process_name' : 'flash_bios.exe',
143 },
144 'download_manager' : {
145 'system_state' : 'BMC_STARTING',
146 'start_process' : True,
Norman James8c6d8382015-10-06 07:47:16 -0500147 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500148 'process_name' : 'download_manager.py',
149 'args' : [ SYSTEM_NAME ]
150 },
151 'host_control' : {
152 'system_state' : 'BMC_STARTING',
153 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500154 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500155 'process_name' : 'control_host.exe',
156 },
157 'chassis_control' : {
158 'system_state' : 'BMC_STARTING',
159 'start_process' : True,
Norman James6f8d0422015-09-14 18:48:00 -0500160 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500161 'process_name' : 'chassis_control.py',
162 },
Norman James2741ba92015-11-06 05:31:53 -0600163 'hwmon_barreleye' : {
Norman James0ca72fb2015-11-10 10:39:36 -0600164 'system_state' : 'BASE_APPS',
Norman James8005a642015-11-10 13:18:23 -0600165 'start_process' : False,
166 'monitor_process' : False,
Norman James2741ba92015-11-06 05:31:53 -0600167 'process_name' : 'hwmons_barreleye.exe',
Norman Jamesce46e3e2015-08-30 22:25:55 -0500168 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500169}
Norman Jamesce46e3e2015-08-30 22:25:55 -0500170
Norman Jamesa9966b32015-10-28 06:55:58 -0500171CACHED_INTERFACES = {
172 "org.openbmc.InventoryItem" : True,
173 "org.openbmc.control.Chassis" : True,
174 }
Norman James3e5c8592015-10-22 14:33:01 -0500175INVENTORY_ROOT = '/org/openbmc/inventory'
Norman James362a80f2015-09-14 14:04:39 -0500176
Norman James88872672015-09-21 16:51:35 -0500177FRU_INSTANCES = {
Norman James3e5c8592015-10-22 14:33:01 -0500178 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
Norman James19e45912015-10-04 20:19:41 -0500179
Norman James3e5c8592015-10-22 14:33:01 -0500180 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
181
182 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
183 '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, },
184
185
186 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
187 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
188 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
189 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
190 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
191
192 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
193
194 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
195 '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, },
196
197 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
198 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
199 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
200 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
201 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
202 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
203 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
204 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
205 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
206 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
207 '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, },
208 '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, },
209
210 '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
211 '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
212 '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
213 '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
214 '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
215 '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
216 '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
217 '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
218 '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
219 '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
220 '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
221 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
222
223 '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
224 '<inventory_root>/system/chassis/motherboard/centaur1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
225 '<inventory_root>/system/chassis/motherboard/centaur2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
226 '<inventory_root>/system/chassis/motherboard/centaur3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
227 '<inventory_root>/system/chassis/motherboard/centaur4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
228 '<inventory_root>/system/chassis/motherboard/centaur5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
229 '<inventory_root>/system/chassis/motherboard/centaur6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
230 '<inventory_root>/system/chassis/motherboard/centaur7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
231
232 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
233 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
234 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
235 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
236 '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
237 '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
238 '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
239 '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
240 '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
241 '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
242 '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
243 '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
244 '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
245 '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
246 '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
247 '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
248 '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
249 '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
250 '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
251 '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
252 '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
253 '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
254 '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
255 '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
256 '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
257 '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
258 '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
259 '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
260 '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
261 '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
262 '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
263 '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
264
265 '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
266 '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,},
267 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
268 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
269 '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
270 '<inventory_root>/system/chassis/io_board/pcie_mezz1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman James19e45912015-10-04 20:19:41 -0500271
Norman James88872672015-09-21 16:51:35 -0500272}
Norman James362a80f2015-09-14 14:04:39 -0500273
Norman James19e45912015-10-04 20:19:41 -0500274ID_LOOKUP = {
275 'FRU' : {
Kend6affe62015-11-05 14:44:01 +0800276 0x03 : '<inventory_root>/system/chassis/motherboard',
Norman James4f4bb6e2015-11-09 10:53:23 -0600277 0x40 : '<inventory_root>/system/chassis/io_board',
Norman James3e5c8592015-10-22 14:33:01 -0500278 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
Kend6affe62015-11-05 14:44:01 +0800279 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1',
280 0x04 : '<inventory_root>/system/chassis/motherboard/centaur0',
281 0x05 : '<inventory_root>/system/chassis/motherboard/centaur1',
282 0x06 : '<inventory_root>/system/chassis/motherboard/centaur2',
283 0x07 : '<inventory_root>/system/chassis/motherboard/centaur3',
284 0x08 : '<inventory_root>/system/chassis/motherboard/centaur4',
285 0x09 : '<inventory_root>/system/chassis/motherboard/centaur5',
286 0x0a : '<inventory_root>/system/chassis/motherboard/centaur6',
287 0x0b : '<inventory_root>/system/chassis/motherboard/centaur7',
288 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0',
289 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1',
290 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2',
291 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3',
292 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4',
293 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5',
294 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6',
295 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7',
296 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8',
297 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9',
298 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10',
299 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11',
300 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12',
301 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13',
302 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14',
303 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15',
304 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16',
305 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17',
306 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18',
307 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19',
308 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20',
309 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21',
310 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22',
311 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23',
312 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24',
313 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25',
314 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26',
315 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27',
316 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28',
317 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29',
318 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30',
319 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31',
320 0x33 : '<inventory_root>/system',
Norman James3e5c8592015-10-22 14:33:01 -0500321 },
322 'FRU_STR' : {
323 'PRODUCT_15' : '<inventory_root>/system',
Norman James4f4bb6e2015-11-09 10:53:23 -0600324 'CHASSIS_2' : '<inventory_root>/system/chassis',
325 'BOARD_64' : '<inventory_root>/system/chassis/io_board',
326 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
327 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1',
328 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/centaur0',
329 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/centaur1',
330 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/centaur2',
331 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/centaur3',
332 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/centaur4',
333 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/centaur5',
334 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/centaur6',
335 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/centaur7',
336 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0',
337 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1',
338 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2',
339 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3',
340 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4',
341 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5',
342 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6',
343 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7',
344 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8',
345 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9',
346 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10',
347 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11',
348 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12',
349 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13',
350 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14',
351 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15',
352 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16',
353 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17',
354 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18',
355 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19',
356 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20',
357 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21',
358 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22',
359 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23',
360 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24',
361 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25',
362 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26',
363 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27',
364 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28',
365 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29',
366 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30',
367 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31',
Norman James19e45912015-10-04 20:19:41 -0500368 },
369 'SENSOR' : {
Kend6affe62015-11-05 14:44:01 +0800370 0x34 : '<inventory_root>/system/chassis/motherboard',
371 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0',
372 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1',
373 0xc8 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
374 0xc9 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
375 0xca : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
376 0xcb : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
377 0xcc : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
378 0xcd : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
379 0xce : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
380 0xcf : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
381 0xd0 : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
382 0xd1 : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
383 0xd2 : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
384 0xd3 : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
385 0xd4 : '<inventory_root>/system/chassis/motherboard/cpu0/core12',
386 0xd5 : '<inventory_root>/system/chassis/motherboard/cpu0/core13',
387 0xd6 : '<inventory_root>/system/chassis/motherboard/cpu0/core14',
388 0xd7 : '<inventory_root>/system/chassis/motherboard/cpu0/core15',
389 0xd8 : '<inventory_root>/system/chassis/motherboard/cpu0/core16',
390 0xd9 : '<inventory_root>/system/chassis/motherboard/cpu0/core17',
391 0xda : '<inventory_root>/system/chassis/motherboard/cpu0/core18',
392 0xdb : '<inventory_root>/system/chassis/motherboard/cpu0/core19',
393 0xdc : '<inventory_root>/system/chassis/motherboard/cpu0/core20',
394 0xdd : '<inventory_root>/system/chassis/motherboard/cpu0/core21',
395 0xde : '<inventory_root>/system/chassis/motherboard/cpu0/core22',
396 0xdf : '<inventory_root>/system/chassis/motherboard/cpu0/core23',
397 0x40 : '<inventory_root>/system/chassis/motherboard/centaur0',
398 0x41 : '<inventory_root>/system/chassis/motherboard/centaur1',
399 0x42 : '<inventory_root>/system/chassis/motherboard/centaur2',
400 0x43 : '<inventory_root>/system/chassis/motherboard/centaur3',
401 0x44 : '<inventory_root>/system/chassis/motherboard/centaur4',
402 0x45 : '<inventory_root>/system/chassis/motherboard/centaur5',
403 0x46 : '<inventory_root>/system/chassis/motherboard/centaur6',
404 0x47 : '<inventory_root>/system/chassis/motherboard/centaur7',
405 0x10 : '<inventory_root>/system/chassis/motherboard/dimm0',
406 0x11 : '<inventory_root>/system/chassis/motherboard/dimm1',
407 0x12 : '<inventory_root>/system/chassis/motherboard/dimm2',
408 0x13 : '<inventory_root>/system/chassis/motherboard/dimm3',
409 0x14 : '<inventory_root>/system/chassis/motherboard/dimm4',
410 0x15 : '<inventory_root>/system/chassis/motherboard/dimm5',
411 0x16 : '<inventory_root>/system/chassis/motherboard/dimm6',
412 0x17 : '<inventory_root>/system/chassis/motherboard/dimm7',
413 0x18 : '<inventory_root>/system/chassis/motherboard/dimm8',
414 0x19 : '<inventory_root>/system/chassis/motherboard/dimm9',
415 0x1a : '<inventory_root>/system/chassis/motherboard/dimm10',
416 0x1b : '<inventory_root>/system/chassis/motherboard/dimm11',
417 0x1c : '<inventory_root>/system/chassis/motherboard/dimm12',
418 0x1d : '<inventory_root>/system/chassis/motherboard/dimm13',
419 0x1e : '<inventory_root>/system/chassis/motherboard/dimm14',
420 0x1f : '<inventory_root>/system/chassis/motherboard/dimm15',
421 0x20 : '<inventory_root>/system/chassis/motherboard/dimm16',
422 0x21 : '<inventory_root>/system/chassis/motherboard/dimm17',
423 0x22 : '<inventory_root>/system/chassis/motherboard/dimm18',
424 0x23 : '<inventory_root>/system/chassis/motherboard/dimm19',
425 0x24 : '<inventory_root>/system/chassis/motherboard/dimm20',
426 0x25 : '<inventory_root>/system/chassis/motherboard/dimm21',
427 0x26 : '<inventory_root>/system/chassis/motherboard/dimm22',
428 0x27 : '<inventory_root>/system/chassis/motherboard/dimm23',
429 0x28 : '<inventory_root>/system/chassis/motherboard/dimm24',
430 0x29 : '<inventory_root>/system/chassis/motherboard/dimm25',
431 0x2a : '<inventory_root>/system/chassis/motherboard/dimm26',
432 0x2b : '<inventory_root>/system/chassis/motherboard/dimm27',
433 0x2c : '<inventory_root>/system/chassis/motherboard/dimm28',
434 0x2d : '<inventory_root>/system/chassis/motherboard/dimm29',
435 0x2e : '<inventory_root>/system/chassis/motherboard/dimm30',
436 0x2f : '<inventory_root>/system/chassis/motherboard/dimm31',
Norman James3e5c8592015-10-22 14:33:01 -0500437 0x09 : '/org/openbmc/sensor/virtual/BootCount',
438 0x05 : '/org/openbmc/sensor/virtual/BootProgress',
439 0x04 : '/org/openbmc/sensor/virtual/HostStatus',
440 0x08 : '/org/openbmc/sensor/virtual/OccStatus',
441 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus',
Norman James19e45912015-10-04 20:19:41 -0500442 },
443 'GPIO_PRESENT' : {
Norman James4f4bb6e2015-11-09 10:53:23 -0600444 'SLOT0_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_riser_slot0',
445 'SLOT1_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_riser_slot1',
446 'SLOT2_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_riser_slot2',
Norman James3e5c8592015-10-22 14:33:01 -0500447 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
448 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman James4f4bb6e2015-11-09 10:53:23 -0600449 'SLOT2_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2',
450 'MEZZ0_PRESENT' : '<inventory_root>/system/chassis/io_board/mezz0',
451 'MEZZ1_PRESENT' : '<inventory_root>/system/chassis/io_board/mezz1',
Norman James19e45912015-10-04 20:19:41 -0500452 }
453}
Norman James362a80f2015-09-14 14:04:39 -0500454
Norman Jamesce46e3e2015-08-30 22:25:55 -0500455GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500456GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
457GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
458GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
459GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
460GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
461GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James2943cc62015-10-28 18:59:53 -0500462GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R5', 'direction': 'out' }
463GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'H2', 'direction': 'out' }
464GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500465GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
466GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500467GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
468GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
469GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
470GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
471GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
472GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
473GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
474GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesa9966b32015-10-28 06:55:58 -0500475
476def convertGpio(name):
477 name = name.upper()
478 c = name[0:1]
479 offset = int(name[1:])
480 a = ord(c)-65
481 base = a*8+GPIO_BASE
482 return base+offset
483
484
485