blob: f4b725a218c0c664d712f5a7f26746748391cee8 [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 James2943cc62015-10-28 18:59:53 -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' : {
Norman James76abea32015-10-29 06:17:54 -050028 '/org/openbmc/sensors': 0,
Norman Jamesb714eb22015-10-26 17:12:57 -050029 },
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 James2943cc62015-10-28 18:59:53 -050035 '/org/openbmc/control/flash/bios' : 0,
Norman Jamesa3e47c42015-10-18 14:43:10 -050036 }
37}
38
39## method will be called when state is entered
Norman Jamesc9239a32015-10-06 16:54:31 -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 Jamesa3e47c42015-10-18 14:43:10 -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 Jamesc9239a32015-10-06 16:54:31 -050059 }
60}
61
Norman Jamesb38ea5a2015-10-28 12:44:56 -050062APPS = {
Norman Jamesb728e652015-11-01 07:38:46 -060063 'startup_hacks' : {
64 'system_state' : 'BASE_APPS',
65 'start_process' : True,
66 'monitor_process' : False,
67 'process_name' : 'startup_hacks.sh',
68 },
Norman Jamesb38ea5a2015-10-28 12:44:56 -050069 'bmc_init' : {
70 'system_state' : 'BMC_INIT',
71 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050072 'monitor_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050073 'process_name' : 'control_bmc.exe',
74 },
75 'inventory' : {
76 'system_state' : 'BMC_STARTING',
77 'start_process' : True,
Norman James0ee61922015-10-14 09:39:11 -050078 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050079 'process_name' : 'inventory_items.py',
80 'args' : [ SYSTEM_NAME ]
81 },
82 'pcie_present' : {
83 'system_state' : 'HOST_POWERED_ON',
Norman Jamesd98932a2015-11-09 10:59:22 -060084 'start_process' : False,
Norman Jamesb38ea5a2015-10-28 12:44:56 -050085 'monitor_process' : False,
86 'process_name' : 'pcie_slot_present.exe',
87 },
88 'virtual_sensors' : {
89 'system_state' : 'BMC_STARTING',
90 'start_process' : True,
Norman Jamesc9239a32015-10-06 16:54:31 -050091 'monitor_process' : True,
Chris Austen3ac12272015-12-10 12:24:56 -060092 'process_name' : 'hwmon.py',
93 'args' : [ SYSTEM_NAME ]
Norman Jamesb38ea5a2015-10-28 12:44:56 -050094 },
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 Jamesc9239a32015-10-06 16:54:31 -050098 'monitor_process' : True,
Chris Austen4c9ea5d2015-12-09 23:26:08 -060099 'process_name' : 'sensor_manager2.py',
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500100 '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 Jamesc9239a32015-10-06 16:54:31 -0500111 'monitor_process' : True,
112 '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 Jamesc9239a32015-10-06 16:54:31 -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 Jamesc9239a32015-10-06 16:54:31 -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 Jamesc9239a32015-10-06 16:54:31 -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 Jamesc9239a32015-10-06 16:54:31 -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 Jamesc9239a32015-10-06 16:54:31 -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 Jamesc9239a32015-10-06 16:54:31 -0500155 'monitor_process' : True,
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500156 'process_name' : 'fan.exe',
157 'args' : [ 'fan0','fan1','fan2','fan3','fan4' ]
Norman Jamesc9239a32015-10-06 16:54:31 -0500158 }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500159}
Norman Jamesc9239a32015-10-06 16:54:31 -0500160
Norman James2656f332015-10-26 06:42:41 -0500161CACHED_INTERFACES = {
162 "org.openbmc.InventoryItem" : True,
163 "org.openbmc.control.Chassis" : True,
164 }
Norman Jamesa3e47c42015-10-18 14:43:10 -0500165INVENTORY_ROOT = '/org/openbmc/inventory'
Norman Jamesc9239a32015-10-06 16:54:31 -0500166
167FRU_INSTANCES = {
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500168 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
169 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, },
170 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500171
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500172 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
173 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
174 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
175 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
176 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500177
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500178 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False,
Norman Jamesa42446a2015-10-19 11:12:45 -0500179 'manufacturer' : 'ASPEED' },
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500180 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
181 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
182 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
183 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
184 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
185 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
186 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
187 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
188 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
189 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
190 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
191 '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
192 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500193
Norman Jamesa42446a2015-10-19 11:12:45 -0500194
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500195 '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, },
Norman Jamesa42446a2015-10-19 11:12:45 -0500196
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500197 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
198 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
199 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
200 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500201
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500202 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
203 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,},
Norman Jamesa42446a2015-10-19 11:12:45 -0500204
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600205 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
206 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
207 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
208 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
209 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
Norman Jamesc9239a32015-10-06 16:54:31 -0500210}
211
212ID_LOOKUP = {
213 'FRU' : {
Norman Jamesa42446a2015-10-19 11:12:45 -0500214 0x0d : '<inventory_root>/system/chassis',
215 0x34 : '<inventory_root>/system/chassis/motherboard',
216 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
217 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0',
218 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0',
219 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1',
220 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2',
221 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman James2656f332015-10-26 06:42:41 -0500222 0x35 : '<inventory_root>/system',
Norman Jamesc9239a32015-10-06 16:54:31 -0500223 },
Norman Jamesa42446a2015-10-19 11:12:45 -0500224 'FRU_STR' : {
Norman Jamesfe635e82015-10-20 07:47:22 -0500225 'PRODUCT_15' : '<inventory_root>/system',
226 'CHASSIS_2' : '<inventory_root>/system/chassis',
227 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
228 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600229 'BOARD_14' : '<inventory_root>/system/chassis/motherboard',
Norman Jamesfe635e82015-10-20 07:47:22 -0500230 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0',
231 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1',
232 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2',
233 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3',
Norman Jamesa42446a2015-10-19 11:12:45 -0500234 },
Norman Jamesc9239a32015-10-06 16:54:31 -0500235 'SENSOR' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600236 0x34 : '<inventory_root>/system/chassis/motherboard',
237 0x35 : '<inventory_root>/system/systemevent',
238 0x37 : '<inventory_root>/system/chassis/motherboard/refclock',
239 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock',
240 0x39 : '<inventory_root>/system/chassis/motherboard/todclock',
241 0x3A : '<inventory_root>/system/chassis/motherboard/apss',
Norman Jamesa42446a2015-10-19 11:12:45 -0500242 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0',
243 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
244 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
245 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
246 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
247 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
248 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
249 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
250 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
251 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
252 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
253 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
254 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
255 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0',
256 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0',
257 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1',
258 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2',
259 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3',
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600260 0x09 : '/org/openbmc/sensors/host/BootCount',
261 0x05 : '/org/openbmc/sensors/host/BootProgress',
262 0x08 : '/org/openbmc/sensors/host/OccStatus',
263 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus',
264 0x33 : '/org/openbmc/sensors/host/PowerCap',
Norman Jamesc9239a32015-10-06 16:54:31 -0500265 },
266 'GPIO_PRESENT' : {
Chris Austen4c9ea5d2015-12-09 23:26:08 -0600267 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0',
268 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1',
Norman Jamesc9239a32015-10-06 16:54:31 -0500269 }
270}
271
272GPIO_CONFIG = {}
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500273GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' }
274GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' }
275GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' }
276GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' }
277GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' }
278GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' }
Norman James7b8811e2016-01-12 12:51:29 -0600279GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500280GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R4', 'direction': 'out' }
281GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'R4', 'direction': 'out' }
Norman James2943cc62015-10-28 18:59:53 -0500282GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' }
Norman Jamese62f4452015-10-31 17:33:10 -0500283GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' }
284GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' }
Norman Jamesb38ea5a2015-10-28 12:44:56 -0500285GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' }
286GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' }
287GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' }
288GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' }
289GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' }
290GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' }
291GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' }
292GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' }
Norman Jamesc9239a32015-10-06 16:54:31 -0500293
Norman James6bbe0b52015-10-27 09:18:05 -0500294def convertGpio(name):
295 name = name.upper()
296 c = name[0:1]
Norman Jamesa9966b32015-10-28 06:55:58 -0500297 offset = int(name[1:])
Norman James6bbe0b52015-10-27 09:18:05 -0500298 a = ord(c)-65
Norman Jamesa9966b32015-10-28 06:55:58 -0500299 base = a*8+GPIO_BASE
Norman James7b8811e2016-01-12 12:51:29 -0600300 return base+offset
301
302HWMON_CONFIG = {
303 '2-004c' : {
304 'names' : {
305 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' },
306 }
307 }
308}