1#! /usr/bin/python 2 3HOME_PATH = './' 4GPIO_BASE = 320 5SYSTEM_NAME = "Palmetto" 6 7 8## System states 9## state can change to next state in 2 ways: 10## - a process emits a GotoSystemState signal with state name to goto 11## - objects specified in EXIT_STATE_DEPEND have started 12SYSTEM_STATES = [ 13 'BASE_APPS', 14 'BMC_STARTING', 15 'BMC_READY', 16 'HOST_POWERING_ON', 17 'HOST_POWERED_ON', 18 'HOST_BOOTING', 19 'HOST_BOOTED', 20 'HOST_POWERED_OFF', 21] 22 23EXIT_STATE_DEPEND = { 24 'BASE_APPS' : { 25 '/org/openbmc/sensors': 0, 26 }, 27 'BMC_STARTING' : { 28 '/org/openbmc/control/chassis0': 0, 29 '/org/openbmc/control/power0' : 0, 30 '/org/openbmc/control/led/identify' : 0, 31 '/org/openbmc/control/host0' : 0, 32 '/org/openbmc/control/flash/bios' : 0, 33 } 34} 35 36## method will be called when state is entered 37ENTER_STATE_CALLBACK = { 38 'HOST_POWERED_ON' : { 39 'boot' : { 40 'bus_name' : 'org.openbmc.control.Host', 41 'obj_name' : '/org/openbmc/control/host0', 42 'interface_name' : 'org.openbmc.control.Host', 43 } 44 }, 45 'BMC_READY' : { 46 'setOn' : { 47 'bus_name' : 'org.openbmc.control.led', 48 'obj_name' : '/org/openbmc/control/led/identify', 49 'interface_name' : 'org.openbmc.Led', 50 }, 51 'init' : { 52 'bus_name' : 'org.openbmc.control.Flash', 53 'obj_name' : '/org/openbmc/control/flash/bios', 54 'interface_name' : 'org.openbmc.Flash', 55 }, 56 } 57} 58 59APPS = { 60 'startup_hacks' : { 61 'system_state' : 'BASE_APPS', 62 'start_process' : True, 63 'monitor_process' : False, 64 'process_name' : 'startup_hacks.sh', 65 }, 66 'inventory' : { 67 'system_state' : 'BMC_STARTING', 68 'start_process' : True, 69 'monitor_process' : True, 70 'process_name' : 'inventory_items.py', 71 'args' : [ SYSTEM_NAME ] 72 }, 73 'pcie_present' : { 74 'system_state' : 'HOST_POWERED_ON', 75 'start_process' : False, 76 'monitor_process' : False, 77 'process_name' : 'pcie_slot_present.exe', 78 }, 79 'virtual_sensors' : { 80 'system_state' : 'BMC_STARTING', 81 'start_process' : True, 82 'monitor_process' : True, 83 'process_name' : 'hwmon.py', 84 'args' : [ SYSTEM_NAME ] 85 }, 86 'sensor_manager' : { 87 'system_state' : 'BASE_APPS', 88 'start_process' : True, 89 'monitor_process' : True, 90 'process_name' : 'sensor_manager2.py', 91 'args' : [ SYSTEM_NAME ] 92 }, 93 'host_watchdog' : { 94 'system_state' : 'BMC_STARTING', 95 'start_process' : True, 96 'monitor_process' : True, 97 'process_name' : 'host_watchdog.exe', 98 }, 99 'power_control' : { 100 'system_state' : 'BMC_STARTING', 101 'start_process' : True, 102 'monitor_process' : True, 103 'process_name' : 'power_control.exe', 104 'args' : [ '3000', '10' ] 105 }, 106 'power_button' : { 107 'system_state' : 'BMC_STARTING', 108 'start_process' : False, 109 'monitor_process' : False, 110 'process_name' : 'button_power.exe', 111 }, 112 'host_checkstop' : { 113 'system_state' : 'BMC_STARTING', 114 'start_process' : False, 115 'monitor_process' : False, 116 'process_name' : 'host_checkstop.exe', 117 }, 118 'led_control' : { 119 'system_state' : 'BMC_STARTING', 120 'start_process' : True, 121 'monitor_process' : True, 122 'process_name' : 'led_controller.exe', 123 }, 124 'flash_control' : { 125 'system_state' : 'BMC_STARTING', 126 'start_process' : True, 127 'monitor_process' : True, 128 'process_name' : 'flash_bios.exe', 129 }, 130 'bmc_flash_control' : { 131 'system_state' : 'BMC_STARTING', 132 'start_process' : True, 133 'monitor_process' : True, 134 'process_name' : 'bmc_update.py', 135 }, 136 'download_manager' : { 137 'system_state' : 'BMC_STARTING', 138 'start_process' : True, 139 'monitor_process' : True, 140 'process_name' : 'download_manager.py', 141 'args' : [ SYSTEM_NAME ] 142 }, 143 'host_control' : { 144 'system_state' : 'BMC_STARTING', 145 'start_process' : True, 146 'monitor_process' : True, 147 'process_name' : 'control_host.exe', 148 }, 149 'chassis_control' : { 150 'system_state' : 'BMC_STARTING', 151 'start_process' : True, 152 'monitor_process' : True, 153 'process_name' : 'chassis_control.py', 154 }, 155 'restore' : { 156 'system_state' : 'BMC_READY', 157 'start_process' : True, 158 'monitor_process' : False, 159 'process_name' : 'discover_system_state.py', 160 }, 161 'bmc_control' : { 162 'system_state' : 'BMC_STARTING', 163 'start_process' : True, 164 'monitor_process' : True, 165 'process_name' : 'control_bmc.exe', 166 } 167} 168 169CACHED_INTERFACES = { 170 "org.openbmc.InventoryItem" : True, 171 "org.openbmc.control.Chassis" : True, 172 } 173INVENTORY_ROOT = '/org/openbmc/inventory' 174 175FRU_INSTANCES = { 176 '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, 177 '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, 178 '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, 179 180 '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, 181 '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, 182 '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, 183 '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, 184 '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, }, 185 186 '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 187 'manufacturer' : 'ASPEED' }, 188 '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, 189 '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 190 '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 191 '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 192 '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 193 '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 194 '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 195 '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 196 '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 197 '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 198 '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 199 '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 200 '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, 201 202 203 '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, 204 205 '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, 206 '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, 207 '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, 208 '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, 209 210 '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, 211 '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, 212 213 '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, }, 214 '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, 215 '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, 216 '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, 217 '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, 218} 219 220ID_LOOKUP = { 221 'FRU' : { 222 0x0d : '<inventory_root>/system/chassis', 223 0x34 : '<inventory_root>/system/chassis/motherboard', 224 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', 225 0x02 : '<inventory_root>/system/chassis/motherboard/membuf0', 226 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0', 227 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1', 228 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2', 229 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3', 230 0x35 : '<inventory_root>/system', 231 }, 232 'FRU_STR' : { 233 'PRODUCT_15' : '<inventory_root>/system', 234 'CHASSIS_2' : '<inventory_root>/system/chassis', 235 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', 236 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/membuf0', 237 'BOARD_14' : '<inventory_root>/system/chassis/motherboard', 238 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0', 239 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1', 240 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2', 241 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3', 242 }, 243 'SENSOR' : { 244 0x34 : '<inventory_root>/system/chassis/motherboard', 245 0x35 : '<inventory_root>/system/systemevent', 246 0x37 : '<inventory_root>/system/chassis/motherboard/refclock', 247 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock', 248 0x39 : '<inventory_root>/system/chassis/motherboard/todclock', 249 0x3A : '<inventory_root>/system/chassis/motherboard/apss', 250 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0', 251 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0', 252 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1', 253 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2', 254 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3', 255 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4', 256 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5', 257 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6', 258 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7', 259 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8', 260 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9', 261 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10', 262 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11', 263 0x2e : '<inventory_root>/system/chassis/motherboard/membuf0', 264 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0', 265 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1', 266 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2', 267 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3', 268 0x09 : '/org/openbmc/sensors/host/BootCount', 269 0x05 : '/org/openbmc/sensors/host/BootProgress', 270 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus', 271 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus', 272 0x33 : '/org/openbmc/sensors/host/PowerCap', 273 }, 274 'GPIO_PRESENT' : { 275 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', 276 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', 277 } 278} 279 280GPIO_CONFIG = {} 281GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } 282GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } 283GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } 284GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } 285GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } 286GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } 287GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' } 288GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' } 289GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } 290GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } 291GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } 292GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } 293GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } 294GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } 295GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } 296GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } 297GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } 298GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } 299GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } 300GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' } 301 302def convertGpio(name): 303 name = name.upper() 304 c = name[0:1] 305 offset = int(name[1:]) 306 a = ord(c)-65 307 base = a*8+GPIO_BASE 308 return base+offset 309 310HWMON_CONFIG = { 311 '2-004c' : { 312 'names' : { 313 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : -3,'units' : 'C' }, 314 } 315 }, 316 '3-0050' : { 317 'names' : { 318 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 319 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 320 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 321 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 322 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 323 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, 324 } 325 } 326} 327 328# Miscellaneous non-poll sensor with system specific properties. 329# The sensor id is the same as those defined in ID_LOOKUP['SENSOR']. 330MISC_SENSORS = { 331 0x09 : { 'class' : 'BootCountSensor' }, 332 0x05 : { 'class' : 'BootProgressSensor' }, 333 0x08 : { 'class' : 'OccStatusSensor', 334 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' }, 335 0x32 : { 'class' : 'OperatingSystemStatusSensor' }, 336 0x33 : { 'class' : 'PowerCap', 337 'os_path' : '/sys/class/hwmon/hwmon1/user_powercap' }, 338} 339