Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 1 | #! /usr/bin/python |
| 2 | |
Norman James | c9239a3 | 2015-10-06 16:54:31 -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 | 25d80dd | 2015-10-08 07:02:25 -0500 | [diff] [blame] | 5 | FLASH_DOWNLOAD_PATH = "/tmp" |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 6 | GPIO_BASE = 320 |
Norman James | 969227c | 2015-10-08 15:10:47 -0500 | [diff] [blame] | 7 | SYSTEM_NAME = "Palmetto" |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 8 | |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 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 | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 14 | SYSTEM_STATES = [ |
Norman James | b714eb2 | 2015-10-26 17:12:57 -0500 | [diff] [blame] | 15 | 'BASE_APPS', |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -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 | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 23 | 'HOST_POWERED_DOWN', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 24 | ] |
| 25 | |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 26 | EXIT_STATE_DEPEND = { |
Norman James | b714eb2 | 2015-10-26 17:12:57 -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 | b714eb2 | 2015-10-26 17:12:57 -0500 | [diff] [blame] | 29 | }, |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -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 | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 36 | } |
| 37 | } |
| 38 | |
| 39 | ## method will be called when state is entered |
Norman James | c9239a3 | 2015-10-06 16:54:31 -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 | a3e47c4 | 2015-10-18 14:43:10 -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 | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 59 | } |
| 60 | } |
| 61 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 62 | APPS = { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 63 | 'bmc_init' : { |
| 64 | 'system_state' : 'BMC_INIT', |
| 65 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 66 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 67 | 'process_name' : 'control_bmc.exe', |
| 68 | }, |
| 69 | 'inventory' : { |
| 70 | 'system_state' : 'BMC_STARTING', |
| 71 | 'start_process' : True, |
Norman James | 0ee6192 | 2015-10-14 09:39:11 -0500 | [diff] [blame] | 72 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 73 | 'process_name' : 'inventory_items.py', |
| 74 | 'args' : [ SYSTEM_NAME ] |
| 75 | }, |
| 76 | 'pcie_present' : { |
| 77 | 'system_state' : 'HOST_POWERED_ON', |
| 78 | 'start_process' : True, |
| 79 | 'monitor_process' : False, |
| 80 | 'process_name' : 'pcie_slot_present.exe', |
| 81 | }, |
| 82 | 'virtual_sensors' : { |
| 83 | 'system_state' : 'BMC_STARTING', |
| 84 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 85 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 86 | 'process_name' : 'sensors_virtual_p8.py', |
| 87 | }, |
| 88 | 'sensor_manager' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 89 | 'system_state' : 'BASE_APPS', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 90 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 91 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 92 | 'process_name' : 'sensor_manager.py', |
| 93 | 'args' : [ SYSTEM_NAME ] |
| 94 | }, |
| 95 | 'host_watchdog' : { |
| 96 | 'system_state' : 'BMC_STARTING', |
| 97 | 'start_process' : True, |
| 98 | 'monitor_process' : True, |
| 99 | 'process_name' : 'host_watchdog.exe', |
| 100 | }, |
| 101 | 'power_control' : { |
| 102 | 'system_state' : 'BMC_STARTING', |
| 103 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 104 | 'monitor_process' : True, |
| 105 | 'process_name' : 'power_control.exe', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 106 | 'args' : [ '3000', '10' ] |
| 107 | }, |
| 108 | 'power_button' : { |
| 109 | 'system_state' : 'BMC_STARTING', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 110 | 'start_process' : False, |
| 111 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 112 | 'process_name' : 'button_power.exe', |
| 113 | }, |
| 114 | 'led_control' : { |
| 115 | 'system_state' : 'BMC_STARTING', |
| 116 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 117 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 118 | 'process_name' : 'led_controller.exe', |
| 119 | }, |
| 120 | 'flash_control' : { |
| 121 | 'system_state' : 'BMC_STARTING', |
| 122 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 123 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 124 | 'process_name' : 'flash_bios.exe', |
| 125 | }, |
| 126 | 'download_manager' : { |
| 127 | 'system_state' : 'BMC_STARTING', |
| 128 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 129 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 130 | 'process_name' : 'download_manager.py', |
| 131 | 'args' : [ SYSTEM_NAME ] |
| 132 | }, |
| 133 | 'host_control' : { |
| 134 | 'system_state' : 'BMC_STARTING', |
| 135 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 136 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 137 | 'process_name' : 'control_host.exe', |
| 138 | }, |
| 139 | 'chassis_control' : { |
| 140 | 'system_state' : 'BMC_STARTING', |
| 141 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 142 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 143 | 'process_name' : 'chassis_control.py', |
| 144 | }, |
| 145 | 'fans' : { |
| 146 | 'system_state' : 'BMC_STARTING', |
| 147 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 148 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 149 | 'process_name' : 'fan.exe', |
| 150 | 'args' : [ 'fan0','fan1','fan2','fan3','fan4' ] |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 151 | } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 152 | } |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 153 | |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 154 | CACHED_INTERFACES = { |
| 155 | "org.openbmc.InventoryItem" : True, |
| 156 | "org.openbmc.control.Chassis" : True, |
| 157 | } |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 158 | INVENTORY_ROOT = '/org/openbmc/inventory' |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 159 | |
| 160 | FRU_INSTANCES = { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 161 | '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
| 162 | '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
| 163 | '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 164 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 165 | '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 166 | '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 167 | '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 168 | '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 169 | '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 170 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 171 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 172 | 'manufacturer' : 'ASPEED' }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 173 | '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 174 | '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 175 | '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 176 | '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 177 | '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 178 | '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 179 | '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 180 | '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 181 | '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 182 | '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 183 | '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 184 | '<inventory_root>/system/chassis/motherboard/cpu0/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 185 | '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 186 | |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 187 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 188 | '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 189 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 190 | '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 191 | '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 192 | '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 193 | '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 194 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 195 | '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 196 | '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 197 | |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 198 | } |
| 199 | |
| 200 | ID_LOOKUP = { |
| 201 | 'FRU' : { |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 202 | 0x0d : '<inventory_root>/system/chassis', |
| 203 | 0x34 : '<inventory_root>/system/chassis/motherboard', |
| 204 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 205 | 0x02 : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 206 | 0x03 : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 207 | 0x04 : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 208 | 0x05 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 209 | 0x06 : '<inventory_root>/system/chassis/motherboard/dimm3', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 210 | 0x35 : '<inventory_root>/system', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 211 | }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 212 | 'FRU_STR' : { |
Norman James | fe635e8 | 2015-10-20 07:47:22 -0500 | [diff] [blame] | 213 | 'PRODUCT_15' : '<inventory_root>/system', |
| 214 | 'CHASSIS_2' : '<inventory_root>/system/chassis', |
| 215 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 216 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 217 | 'PRODUCT_3' : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 218 | 'PRODUCT_4' : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 219 | 'PRODUCT_5' : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 220 | 'PRODUCT_6' : '<inventory_root>/system/chassis/motherboard/dimm3', |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 221 | }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 222 | 'SENSOR' : { |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 223 | 0x2f : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 224 | 0x22 : '<inventory_root>/system/chassis/motherboard/cpu0/core0', |
| 225 | 0x23 : '<inventory_root>/system/chassis/motherboard/cpu0/core1', |
| 226 | 0x24 : '<inventory_root>/system/chassis/motherboard/cpu0/core2', |
| 227 | 0x25 : '<inventory_root>/system/chassis/motherboard/cpu0/core3', |
| 228 | 0x26 : '<inventory_root>/system/chassis/motherboard/cpu0/core4', |
| 229 | 0x27 : '<inventory_root>/system/chassis/motherboard/cpu0/core5', |
| 230 | 0x28 : '<inventory_root>/system/chassis/motherboard/cpu0/core6', |
| 231 | 0x29 : '<inventory_root>/system/chassis/motherboard/cpu0/core7', |
| 232 | 0x2a : '<inventory_root>/system/chassis/motherboard/cpu0/core8', |
| 233 | 0x2b : '<inventory_root>/system/chassis/motherboard/cpu0/core9', |
| 234 | 0x2c : '<inventory_root>/system/chassis/motherboard/cpu0/core10', |
| 235 | 0x2d : '<inventory_root>/system/chassis/motherboard/cpu0/core11', |
| 236 | 0x2e : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 237 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 238 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 239 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 240 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm3', |
Norman James | 0ee6192 | 2015-10-14 09:39:11 -0500 | [diff] [blame] | 241 | 0x09 : '/org/openbmc/sensor/virtual/BootCount', |
| 242 | 0x05 : '/org/openbmc/sensor/virtual/BootProgress', |
| 243 | 0x04 : '/org/openbmc/sensor/virtual/HostStatus', |
| 244 | 0x08 : '/org/openbmc/sensor/virtual/OccStatus', |
| 245 | 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 246 | }, |
| 247 | 'GPIO_PRESENT' : { |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 248 | 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', |
| 249 | 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | |
| 253 | GPIO_CONFIG = {} |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 254 | GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } |
| 255 | GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } |
| 256 | GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } |
| 257 | GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } |
| 258 | GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } |
| 259 | GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } |
| 260 | GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R4', 'direction': 'out' } |
| 261 | GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'R4', 'direction': 'out' } |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 262 | GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } |
Norman James | e62f445 | 2015-10-31 17:33:10 -0500 | [diff] [blame] | 263 | GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } |
| 264 | GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 265 | GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } |
| 266 | GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } |
| 267 | GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } |
| 268 | GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } |
| 269 | GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } |
| 270 | GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } |
| 271 | GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } |
| 272 | GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 273 | |
Norman James | 6bbe0b5 | 2015-10-27 09:18:05 -0500 | [diff] [blame] | 274 | def convertGpio(name): |
| 275 | name = name.upper() |
| 276 | c = name[0:1] |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 277 | offset = int(name[1:]) |
Norman James | 6bbe0b5 | 2015-10-27 09:18:05 -0500 | [diff] [blame] | 278 | a = ord(c)-65 |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 279 | base = a*8+GPIO_BASE |
Norman James | 6bbe0b5 | 2015-10-27 09:18:05 -0500 | [diff] [blame] | 280 | return base+offset |
| 281 | |
| 282 | |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 283 | |