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', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 18 | 'BMC_STARTING2', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 19 | 'BMC_READY', |
| 20 | 'HOST_POWERING_ON', |
| 21 | 'HOST_POWERED_ON', |
| 22 | 'HOST_BOOTING', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 23 | 'HOST_BOOTED', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 24 | 'HOST_POWERED_DOWN', |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 25 | ] |
| 26 | |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 27 | EXIT_STATE_DEPEND = { |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 28 | 'BASE_APPS' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 29 | '/org/openbmc/sensors': 0, |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 30 | }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 31 | 'BMC_STARTING' : { |
| 32 | '/org/openbmc/control/chassis0': 0, |
| 33 | '/org/openbmc/control/power0' : 0, |
| 34 | '/org/openbmc/control/led/BMC_READY' : 0, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 35 | '/org/openbmc/control/host0' : 0, |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 36 | '/org/openbmc/control/flash/bios' : 0, |
Norman James | 67b3bcc | 2015-11-11 10:41:38 -0600 | [diff] [blame] | 37 | '/org/openbmc/sensors/speed/fan5': 0, |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 38 | }, |
| 39 | 'BMC_STARTING2' : { |
| 40 | '/org/openbmc/control/fans' : 0, |
| 41 | }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | ## method will be called when state is entered |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 45 | ENTER_STATE_CALLBACK = { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 46 | 'HOST_POWERED_ON' : { |
| 47 | 'boot' : { |
| 48 | 'bus_name' : 'org.openbmc.control.Host', |
| 49 | 'obj_name' : '/org/openbmc/control/host0', |
| 50 | 'interface_name' : 'org.openbmc.control.Host', |
Norman James | 0ca72fb | 2015-11-10 10:39:36 -0600 | [diff] [blame] | 51 | }, |
| 52 | 'setMax' : { |
| 53 | 'bus_name' : 'org.openbmc.control.Fans', |
| 54 | 'obj_name' : '/org/openbmc/control/fans', |
| 55 | 'interface_name' : 'org.openbmc.control.Fans', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 56 | } |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 57 | }, |
| 58 | 'BMC_READY' : { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 59 | 'setOn' : { |
| 60 | 'bus_name' : 'org.openbmc.control.led', |
| 61 | 'obj_name' : '/org/openbmc/control/led/BMC_READY', |
| 62 | 'interface_name' : 'org.openbmc.Led', |
| 63 | }, |
| 64 | 'init' : { |
| 65 | 'bus_name' : 'org.openbmc.control.Flash', |
| 66 | 'obj_name' : '/org/openbmc/control/flash/bios', |
| 67 | 'interface_name' : 'org.openbmc.Flash', |
| 68 | }, |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 69 | } |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 70 | } |
| 71 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 72 | APPS = { |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 73 | 'startup_hacks' : { |
| 74 | 'system_state' : 'BASE_APPS', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 75 | 'start_process' : True, |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 76 | 'monitor_process' : False, |
Norman James | 67b3bcc | 2015-11-11 10:41:38 -0600 | [diff] [blame] | 77 | 'process_name' : 'startup_hacks.sh', |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 78 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 79 | 'bmc_init' : { |
| 80 | 'system_state' : 'BMC_INIT', |
| 81 | 'start_process' : True, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 82 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 83 | 'process_name' : 'control_bmc_barreleye.exe', |
| 84 | }, |
| 85 | 'inventory' : { |
| 86 | 'system_state' : 'BMC_STARTING', |
| 87 | 'start_process' : True, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 88 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 89 | 'process_name' : 'inventory_items.py', |
| 90 | 'args' : [ SYSTEM_NAME ] |
| 91 | }, |
| 92 | 'pcie_present' : { |
| 93 | 'system_state' : 'HOST_POWERED_ON', |
| 94 | 'start_process' : True, |
| 95 | 'monitor_process' : False, |
| 96 | 'process_name' : 'pcie_slot_present.exe', |
| 97 | }, |
Norman James | 0ca72fb | 2015-11-10 10:39:36 -0600 | [diff] [blame] | 98 | 'fan_control' : { |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 99 | 'system_state' : 'BMC_STARTING2', |
Norman James | 0ca72fb | 2015-11-10 10:39:36 -0600 | [diff] [blame] | 100 | 'start_process' : True, |
| 101 | 'monitor_process' : True, |
| 102 | 'process_name' : 'fan_control.py', |
| 103 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 104 | 'virtual_sensors' : { |
| 105 | 'system_state' : 'BMC_STARTING', |
| 106 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 107 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 108 | 'process_name' : 'sensors_virtual_p8.py', |
| 109 | }, |
| 110 | 'sensor_manager' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 111 | 'system_state' : 'BASE_APPS', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 112 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 113 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 114 | 'process_name' : 'sensor_manager.py', |
| 115 | 'args' : [ SYSTEM_NAME ] |
| 116 | }, |
| 117 | 'host_watchdog' : { |
| 118 | 'system_state' : 'BMC_STARTING', |
| 119 | 'start_process' : True, |
| 120 | 'monitor_process' : True, |
| 121 | 'process_name' : 'host_watchdog.exe', |
| 122 | }, |
| 123 | 'power_control' : { |
| 124 | 'system_state' : 'BMC_STARTING', |
| 125 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 126 | 'monitor_process' : True, |
Norman James | 5d78b4d | 2015-09-05 13:34:34 -0500 | [diff] [blame] | 127 | 'process_name' : 'power_control.exe', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 128 | 'args' : [ '3000', '10' ] |
| 129 | }, |
| 130 | 'power_button' : { |
| 131 | 'system_state' : 'BMC_STARTING', |
Ken | 871ef74 | 2015-11-06 11:22:52 +0800 | [diff] [blame] | 132 | 'start_process' : True, |
| 133 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 134 | 'process_name' : 'button_power.exe', |
| 135 | }, |
| 136 | 'led_control' : { |
| 137 | 'system_state' : 'BMC_STARTING', |
| 138 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 139 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 140 | 'process_name' : 'led_controller.exe', |
| 141 | }, |
| 142 | 'flash_control' : { |
| 143 | 'system_state' : 'BMC_STARTING', |
| 144 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 145 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 146 | 'process_name' : 'flash_bios.exe', |
| 147 | }, |
| 148 | 'download_manager' : { |
| 149 | 'system_state' : 'BMC_STARTING', |
| 150 | 'start_process' : True, |
Norman James | 8c6d838 | 2015-10-06 07:47:16 -0500 | [diff] [blame] | 151 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 152 | 'process_name' : 'download_manager.py', |
| 153 | 'args' : [ SYSTEM_NAME ] |
| 154 | }, |
| 155 | 'host_control' : { |
| 156 | 'system_state' : 'BMC_STARTING', |
| 157 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 158 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 159 | 'process_name' : 'control_host.exe', |
| 160 | }, |
| 161 | 'chassis_control' : { |
| 162 | 'system_state' : 'BMC_STARTING', |
| 163 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 164 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 165 | 'process_name' : 'chassis_control.py', |
| 166 | }, |
Norman James | 2741ba9 | 2015-11-06 05:31:53 -0600 | [diff] [blame] | 167 | 'hwmon_barreleye' : { |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 168 | 'system_state' : 'BMC_STARTING', |
| 169 | 'start_process' : True, |
| 170 | 'monitor_process' : True, |
Norman James | 2741ba9 | 2015-11-06 05:31:53 -0600 | [diff] [blame] | 171 | 'process_name' : 'hwmons_barreleye.exe', |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 172 | } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 173 | } |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 174 | |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 175 | CACHED_INTERFACES = { |
| 176 | "org.openbmc.InventoryItem" : True, |
| 177 | "org.openbmc.control.Chassis" : True, |
| 178 | } |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 179 | INVENTORY_ROOT = '/org/openbmc/inventory' |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 180 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 181 | FRU_INSTANCES = { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 182 | '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 183 | |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 184 | '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, }, |
| 185 | |
| 186 | '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, |
| 187 | '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, }, |
| 188 | |
| 189 | |
| 190 | '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 191 | '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 192 | '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 193 | '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 194 | '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 195 | |
| 196 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' }, |
| 197 | |
| 198 | '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 199 | '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 200 | |
| 201 | '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 202 | '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 203 | '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 204 | '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 205 | '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 206 | '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 207 | '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 208 | '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 209 | '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 210 | '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 211 | '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 212 | '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 213 | |
| 214 | '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 215 | '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 216 | '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 217 | '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 218 | '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 219 | '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 220 | '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 221 | '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 222 | '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 223 | '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 224 | '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 225 | '<inventory_root>/system/chassis/motherboard/cpu0/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 226 | |
| 227 | '<inventory_root>/system/chassis/motherboard/centaur0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 228 | '<inventory_root>/system/chassis/motherboard/centaur1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 229 | '<inventory_root>/system/chassis/motherboard/centaur2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 230 | '<inventory_root>/system/chassis/motherboard/centaur3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 231 | '<inventory_root>/system/chassis/motherboard/centaur4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 232 | '<inventory_root>/system/chassis/motherboard/centaur5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 233 | '<inventory_root>/system/chassis/motherboard/centaur6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 234 | '<inventory_root>/system/chassis/motherboard/centaur7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 235 | |
| 236 | '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 237 | '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 238 | '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 239 | '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 240 | '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 241 | '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 242 | '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 243 | '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 244 | '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 245 | '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 246 | '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 247 | '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 248 | '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 249 | '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 250 | '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 251 | '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 252 | '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 253 | '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 254 | '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 255 | '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 256 | '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 257 | '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 258 | '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 259 | '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 260 | '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 261 | '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 262 | '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 263 | '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 264 | '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 265 | '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 266 | '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 267 | '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 268 | |
| 269 | '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
| 270 | '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
| 271 | '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 272 | '<inventory_root>/system/chassis/io_board/pcie_slot1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 273 | '<inventory_root>/system/chassis/io_board/pcie_slot2' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 274 | '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 275 | '<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] | 276 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 277 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 278 | |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 279 | ID_LOOKUP = { |
| 280 | 'FRU' : { |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 281 | 0x03 : '<inventory_root>/system/chassis/motherboard', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 282 | 0x40 : '<inventory_root>/system/chassis/io_board', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 283 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 284 | 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 285 | 0x04 : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 286 | 0x05 : '<inventory_root>/system/chassis/motherboard/centaur1', |
| 287 | 0x06 : '<inventory_root>/system/chassis/motherboard/centaur2', |
| 288 | 0x07 : '<inventory_root>/system/chassis/motherboard/centaur3', |
| 289 | 0x08 : '<inventory_root>/system/chassis/motherboard/centaur4', |
| 290 | 0x09 : '<inventory_root>/system/chassis/motherboard/centaur5', |
| 291 | 0x0a : '<inventory_root>/system/chassis/motherboard/centaur6', |
| 292 | 0x0b : '<inventory_root>/system/chassis/motherboard/centaur7', |
| 293 | 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 294 | 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 295 | 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 296 | 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 297 | 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 298 | 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 299 | 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 300 | 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 301 | 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 302 | 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 303 | 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 304 | 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 305 | 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 306 | 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 307 | 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 308 | 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 309 | 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 310 | 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 311 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 312 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 313 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 314 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 315 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 316 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 317 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 318 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 319 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 320 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 321 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 322 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 323 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 324 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31', |
| 325 | 0x33 : '<inventory_root>/system', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 326 | }, |
| 327 | 'FRU_STR' : { |
| 328 | 'PRODUCT_15' : '<inventory_root>/system', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 329 | 'CHASSIS_2' : '<inventory_root>/system/chassis', |
| 330 | 'BOARD_64' : '<inventory_root>/system/chassis/io_board', |
| 331 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 332 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 333 | 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 334 | 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/centaur1', |
| 335 | 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/centaur2', |
| 336 | 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/centaur3', |
| 337 | 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/centaur4', |
| 338 | 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/centaur5', |
| 339 | 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/centaur6', |
| 340 | 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/centaur7', |
| 341 | 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 342 | 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 343 | 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 344 | 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 345 | 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 346 | 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 347 | 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 348 | 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 349 | 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 350 | 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 351 | 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 352 | 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 353 | 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 354 | 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 355 | 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 356 | 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 357 | 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 358 | 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 359 | 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 360 | 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 361 | 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 362 | 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 363 | 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 364 | 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 365 | 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 366 | 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 367 | 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 368 | 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 369 | 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 370 | 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 371 | 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 372 | 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 373 | }, |
| 374 | 'SENSOR' : { |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 375 | 0x35 : '<inventory_root>/system', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 376 | 0x34 : '<inventory_root>/system/chassis/motherboard', |
| 377 | 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 378 | 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 379 | 0xc8 : '<inventory_root>/system/chassis/motherboard/cpu0/core0', |
| 380 | 0xc9 : '<inventory_root>/system/chassis/motherboard/cpu0/core1', |
| 381 | 0xca : '<inventory_root>/system/chassis/motherboard/cpu0/core2', |
| 382 | 0xcb : '<inventory_root>/system/chassis/motherboard/cpu0/core3', |
| 383 | 0xcc : '<inventory_root>/system/chassis/motherboard/cpu0/core4', |
| 384 | 0xcd : '<inventory_root>/system/chassis/motherboard/cpu0/core5', |
| 385 | 0xce : '<inventory_root>/system/chassis/motherboard/cpu0/core6', |
| 386 | 0xcf : '<inventory_root>/system/chassis/motherboard/cpu0/core7', |
| 387 | 0xd0 : '<inventory_root>/system/chassis/motherboard/cpu0/core8', |
| 388 | 0xd1 : '<inventory_root>/system/chassis/motherboard/cpu0/core9', |
| 389 | 0xd2 : '<inventory_root>/system/chassis/motherboard/cpu0/core10', |
| 390 | 0xd3 : '<inventory_root>/system/chassis/motherboard/cpu0/core11', |
| 391 | 0xd4 : '<inventory_root>/system/chassis/motherboard/cpu0/core12', |
| 392 | 0xd5 : '<inventory_root>/system/chassis/motherboard/cpu0/core13', |
| 393 | 0xd6 : '<inventory_root>/system/chassis/motherboard/cpu0/core14', |
| 394 | 0xd7 : '<inventory_root>/system/chassis/motherboard/cpu0/core15', |
| 395 | 0xd8 : '<inventory_root>/system/chassis/motherboard/cpu0/core16', |
| 396 | 0xd9 : '<inventory_root>/system/chassis/motherboard/cpu0/core17', |
| 397 | 0xda : '<inventory_root>/system/chassis/motherboard/cpu0/core18', |
| 398 | 0xdb : '<inventory_root>/system/chassis/motherboard/cpu0/core19', |
| 399 | 0xdc : '<inventory_root>/system/chassis/motherboard/cpu0/core20', |
| 400 | 0xdd : '<inventory_root>/system/chassis/motherboard/cpu0/core21', |
| 401 | 0xde : '<inventory_root>/system/chassis/motherboard/cpu0/core22', |
| 402 | 0xdf : '<inventory_root>/system/chassis/motherboard/cpu0/core23', |
| 403 | 0x40 : '<inventory_root>/system/chassis/motherboard/centaur0', |
| 404 | 0x41 : '<inventory_root>/system/chassis/motherboard/centaur1', |
| 405 | 0x42 : '<inventory_root>/system/chassis/motherboard/centaur2', |
| 406 | 0x43 : '<inventory_root>/system/chassis/motherboard/centaur3', |
| 407 | 0x44 : '<inventory_root>/system/chassis/motherboard/centaur4', |
| 408 | 0x45 : '<inventory_root>/system/chassis/motherboard/centaur5', |
| 409 | 0x46 : '<inventory_root>/system/chassis/motherboard/centaur6', |
| 410 | 0x47 : '<inventory_root>/system/chassis/motherboard/centaur7', |
| 411 | 0x10 : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 412 | 0x11 : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 413 | 0x12 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 414 | 0x13 : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 415 | 0x14 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 416 | 0x15 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 417 | 0x16 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 418 | 0x17 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 419 | 0x18 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 420 | 0x19 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 421 | 0x1a : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 422 | 0x1b : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 423 | 0x1c : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 424 | 0x1d : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 425 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 426 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 427 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 428 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 429 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 430 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 431 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 432 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 433 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 434 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 435 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 436 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 437 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 438 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 439 | 0x2c : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 440 | 0x2d : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 441 | 0x2e : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 442 | 0x2f : '<inventory_root>/system/chassis/motherboard/dimm31', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 443 | 0x09 : '/org/openbmc/sensor/virtual/BootCount', |
| 444 | 0x05 : '/org/openbmc/sensor/virtual/BootProgress', |
| 445 | 0x04 : '/org/openbmc/sensor/virtual/HostStatus', |
| 446 | 0x08 : '/org/openbmc/sensor/virtual/OccStatus', |
| 447 | 0x32 : '/org/openbmc/sensor/virtual/OperatingSystemStatus', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 448 | }, |
| 449 | 'GPIO_PRESENT' : { |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 450 | 'SLOT0_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0_riser', |
| 451 | 'SLOT1_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1_riser', |
| 452 | 'SLOT2_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2_riser', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 453 | 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', |
| 454 | 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 455 | 'SLOT2_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 456 | 'MEZZ0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz0', |
| 457 | 'MEZZ1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz1', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 458 | } |
| 459 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 460 | |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 461 | GPIO_CONFIG = {} |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 462 | GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } |
| 463 | GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } |
| 464 | GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } |
| 465 | GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } |
| 466 | GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } |
| 467 | GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 468 | GPIO_CONFIG['IDENTIFY'] = { 'gpio_pin': 'R5', 'direction': 'out' } |
| 469 | GPIO_CONFIG['BMC_READY'] = { 'gpio_pin': 'H2', 'direction': 'out' } |
| 470 | GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } |
Norman James | e62f445 | 2015-10-31 17:33:10 -0500 | [diff] [blame] | 471 | GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } |
| 472 | GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 473 | GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } |
| 474 | GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } |
| 475 | GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } |
| 476 | GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } |
| 477 | GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } |
| 478 | GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } |
| 479 | GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } |
| 480 | GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 481 | |
| 482 | def convertGpio(name): |
| 483 | name = name.upper() |
| 484 | c = name[0:1] |
| 485 | offset = int(name[1:]) |
| 486 | a = ord(c)-65 |
| 487 | base = a*8+GPIO_BASE |
| 488 | return base+offset |
| 489 | |
| 490 | |
| 491 | |