Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 1 | #! /usr/bin/python |
Norman James | 9e6acf9 | 2015-09-08 07:00:04 -0500 | [diff] [blame] | 2 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 3 | HOME_PATH = './' |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 4 | CACHE_PATH = '/var/cache/obmc/' |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 5 | FLASH_DOWNLOAD_PATH = "/tmp" |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 6 | GPIO_BASE = 320 |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 7 | SYSTEM_NAME = "Barreleye" |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 8 | |
| 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 James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 14 | SYSTEM_STATES = [ |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 15 | 'BASE_APPS', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 16 | 'BMC_INIT', |
| 17 | 'BMC_STARTING', |
| 18 | 'BMC_READY', |
| 19 | 'HOST_POWERING_ON', |
| 20 | 'HOST_POWERED_ON', |
| 21 | 'HOST_BOOTING', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 22 | 'HOST_BOOTED', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 23 | 'HOST_POWERED_DOWN', |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 24 | ] |
| 25 | |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 26 | EXIT_STATE_DEPEND = { |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 27 | 'BASE_APPS' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 28 | '/org/openbmc/sensors': 0, |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 29 | }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 30 | 'BMC_STARTING' : { |
| 31 | '/org/openbmc/control/chassis0': 0, |
| 32 | '/org/openbmc/control/power0' : 0, |
| 33 | '/org/openbmc/control/led/BMC_READY' : 0, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 34 | '/org/openbmc/control/host0' : 0, |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 35 | '/org/openbmc/control/flash/bios' : 0, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 36 | } |
| 37 | } |
| 38 | |
| 39 | ## method will be called when state is entered |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 40 | ENTER_STATE_CALLBACK = { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 41 | '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 James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 47 | }, |
| 48 | 'BMC_READY' : { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 49 | '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 James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 59 | } |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 60 | } |
| 61 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 62 | APPS = { |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame^] | 63 | 'startup_hacks' : { |
| 64 | 'system_state' : 'BASE_APPS', |
| 65 | 'start_process' : True, |
| 66 | 'monitor_process' : False, |
| 67 | 'process_name' : 'startup_hacks.sh', |
| 68 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 69 | 'bmc_init' : { |
| 70 | 'system_state' : 'BMC_INIT', |
| 71 | 'start_process' : True, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 72 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 73 | 'process_name' : 'control_bmc_barreleye.exe', |
| 74 | }, |
| 75 | 'inventory' : { |
| 76 | 'system_state' : 'BMC_STARTING', |
| 77 | 'start_process' : True, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 78 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 79 | 'process_name' : 'inventory_items.py', |
| 80 | 'args' : [ SYSTEM_NAME ] |
| 81 | }, |
| 82 | 'pcie_present' : { |
| 83 | 'system_state' : 'HOST_POWERED_ON', |
| 84 | 'start_process' : True, |
| 85 | 'monitor_process' : False, |
| 86 | 'process_name' : 'pcie_slot_present.exe', |
| 87 | }, |
| 88 | 'virtual_sensors' : { |
| 89 | 'system_state' : 'BMC_STARTING', |
| 90 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 91 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 92 | 'process_name' : 'sensors_virtual_p8.py', |
| 93 | }, |
| 94 | 'sensor_manager' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 95 | 'system_state' : 'BASE_APPS', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 96 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 97 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 98 | 'process_name' : 'sensor_manager.py', |
| 99 | 'args' : [ SYSTEM_NAME ] |
| 100 | }, |
| 101 | 'host_watchdog' : { |
| 102 | 'system_state' : 'BMC_STARTING', |
| 103 | 'start_process' : True, |
| 104 | 'monitor_process' : True, |
| 105 | 'process_name' : 'host_watchdog.exe', |
| 106 | }, |
| 107 | 'power_control' : { |
| 108 | 'system_state' : 'BMC_STARTING', |
| 109 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 110 | 'monitor_process' : True, |
Norman James | 5d78b4d | 2015-09-05 13:34:34 -0500 | [diff] [blame] | 111 | 'process_name' : 'power_control.exe', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 112 | 'args' : [ '3000', '10' ] |
| 113 | }, |
| 114 | 'power_button' : { |
| 115 | 'system_state' : 'BMC_STARTING', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 116 | 'start_process' : False, |
| 117 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 118 | 'process_name' : 'button_power.exe', |
| 119 | }, |
| 120 | 'led_control' : { |
| 121 | 'system_state' : 'BMC_STARTING', |
| 122 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 123 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 124 | 'process_name' : 'led_controller.exe', |
| 125 | }, |
| 126 | 'flash_control' : { |
| 127 | 'system_state' : 'BMC_STARTING', |
| 128 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 129 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 130 | 'process_name' : 'flash_bios.exe', |
| 131 | }, |
| 132 | 'download_manager' : { |
| 133 | 'system_state' : 'BMC_STARTING', |
| 134 | 'start_process' : True, |
Norman James | 8c6d838 | 2015-10-06 07:47:16 -0500 | [diff] [blame] | 135 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 136 | 'process_name' : 'download_manager.py', |
| 137 | 'args' : [ SYSTEM_NAME ] |
| 138 | }, |
| 139 | 'host_control' : { |
| 140 | 'system_state' : 'BMC_STARTING', |
| 141 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 142 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 143 | 'process_name' : 'control_host.exe', |
| 144 | }, |
| 145 | 'chassis_control' : { |
| 146 | 'system_state' : 'BMC_STARTING', |
| 147 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 148 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 149 | 'process_name' : 'chassis_control.py', |
| 150 | }, |
| 151 | 'fans' : { |
| 152 | 'system_state' : 'BMC_STARTING', |
| 153 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 154 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 155 | 'process_name' : 'fan.exe', |
| 156 | 'args' : [ 'fan0','fan1','fan2','fan3','fan4' ] |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 157 | } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 158 | } |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 159 | |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 160 | CACHED_INTERFACES = { |
| 161 | "org.openbmc.InventoryItem" : True, |
| 162 | "org.openbmc.control.Chassis" : True, |
| 163 | } |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 164 | INVENTORY_ROOT = '/org/openbmc/inventory' |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 165 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 166 | FRU_INSTANCES = { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 167 | '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 168 | |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 169 | '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
| 170 | |
| 171 | '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, |
| 172 | '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, }, |
| 173 | |
| 174 | |
| 175 | '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 176 | '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 177 | '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 178 | '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 179 | '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 180 | |
| 181 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' }, |
| 182 | |
| 183 | '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 184 | '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 185 | |
| 186 | '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 187 | '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 188 | '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 189 | '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 190 | '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 191 | '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 192 | '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 193 | '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 194 | '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 195 | '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 196 | '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 197 | '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 198 | |
| 199 | '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 200 | '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 201 | '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 202 | '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 203 | '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 204 | '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 205 | '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 206 | '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 207 | '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 208 | '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 209 | '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 210 | '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 211 | |
| 212 | '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 213 | '<inventory_root>/system/chassis/motherboard/centaur1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 214 | '<inventory_root>/system/chassis/motherboard/centaur2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 215 | '<inventory_root>/system/chassis/motherboard/centaur3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 216 | '<inventory_root>/system/chassis/motherboard/centaur4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 217 | '<inventory_root>/system/chassis/motherboard/centaur5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 218 | '<inventory_root>/system/chassis/motherboard/centaur6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 219 | '<inventory_root>/system/chassis/motherboard/centaur7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 220 | |
| 221 | '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 222 | '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 223 | '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 224 | '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 225 | '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 226 | '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 227 | '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 228 | '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 229 | '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 230 | '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 231 | '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 232 | '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 233 | '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 234 | '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 235 | '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 236 | '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 237 | '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 238 | '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 239 | '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 240 | '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 241 | '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 242 | '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 243 | '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 244 | '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 245 | '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 246 | '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 247 | '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 248 | '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 249 | '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 250 | '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 251 | '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 252 | '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 253 | |
| 254 | '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
| 255 | '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
| 256 | '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 257 | '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 258 | '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 259 | '<inventory_root>/system/chassis/io_board/pcie_mezz1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 260 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 261 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 262 | |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 263 | ID_LOOKUP = { |
| 264 | 'FRU' : { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 265 | 0x0d : '<inventory_root>/system/chassis', |
| 266 | 0x34 : '<inventory_root>/system/chassis/motherboard', |
| 267 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 268 | 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 269 | 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 270 | 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 271 | 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 272 | 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3', |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 273 | 0x35 : '<inventory_root>/system', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 274 | }, |
| 275 | 'FRU_STR' : { |
| 276 | 'PRODUCT_15' : '<inventory_root>/system', |
| 277 | 'CHASSIS_2' : '<inventory_root>/system/chassis', |
| 278 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 279 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 280 | 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 281 | 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 282 | 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 283 | 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 284 | }, |
| 285 | 'SENSOR' : { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 286 | 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 287 | 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0', |
| 288 | 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1', |
| 289 | 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2', |
| 290 | 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3', |
| 291 | 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4', |
| 292 | 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5', |
| 293 | 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6', |
| 294 | 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7', |
| 295 | 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8', |
| 296 | 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9', |
| 297 | 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10', |
| 298 | 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11', |
| 299 | 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 300 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 301 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 302 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 303 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 304 | 0x09 : '/org/openbmc/sensor/virtual/BootCount', |
| 305 | 0x05 : '/org/openbmc/sensor/virtual/BootProgress', |
| 306 | 0x04 : '/org/openbmc/sensor/virtual/HostStatus', |
| 307 | 0x08 : '/org/openbmc/sensor/virtual/OccStatus', |
| 308 | 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 309 | }, |
| 310 | 'GPIO_PRESENT' : { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 311 | 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', |
| 312 | 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 313 | } |
| 314 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 315 | |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 316 | GPIO_CONFIG = {} |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 317 | GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } |
| 318 | GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } |
| 319 | GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } |
| 320 | GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } |
| 321 | GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } |
| 322 | GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 323 | GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R5', 'direction': 'out' } |
| 324 | GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'H2', 'direction': 'out' } |
| 325 | GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } |
Norman James | e62f445 | 2015-10-31 17:33:10 -0500 | [diff] [blame] | 326 | GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } |
| 327 | GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 328 | GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } |
| 329 | GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } |
| 330 | GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } |
| 331 | GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } |
| 332 | GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } |
| 333 | GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } |
| 334 | GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } |
| 335 | GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 336 | |
| 337 | def convertGpio(name): |
| 338 | name = name.upper() |
| 339 | c = name[0:1] |
| 340 | offset = int(name[1:]) |
| 341 | a = ord(c)-65 |
| 342 | base = a*8+GPIO_BASE |
| 343 | return base+offset |
| 344 | |
| 345 | |
| 346 | |