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 | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 4 | GPIO_BASE = 320 |
Norman James | 969227c | 2015-10-08 15:10:47 -0500 | [diff] [blame] | 5 | SYSTEM_NAME = "Palmetto" |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 6 | |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 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 |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 12 | SYSTEM_STATES = [ |
Norman James | b714eb2 | 2015-10-26 17:12:57 -0500 | [diff] [blame] | 13 | 'BASE_APPS', |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 14 | 'BMC_STARTING', |
| 15 | 'BMC_READY', |
| 16 | 'HOST_POWERING_ON', |
| 17 | 'HOST_POWERED_ON', |
| 18 | 'HOST_BOOTING', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 19 | 'HOST_BOOTED', |
Adriana Kobylak | c5a1605 | 2016-03-01 14:29:47 -0600 | [diff] [blame] | 20 | 'HOST_POWERED_OFF', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 21 | ] |
| 22 | |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 23 | EXIT_STATE_DEPEND = { |
Norman James | b714eb2 | 2015-10-26 17:12:57 -0500 | [diff] [blame] | 24 | 'BASE_APPS' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 25 | '/org/openbmc/sensors': 0, |
Norman James | b714eb2 | 2015-10-26 17:12:57 -0500 | [diff] [blame] | 26 | }, |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 27 | 'BMC_STARTING' : { |
| 28 | '/org/openbmc/control/chassis0': 0, |
| 29 | '/org/openbmc/control/power0' : 0, |
Adriana Kobylak | 9c75104 | 2016-02-09 13:44:32 -0600 | [diff] [blame] | 30 | '/org/openbmc/control/led/identify' : 0, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 31 | '/org/openbmc/control/host0' : 0, |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 32 | '/org/openbmc/control/flash/bios' : 0, |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 33 | } |
| 34 | } |
| 35 | |
| 36 | ## method will be called when state is entered |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 37 | ENTER_STATE_CALLBACK = { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 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 | } |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 44 | }, |
| 45 | 'BMC_READY' : { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 46 | 'setOn' : { |
| 47 | 'bus_name' : 'org.openbmc.control.led', |
Adriana Kobylak | 9c75104 | 2016-02-09 13:44:32 -0600 | [diff] [blame] | 48 | 'obj_name' : '/org/openbmc/control/led/identify', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 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 | }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 56 | } |
| 57 | } |
| 58 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 59 | APPS = { |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 60 | 'startup_hacks' : { |
| 61 | 'system_state' : 'BASE_APPS', |
| 62 | 'start_process' : True, |
| 63 | 'monitor_process' : False, |
| 64 | 'process_name' : 'startup_hacks.sh', |
| 65 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 66 | 'inventory' : { |
| 67 | 'system_state' : 'BMC_STARTING', |
| 68 | 'start_process' : True, |
Norman James | 0ee6192 | 2015-10-14 09:39:11 -0500 | [diff] [blame] | 69 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 70 | 'process_name' : 'inventory_items.py', |
| 71 | 'args' : [ SYSTEM_NAME ] |
| 72 | }, |
| 73 | 'pcie_present' : { |
| 74 | 'system_state' : 'HOST_POWERED_ON', |
Norman James | d98932a | 2015-11-09 10:59:22 -0600 | [diff] [blame] | 75 | 'start_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 76 | 'monitor_process' : False, |
| 77 | 'process_name' : 'pcie_slot_present.exe', |
| 78 | }, |
| 79 | 'virtual_sensors' : { |
| 80 | 'system_state' : 'BMC_STARTING', |
| 81 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 82 | 'monitor_process' : True, |
Chris Austen | 3ac1227 | 2015-12-10 12:24:56 -0600 | [diff] [blame] | 83 | 'process_name' : 'hwmon.py', |
| 84 | 'args' : [ SYSTEM_NAME ] |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 85 | }, |
| 86 | 'sensor_manager' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 87 | 'system_state' : 'BASE_APPS', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 88 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 89 | 'monitor_process' : True, |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 90 | 'process_name' : 'sensor_manager2.py', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 102 | 'monitor_process' : True, |
| 103 | 'process_name' : 'power_control.exe', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 104 | 'args' : [ '3000', '10' ] |
| 105 | }, |
| 106 | 'power_button' : { |
| 107 | 'system_state' : 'BMC_STARTING', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 108 | 'start_process' : False, |
| 109 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 110 | 'process_name' : 'button_power.exe', |
| 111 | }, |
Adriana Kobylak | 341c8c2 | 2016-06-16 09:20:55 -0500 | [diff] [blame] | 112 | 'host_checkstop' : { |
| 113 | 'system_state' : 'BMC_STARTING', |
| 114 | 'start_process' : False, |
| 115 | 'monitor_process' : False, |
| 116 | 'process_name' : 'host_checkstop.exe', |
| 117 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 118 | 'led_control' : { |
| 119 | 'system_state' : 'BMC_STARTING', |
| 120 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 121 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 122 | 'process_name' : 'led_controller.exe', |
| 123 | }, |
| 124 | 'flash_control' : { |
| 125 | 'system_state' : 'BMC_STARTING', |
| 126 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 127 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 128 | 'process_name' : 'flash_bios.exe', |
| 129 | }, |
Adriana Kobylak | 86e6c2c | 2016-04-29 11:56:40 -0500 | [diff] [blame] | 130 | 'bmc_flash_control' : { |
| 131 | 'system_state' : 'BMC_STARTING', |
| 132 | 'start_process' : True, |
| 133 | 'monitor_process' : True, |
| 134 | 'process_name' : 'bmc_update.py', |
| 135 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 136 | 'download_manager' : { |
| 137 | 'system_state' : 'BMC_STARTING', |
| 138 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 139 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 140 | 'process_name' : 'download_manager.py', |
| 141 | 'args' : [ SYSTEM_NAME ] |
| 142 | }, |
| 143 | 'host_control' : { |
| 144 | 'system_state' : 'BMC_STARTING', |
| 145 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 146 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 147 | 'process_name' : 'control_host.exe', |
| 148 | }, |
| 149 | 'chassis_control' : { |
| 150 | 'system_state' : 'BMC_STARTING', |
| 151 | 'start_process' : True, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 152 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 153 | 'process_name' : 'chassis_control.py', |
| 154 | }, |
Vishwa | 3d1c3de | 2016-06-30 13:52:59 +0530 | [diff] [blame] | 155 | 'restore' : { |
| 156 | 'system_state' : 'BMC_READY', |
| 157 | 'start_process' : True, |
| 158 | 'monitor_process' : False, |
| 159 | 'process_name' : 'discover_system_state.py', |
| 160 | }, |
William | f784d75 | 2016-01-19 12:28:49 +0800 | [diff] [blame] | 161 | 'bmc_control' : { |
| 162 | 'system_state' : 'BMC_STARTING', |
| 163 | 'start_process' : True, |
| 164 | 'monitor_process' : True, |
| 165 | 'process_name' : 'control_bmc.exe', |
Manjunath A Kumatagi | 5a1f176 | 2016-02-02 17:34:36 +0530 | [diff] [blame] | 166 | } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 167 | } |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 168 | |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 169 | CACHED_INTERFACES = { |
| 170 | "org.openbmc.InventoryItem" : True, |
| 171 | "org.openbmc.control.Chassis" : True, |
| 172 | } |
Norman James | a3e47c4 | 2015-10-18 14:43:10 -0500 | [diff] [blame] | 173 | INVENTORY_ROOT = '/org/openbmc/inventory' |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 174 | |
| 175 | FRU_INSTANCES = { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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, }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 179 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 185 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 186 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 187 | 'manufacturer' : 'ASPEED' }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 201 | |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 202 | |
Chris Austen | 46136de | 2016-05-12 00:27:37 -0500 | [diff] [blame] | 203 | '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 204 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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,}, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 209 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 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,}, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 212 | |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 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, }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 218 | } |
| 219 | |
| 220 | ID_LOOKUP = { |
| 221 | 'FRU' : { |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 222 | 0x0d : '<inventory_root>/system/chassis', |
| 223 | 0x34 : '<inventory_root>/system/chassis/motherboard', |
| 224 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
Chris Austen | 46136de | 2016-05-12 00:27:37 -0500 | [diff] [blame] | 225 | 0x02 : '<inventory_root>/system/chassis/motherboard/membuf0', |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 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', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 230 | 0x35 : '<inventory_root>/system', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 231 | }, |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 232 | 'FRU_STR' : { |
Norman James | fe635e8 | 2015-10-20 07:47:22 -0500 | [diff] [blame] | 233 | 'PRODUCT_15' : '<inventory_root>/system', |
| 234 | 'CHASSIS_2' : '<inventory_root>/system/chassis', |
| 235 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
Chris Austen | 46136de | 2016-05-12 00:27:37 -0500 | [diff] [blame] | 236 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/membuf0', |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 237 | 'BOARD_14' : '<inventory_root>/system/chassis/motherboard', |
Norman James | fe635e8 | 2015-10-20 07:47:22 -0500 | [diff] [blame] | 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', |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 242 | }, |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 243 | 'SENSOR' : { |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 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', |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 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', |
Chris Austen | 46136de | 2016-05-12 00:27:37 -0500 | [diff] [blame] | 263 | 0x2e : '<inventory_root>/system/chassis/motherboard/membuf0', |
Norman James | a42446a | 2015-10-19 11:12:45 -0500 | [diff] [blame] | 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', |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 268 | 0x09 : '/org/openbmc/sensors/host/BootCount', |
| 269 | 0x05 : '/org/openbmc/sensors/host/BootProgress', |
Norman James | 86f2a07 | 2016-01-30 22:48:54 -0600 | [diff] [blame] | 270 | 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus', |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 271 | 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus', |
| 272 | 0x33 : '/org/openbmc/sensors/host/PowerCap', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 273 | }, |
| 274 | 'GPIO_PRESENT' : { |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 275 | 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', |
| 276 | 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 277 | } |
| 278 | } |
| 279 | |
| 280 | GPIO_CONFIG = {} |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 281 | GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } |
| 282 | GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } |
| 283 | GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } |
| 284 | GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } |
| 285 | GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } |
| 286 | GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } |
Norman James | 7b8811e | 2016-01-12 12:51:29 -0600 | [diff] [blame] | 287 | GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' } |
Chris Austen | cd6a560 | 2016-05-24 13:33:51 -0500 | [diff] [blame] | 288 | GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' } |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 289 | GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } |
Norman James | e62f445 | 2015-10-31 17:33:10 -0500 | [diff] [blame] | 290 | GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } |
| 291 | GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 292 | GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } |
| 293 | GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } |
| 294 | GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } |
| 295 | GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } |
| 296 | GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } |
| 297 | GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } |
| 298 | GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } |
| 299 | GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } |
Adriana Kobylak | 341c8c2 | 2016-06-16 09:20:55 -0500 | [diff] [blame] | 300 | GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' } |
Norman James | c9239a3 | 2015-10-06 16:54:31 -0500 | [diff] [blame] | 301 | |
Norman James | 6bbe0b5 | 2015-10-27 09:18:05 -0500 | [diff] [blame] | 302 | def convertGpio(name): |
| 303 | name = name.upper() |
| 304 | c = name[0:1] |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 305 | offset = int(name[1:]) |
Norman James | 6bbe0b5 | 2015-10-27 09:18:05 -0500 | [diff] [blame] | 306 | a = ord(c)-65 |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 307 | base = a*8+GPIO_BASE |
Norman James | 7b8811e | 2016-01-12 12:51:29 -0600 | [diff] [blame] | 308 | return base+offset |
| 309 | |
| 310 | HWMON_CONFIG = { |
| 311 | '2-004c' : { |
| 312 | 'names' : { |
| 313 | 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 314 | } |
Yi Li | 155f93f | 2016-01-30 15:30:14 +0800 | [diff] [blame] | 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 | } |
Norman James | 7b8811e | 2016-01-12 12:51:29 -0600 | [diff] [blame] | 325 | } |
| 326 | } |
Yi Li | 54decc8 | 2016-05-05 17:42:56 +0800 | [diff] [blame] | 327 | |
| 328 | # Miscellaneous non-poll sensor with system specific properties. |
| 329 | # The sensor id is the same as those defined in ID_LOOKUP['SENSOR']. |
| 330 | MISC_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 | } |