blob: 36d96162c0e5c0abc8917e0f71e133abc99b4d23 [file] [log] [blame]
Norman Jamesc9239a32015-10-06 16:54:31 -05001#! /usr/bin/python
2
Norman Jamesc9239a32015-10-06 16:54:31 -05003HOME_PATH = './'
Norman Jamesb38ea5a2015-10-28 12:44:56 -05004CACHE_PATH = '/var/cache/obmc'
Norman James25d80dd2015-10-08 07:02:25 -05005FLASH_DOWNLOAD_PATH = "/tmp"
Norman Jamesa9966b32015-10-28 06:55:58 -05006GPIO_BASE = 320
Norman James969227c2015-10-08 15:10:47 -05007SYSTEM_NAME = "Palmetto"
Norman Jamesc9239a32015-10-06 16:54:31 -05008
Norman Jamesa3e47c42015-10-18 14:43:10 -05009
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 Jamesc9239a32015-10-06 16:54:31 -050014SYSTEM_STATES = [
Norman Jamesb714eb22015-10-26 17:12:57 -050015 'BASE_APPS',
Norman Jamesa3e47c42015-10-18 14:43:10 -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 Jamesa3e47c42015-10-18 14:43:10 -050023 'HOST_POWERED_DOWN',
Norman Jamesc9239a32015-10-06 16:54:31 -050024]
25
Norman Jamesa3e47c42015-10-18 14:43:10 -050026EXIT_STATE_DEPEND = {
Norman Jamesb714eb22015-10-26 17:12:57 -050027 'BASE_APPS' : {
28 '/org/openbmc/managers/Property': 0,
29 },
Norman Jamesa3e47c42015-10-18 14:43:10 -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 Jamesa3e47c42015-10-18 14:43:10 -050035 }
36}
37
38## method will be called when state is entered
Norman Jamesc9239a32015-10-06 16:54:31 -050039ENTER_STATE_CALLBACK = {
Norman Jamesa3e47c42015-10-18 14:43:10 -050040 'HOST_POWERED_ON' : {
Norman Jamesc9239a32015-10-06 16:54:31 -050041 'bus_name' : 'org.openbmc.control.Host',
Norman Jamesb38ea5a2015-10-28 12:44:56 -050042 'obj_name' : '/org/openbmc/control/host0',
Norman Jamesc9239a32015-10-06 16:54:31 -050043 'interface_name' : 'org.openbmc.control.Host',
44 'method_name' : 'boot'
Norman Jamesa3e47c42015-10-18 14:43:10 -050045 },
46 'BMC_READY' : {
47 'bus_name' : 'org.openbmc.control.led',
48 'obj_name' : '/org/openbmc/control/led/BMC_READY',
49 'interface_name' : 'org.openbmc.Led',
50 'method_name' : 'setOn'
Norman Jamesc9239a32015-10-06 16:54:31 -050051 }
52}
53
Norman Jamesb38ea5a2015-10-28 12:44:56 -050054APPS = {
55 'property_manager' : {
56 'system_state' : 'BASE_APPS',
57 'start_process' : True,
Norman Jamesb714eb22015-10-26 17:12:57 -050058 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050059 'process_name' : 'property_manager.py',
60 'args' : [ SYSTEM_NAME ]
61 },
62 'bmc_init' : {
63 'system_state' : 'BMC_INIT',
64 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050065 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050066 'process_name' : 'control_bmc.exe',
67 },
68 'inventory' : {
69 'system_state' : 'BMC_STARTING',
70 'start_process' : True,
Norman James0ee61922015-10-14 09:39:11 -050071 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050072 'process_name' : 'inventory_items.py',
73 'args' : [ SYSTEM_NAME ]
74 },
75 'pcie_present' : {
76 'system_state' : 'HOST_POWERED_ON',
77 'start_process' : True,
78 'monitor_process' : False,
79 'process_name' : 'pcie_slot_present.exe',
80 },
81 'virtual_sensors' : {
82 'system_state' : 'BMC_STARTING',
83 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050084 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050085 'process_name' : 'sensors_virtual_p8.py',
86 },
87 'sensor_manager' : {
88 'system_state' : 'BMC_STARTING',
89 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050090 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050091 'process_name' : 'sensor_manager.py',
92 'args' : [ SYSTEM_NAME ]
93 },
94 'host_watchdog' : {
95 'system_state' : 'BMC_STARTING',
96 'start_process' : True,
97 'monitor_process' : True,
98 'process_name' : 'host_watchdog.exe',
99 },
100 'power_control' : {
101 'system_state' : 'BMC_STARTING',
102 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500103 'monitor_process' : True,
104 'process_name' : 'power_control.exe',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500105 'args' : [ '3000', '10' ]
106 },
107 'power_button' : {
108 'system_state' : 'BMC_STARTING',
109 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500110 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500111 'process_name' : 'button_power.exe',
112 },
113 'led_control' : {
114 'system_state' : 'BMC_STARTING',
115 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500116 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500117 'process_name' : 'led_controller.exe',
118 },
119 'flash_control' : {
120 'system_state' : 'BMC_STARTING',
121 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500122 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500123 'process_name' : 'flash_bios.exe',
124 },
125 'download_manager' : {
126 'system_state' : 'BMC_STARTING',
127 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500128 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500129 'process_name' : 'download_manager.py',
130 'args' : [ SYSTEM_NAME ]
131 },
132 'host_control' : {
133 'system_state' : 'BMC_STARTING',
134 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500135 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500136 'process_name' : 'control_host.exe',
137 },
138 'chassis_control' : {
139 'system_state' : 'BMC_STARTING',
140 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500141 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500142 'process_name' : 'chassis_control.py',
143 },
144 'fans' : {
145 'system_state' : 'BMC_STARTING',
146 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -0500147 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500148 'process_name' : 'fan.exe',
149 'args' : [ 'fan0','fan1','fan2','fan3','fan4' ]
Norman Jamesc9239a32015-10-06 16:54:31 -0500150 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500151}
Norman Jamesc9239a32015-10-06 16:54:31 -0500152
Norman James2656f332015-10-26 06:42:41 -0500153CACHED_INTERFACES = {
154 "org.openbmc.InventoryItem" : True,
155 "org.openbmc.control.Chassis" : True,
156 }
Norman Jamesa3e47c42015-10-18 14:43:10 -0500157INVENTORY_ROOT = '/org/openbmc/inventory'
Norman Jamesc9239a32015-10-06 16:54:31 -0500158
159FRU_INSTANCES = {
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500160 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
161 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
162 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500163
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500164 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
165 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
166 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
167 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
168 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500169
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500170 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
Norman Jamesa42446a2015-10-19 11:12:45 -0500171 'manufacturer' : 'ASPEED' },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500172 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
173 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
174 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
175 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
176 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
177 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
178 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
179 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
180 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
181 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
182 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
183 '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
184 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500185
Norman Jamesa42446a2015-10-19 11:12:45 -0500186
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500187 '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500188
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500189 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
190 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
191 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
192 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500193
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500194 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
195 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500196
Norman Jamesc9239a32015-10-06 16:54:31 -0500197}
198
199ID_LOOKUP = {
200 'FRU' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500201 0x0d : '<inventory_root>/system/chassis',
202 0x34 : '<inventory_root>/system/chassis/motherboard',
203 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
204 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0',
205 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
206 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
207 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
208 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James2656f332015-10-26 06:42:41 -0500209 0x35 : '<inventory_root>/system',
Norman Jamesc9239a32015-10-06 16:54:31 -0500210 },
Norman Jamesa42446a2015-10-19 11:12:45 -0500211 'FRU_STR' : {
Norman Jamesfe635e82015-10-20 07:47:22 -0500212 'PRODUCT_15' : '<inventory_root>/system',
213 'CHASSIS_2' : '<inventory_root>/system/chassis',
214 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
215 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0',
216 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0',
217 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1',
218 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2',
219 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman Jamesa42446a2015-10-19 11:12:45 -0500220 },
Norman Jamesc9239a32015-10-06 16:54:31 -0500221 'SENSOR' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500222 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
223 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
224 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
225 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
226 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
227 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
228 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
229 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
230 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
231 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
232 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
233 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
234 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
235 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0',
236 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
237 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
238 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
239 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James0ee61922015-10-14 09:39:11 -0500240 0x09 : '/org/openbmc/sensor/virtual/BootCount',
241 0x05 : '/org/openbmc/sensor/virtual/BootProgress',
242 0x04 : '/org/openbmc/sensor/virtual/HostStatus',
243 0x08 : '/org/openbmc/sensor/virtual/OccStatus',
244 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus',
Norman Jamesc9239a32015-10-06 16:54:31 -0500245 },
246 'GPIO_PRESENT' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500247 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
248 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman Jamesc9239a32015-10-06 16:54:31 -0500249 }
250}
251
252GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500253GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
254GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
255GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
256GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
257GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
258GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
259GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R4', 'direction': 'out' }
260GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'R4', 'direction': 'out' }
261GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'falling' }
262GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
263GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
264GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
265GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
266GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
267GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
268GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
269GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesc9239a32015-10-06 16:54:31 -0500270
Norman James6bbe0b52015-10-27 09:18:05 -0500271def convertGpio(name):
272 name = name.upper()
273 c = name[0:1]
Norman Jamesa9966b32015-10-28 06:55:58 -0500274 offset = int(name[1:])
Norman James6bbe0b52015-10-27 09:18:05 -0500275 a = ord(c)-65
Norman Jamesa9966b32015-10-28 06:55:58 -0500276 base = a*8+GPIO_BASE
Norman James6bbe0b52015-10-27 09:18:05 -0500277 return base+offset
278
279
Norman Jamesc9239a32015-10-06 16:54:31 -0500280