Chris Austen | b29d2e8 | 2016-06-07 12:25:35 -0500 | [diff] [blame] | 1 | #! /usr/bin/python |
| 2 | |
| 3 | HOME_PATH = './' |
| 4 | CACHE_PATH = '/var/cache/obmc/' |
| 5 | FLASH_DOWNLOAD_PATH = "/tmp" |
| 6 | GPIO_BASE = 320 |
| 7 | SYSTEM_NAME = "Garrison" |
| 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 |
| 14 | SYSTEM_STATES = [ |
| 15 | 'BASE_APPS', |
| 16 | 'BMC_STARTING', |
| 17 | 'BMC_READY', |
| 18 | 'HOST_POWERING_ON', |
| 19 | 'HOST_POWERED_ON', |
| 20 | 'HOST_BOOTING', |
| 21 | 'HOST_BOOTED', |
| 22 | 'HOST_POWERED_OFF', |
| 23 | ] |
| 24 | |
| 25 | EXIT_STATE_DEPEND = { |
| 26 | 'BASE_APPS' : { |
| 27 | '/org/openbmc/sensors': 0, |
| 28 | }, |
| 29 | 'BMC_STARTING' : { |
| 30 | '/org/openbmc/control/chassis0': 0, |
| 31 | '/org/openbmc/control/power0' : 0, |
| 32 | '/org/openbmc/control/host0' : 0, |
| 33 | '/org/openbmc/control/flash/bios' : 0, |
| 34 | }, |
| 35 | } |
| 36 | |
| 37 | ## method will be called when state is entered |
| 38 | ENTER_STATE_CALLBACK = { |
| 39 | 'HOST_POWERED_ON' : { |
| 40 | 'boot' : { |
| 41 | 'bus_name' : 'org.openbmc.control.Host', |
| 42 | 'obj_name' : '/org/openbmc/control/host0', |
| 43 | 'interface_name' : 'org.openbmc.control.Host', |
| 44 | }, |
| 45 | }, |
| 46 | 'HOST_POWERED_OFF' : { |
| 47 | 'setOff' : { |
| 48 | 'bus_name' : 'org.openbmc.control.led', |
| 49 | 'obj_name' : '/org/openbmc/control/led/identify', |
| 50 | 'interface_name' : 'org.openbmc.Led', |
| 51 | } |
| 52 | }, |
| 53 | 'BMC_READY' : { |
| 54 | 'setOn' : { |
| 55 | 'bus_name' : 'org.openbmc.control.led', |
| 56 | 'obj_name' : '/org/openbmc/control/led/beep', |
| 57 | 'interface_name' : 'org.openbmc.Led', |
| 58 | }, |
| 59 | 'init' : { |
| 60 | 'bus_name' : 'org.openbmc.control.Flash', |
| 61 | 'obj_name' : '/org/openbmc/control/flash/bios', |
| 62 | 'interface_name' : 'org.openbmc.Flash', |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | APPS = { |
| 68 | 'startup_hacks' : { |
| 69 | 'system_state' : 'BASE_APPS', |
| 70 | 'start_process' : True, |
| 71 | 'monitor_process' : False, |
| 72 | 'process_name' : 'startup_hacks.sh', |
| 73 | }, |
| 74 | 'inventory' : { |
| 75 | 'system_state' : 'BMC_STARTING', |
| 76 | 'start_process' : True, |
| 77 | 'monitor_process' : True, |
| 78 | 'process_name' : 'inventory_items.py', |
| 79 | 'args' : [ SYSTEM_NAME ] |
| 80 | }, |
| 81 | 'hwmon' : { |
| 82 | 'system_state' : 'BMC_STARTING', |
| 83 | 'start_process' : True, |
| 84 | 'monitor_process' : True, |
| 85 | 'process_name' : 'hwmon.py', |
| 86 | 'args' : [ SYSTEM_NAME ] |
| 87 | }, |
| 88 | 'sensor_manager' : { |
| 89 | 'system_state' : 'BASE_APPS', |
| 90 | 'start_process' : True, |
| 91 | 'monitor_process' : True, |
| 92 | 'process_name' : 'sensor_manager2.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, |
| 104 | 'monitor_process' : True, |
| 105 | 'process_name' : 'power_control.exe', |
| 106 | 'args' : [ '3000', '10' ] |
| 107 | }, |
| 108 | 'power_button' : { |
| 109 | 'system_state' : 'BMC_STARTING', |
| 110 | 'start_process' : True, |
| 111 | 'monitor_process' : True, |
| 112 | 'process_name' : 'button_power.exe', |
| 113 | }, |
| 114 | 'reset_button' : { |
| 115 | 'system_state' : 'BMC_STARTING', |
| 116 | 'start_process' : True, |
| 117 | 'monitor_process' : True, |
| 118 | 'process_name' : 'button_reset.exe', |
| 119 | }, |
| 120 | 'led_control' : { |
| 121 | 'system_state' : 'BMC_STARTING', |
| 122 | 'start_process' : True, |
| 123 | 'monitor_process' : True, |
| 124 | 'process_name' : 'led_controller.exe', |
| 125 | }, |
| 126 | 'flash_control' : { |
| 127 | 'system_state' : 'BMC_STARTING', |
| 128 | 'start_process' : True, |
| 129 | 'monitor_process' : True, |
| 130 | 'process_name' : 'flash_bios.exe', |
| 131 | }, |
| 132 | 'bmc_flash_control' : { |
| 133 | 'system_state' : 'BMC_STARTING', |
| 134 | 'start_process' : True, |
| 135 | 'monitor_process' : True, |
| 136 | 'process_name' : 'bmc_update.py', |
| 137 | }, |
| 138 | 'download_manager' : { |
| 139 | 'system_state' : 'BMC_STARTING', |
| 140 | 'start_process' : True, |
| 141 | 'monitor_process' : True, |
| 142 | 'process_name' : 'download_manager.py', |
| 143 | 'args' : [ SYSTEM_NAME ] |
| 144 | }, |
| 145 | 'host_control' : { |
| 146 | 'system_state' : 'BMC_STARTING', |
| 147 | 'start_process' : True, |
| 148 | 'monitor_process' : True, |
| 149 | 'process_name' : 'control_host.exe', |
| 150 | }, |
| 151 | 'chassis_control' : { |
| 152 | 'system_state' : 'BMC_STARTING', |
| 153 | 'start_process' : True, |
| 154 | 'monitor_process' : True, |
| 155 | 'process_name' : 'chassis_control.py', |
| 156 | }, |
| 157 | 'restore' : { |
| 158 | 'system_state' : 'BMC_READY', |
| 159 | 'start_process' : True, |
| 160 | 'monitor_process' : False, |
| 161 | 'process_name' : 'discover_system_state.py', |
| 162 | }, |
| 163 | 'bmc_control' : { |
| 164 | 'system_state' : 'BMC_STARTING', |
| 165 | 'start_process' : True, |
| 166 | 'monitor_process' : True, |
| 167 | 'process_name' : 'control_bmc.exe', |
| 168 | }, |
| 169 | } |
| 170 | |
| 171 | CACHED_INTERFACES = { |
| 172 | "org.openbmc.InventoryItem" : True, |
| 173 | "org.openbmc.control.Chassis" : True, |
| 174 | } |
| 175 | |
| 176 | INVENTORY_ROOT = '/org/openbmc/inventory' |
| 177 | |
| 178 | FRU_INSTANCES = { |
| 179 | '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
| 180 | '<inventory_root>/system/bios' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
| 181 | '<inventory_root>/system/misc' : { 'fru_type' : 'SYSTEM','is_fru' : False, }, |
| 182 | |
| 183 | '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
| 184 | |
| 185 | '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, |
| 186 | |
| 187 | '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, }, |
| 188 | '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 189 | '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 190 | '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 191 | '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 192 | |
| 193 | '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 194 | '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 195 | '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 196 | '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 197 | |
| 198 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' }, |
| 199 | |
| 200 | '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 201 | '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 202 | |
| 203 | '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 204 | '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 205 | '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 206 | '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 207 | '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 208 | '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 209 | '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 210 | '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 211 | '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 212 | '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 213 | '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 214 | '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 215 | |
| 216 | '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 217 | '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 218 | '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 219 | '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 220 | '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 221 | '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 222 | '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 223 | '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 224 | '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 225 | '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 226 | '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 227 | '<inventory_root>/system/chassis/motherboard/cpu1/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 228 | |
| 229 | '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 230 | '<inventory_root>/system/chassis/motherboard/membuf1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 231 | '<inventory_root>/system/chassis/motherboard/membuf2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 232 | '<inventory_root>/system/chassis/motherboard/membuf3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 233 | '<inventory_root>/system/chassis/motherboard/membuf4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 234 | '<inventory_root>/system/chassis/motherboard/membuf5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 235 | '<inventory_root>/system/chassis/motherboard/membuf6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 236 | '<inventory_root>/system/chassis/motherboard/membuf7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 237 | |
| 238 | '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 239 | '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 240 | '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 241 | '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 242 | '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 243 | '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 244 | '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 245 | '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 246 | '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 247 | '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 248 | '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 249 | '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 250 | '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 251 | '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 252 | '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 253 | '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 254 | '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 255 | '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 256 | '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 257 | '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 258 | '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 259 | '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 260 | '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 261 | '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 262 | '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 263 | '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 264 | '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 265 | '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 266 | '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 267 | '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 268 | '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 269 | '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 270 | } |
| 271 | |
| 272 | ID_LOOKUP = { |
| 273 | 'FRU' : { |
| 274 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 275 | 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 276 | 0x03 : '<inventory_root>/system/chassis/motherboard', |
| 277 | 0x04 : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 278 | 0x05 : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 279 | 0x06 : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 280 | 0x07 : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 281 | 0x08 : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 282 | 0x09 : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 283 | 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 284 | 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 285 | 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 286 | 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 287 | 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 288 | 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 289 | 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 290 | 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 291 | 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 292 | 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 293 | 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 294 | 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 295 | 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 296 | 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 297 | 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 298 | 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 299 | 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 300 | 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 301 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 302 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 303 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 304 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 305 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 306 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 307 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 308 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 309 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 310 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 311 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 312 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 313 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 314 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31', |
| 315 | }, |
| 316 | 'FRU_STR' : { |
| 317 | 'PRODUCT_0' : '<inventory_root>/system/bios', |
| 318 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 319 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 320 | 'CHASSIS_3' : '<inventory_root>/system/chassis/motherboard', |
| 321 | 'BOARD_3' : '<inventory_root>/system/misc', |
| 322 | 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 323 | 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 324 | 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 325 | 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 326 | 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 327 | 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 328 | 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/membuf6', |
| 329 | 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/membuf7', |
| 330 | 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 331 | 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 332 | 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 333 | 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 334 | 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 335 | 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 336 | 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 337 | 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 338 | 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 339 | 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 340 | 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 341 | 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 342 | 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 343 | 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 344 | 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 345 | 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 346 | 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 347 | 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 348 | 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 349 | 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 350 | 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 351 | 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 352 | 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 353 | 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 354 | 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 355 | 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 356 | 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 357 | 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 358 | 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 359 | 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 360 | 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 361 | 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31', |
| 362 | 'PRODUCT_47' : '<inventory_root>/system/misc', |
| 363 | }, |
| 364 | 'SENSOR' : { |
| 365 | 0x04 : '/org/openbmc/sensors/host/HostStatus', |
| 366 | 0x05 : '/org/openbmc/sensors/host/BootProgress', |
| 367 | 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus', |
| 368 | 0x09 : '/org/openbmc/sensors/host/cpu1/OccStatus', |
| 369 | 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 370 | 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 371 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 372 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 373 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 374 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 375 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 376 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 377 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 378 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 379 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 380 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 381 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 382 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 383 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 384 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 385 | 0x2c : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 386 | 0x2d : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 387 | 0x2e : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 388 | 0x2f : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 389 | 0x30 : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 390 | 0x31 : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 391 | 0x32 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 392 | 0x33 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 393 | 0x34 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 394 | 0x35 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 395 | 0x36 : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 396 | 0x37 : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 397 | 0x38 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 398 | 0x39 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 399 | 0x3a : '<inventory_root>/system/chassis/motherboard/dimm31', |
| 400 | 0x3b : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 401 | 0x3c : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 402 | 0x3d : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 403 | 0x3e : '<inventory_root>/system/chassis/motherboard/cpu0/core0', |
| 404 | 0x3f : '<inventory_root>/system/chassis/motherboard/cpu0/core1', |
| 405 | 0x40 : '<inventory_root>/system/chassis/motherboard/cpu0/core2', |
| 406 | 0x41 : '<inventory_root>/system/chassis/motherboard/cpu0/core3', |
| 407 | 0x42 : '<inventory_root>/system/chassis/motherboard/cpu0/core4', |
| 408 | 0x43 : '<inventory_root>/system/chassis/motherboard/cpu0/core5', |
| 409 | 0x44 : '<inventory_root>/system/chassis/motherboard/cpu0/core6', |
| 410 | 0x45 : '<inventory_root>/system/chassis/motherboard/cpu0/core7', |
| 411 | 0x46 : '<inventory_root>/system/chassis/motherboard/cpu0/core8', |
| 412 | 0x47 : '<inventory_root>/system/chassis/motherboard/cpu0/core9', |
| 413 | 0x48 : '<inventory_root>/system/chassis/motherboard/cpu0/core10', |
| 414 | 0x49 : '<inventory_root>/system/chassis/motherboard/cpu0/core11', |
| 415 | 0x4a : '<inventory_root>/system/chassis/motherboard/cpu1/core0', |
| 416 | 0x4b : '<inventory_root>/system/chassis/motherboard/cpu1/core1', |
| 417 | 0x4c : '<inventory_root>/system/chassis/motherboard/cpu1/core2', |
| 418 | 0x4d : '<inventory_root>/system/chassis/motherboard/cpu1/core3', |
| 419 | 0x4e : '<inventory_root>/system/chassis/motherboard/cpu1/core4', |
| 420 | 0x4f : '<inventory_root>/system/chassis/motherboard/cpu1/core5', |
| 421 | 0x50 : '<inventory_root>/system/chassis/motherboard/cpu1/core6', |
| 422 | 0x51 : '<inventory_root>/system/chassis/motherboard/cpu1/core7', |
| 423 | 0x52 : '<inventory_root>/system/chassis/motherboard/cpu1/core8', |
| 424 | 0x53 : '<inventory_root>/system/chassis/motherboard/cpu1/core9', |
| 425 | 0x54 : '<inventory_root>/system/chassis/motherboard/cpu1/core10', |
| 426 | 0x55 : '<inventory_root>/system/chassis/motherboard/cpu1/core11', |
| 427 | 0x56 : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 428 | 0x57 : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 429 | 0x58 : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 430 | 0x59 : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 431 | 0x5a : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 432 | 0x5b : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 433 | 0x5c : '<inventory_root>/system/chassis/motherboard/membuf6', |
| 434 | 0x5d : '<inventory_root>/system/chassis/motherboard/membuf7', |
| 435 | 0x5f : '/org/openbmc/sensors/host/BootCount', |
| 436 | 0x60 : '<inventory_root>/system/chassis/motherboard', |
| 437 | 0x61 : '<inventory_root>/system/systemevent', |
| 438 | 0x62 : '<inventory_root>/system/powerlimit', |
| 439 | 0x63 : '<inventory_root>/system/chassis/motherboard/refclock', |
| 440 | 0x64 : '<inventory_root>/system/chassis/motherboard/pcieclock', |
| 441 | 0xb1 : '<inventory_root>/system/chassis/motherboard/todclock', |
| 442 | 0xb2 : '<inventory_root>/system/chassis/motherboard/apss', |
| 443 | 0xb3 : '/org/openbmc/sensors/host/powercap', |
| 444 | 0xb5 : '/org/openbmc/sensors/host/OperatingSystemStatus', |
| 445 | 0xb6 : '<inventory_root>/system/chassis/motherboard/pcielink', |
| 446 | }, |
| 447 | 'GPIO_PRESENT' : {} |
| 448 | } |
| 449 | |
| 450 | GPIO_CONFIG = {} |
| 451 | GPIO_CONFIG['BMC_POWER_UP'] = \ |
| 452 | {'gpio_pin': 'D1', 'direction': 'out'} |
| 453 | GPIO_CONFIG['SYS_PWROK_BUFF'] = \ |
| 454 | {'gpio_pin': 'D2', 'direction': 'in'} |
| 455 | GPIO_CONFIG['BMC_WD_CLEAR_PULSE_N'] = \ |
| 456 | {'gpio_pin': 'N4', 'direction': 'out'} |
| 457 | GPIO_CONFIG['CM1_OE_R_N'] = \ |
| 458 | {'gpio_pin': 'Q6', 'direction': 'out'} |
| 459 | GPIO_CONFIG['BMC_CP0_RESET_N'] = \ |
| 460 | {'gpio_pin': 'O2', 'direction': 'out'} |
| 461 | GPIO_CONFIG['BMC_CFAM_RESET_N_R'] = \ |
| 462 | {'gpio_pin': 'J2', 'direction': 'out'} |
| 463 | GPIO_CONFIG['PEX8718_DEVICES_RESET_N'] = \ |
| 464 | {'gpio_pin': 'B6', 'direction': 'out'} |
| 465 | GPIO_CONFIG['CP0_DEVICES_RESET_N'] = \ |
| 466 | {'gpio_pin': 'N3', 'direction': 'out'} |
| 467 | GPIO_CONFIG['CP1_DEVICES_RESET_N'] = \ |
| 468 | {'gpio_pin': 'N5', 'direction': 'out'} |
| 469 | |
| 470 | GPIO_CONFIG['FSI_DATA'] = \ |
| 471 | {'gpio_pin': 'A5', 'direction': 'out'} |
| 472 | GPIO_CONFIG['FSI_CLK'] = \ |
| 473 | {'gpio_pin': 'A4', 'direction': 'out'} |
| 474 | GPIO_CONFIG['FSI_ENABLE'] = \ |
| 475 | {'gpio_pin': 'D0', 'direction': 'out'} |
| 476 | GPIO_CONFIG['CRONUS_SEL'] = \ |
| 477 | {'gpio_pin': 'A6', 'direction': 'out'} |
| 478 | GPIO_CONFIG['BMC_THROTTLE'] = \ |
| 479 | {'gpio_pin': 'J3', 'direction': 'out'} |
| 480 | |
| 481 | GPIO_CONFIG['IDBTN'] = \ |
| 482 | { 'gpio_pin': 'Q7', 'direction': 'out' } |
| 483 | GPIO_CONFIG['POWER_BUTTON'] = \ |
| 484 | {'gpio_pin': 'E0', 'direction': 'both'} |
| 485 | GPIO_CONFIG['RESET_BUTTON'] = \ |
| 486 | {'gpio_pin': 'E4', 'direction': 'both'} |
| 487 | |
| 488 | GPIO_CONFIG['PS0_PRES_N'] = \ |
| 489 | {'gpio_pin': 'P7', 'direction': 'in'} |
| 490 | GPIO_CONFIG['PS1_PRES_N'] = \ |
| 491 | {'gpio_pin': 'N0', 'direction': 'in'} |
| 492 | GPIO_CONFIG['CARD_PRES_N'] = \ |
| 493 | {'gpio_pin': 'J0', 'direction': 'in'} |
| 494 | |
| 495 | |
| 496 | |
| 497 | |
| 498 | def convertGpio(name): |
| 499 | name = name.upper() |
| 500 | c = name[0:1] |
| 501 | offset = int(name[1:]) |
| 502 | a = ord(c)-65 |
| 503 | base = a*8+GPIO_BASE |
| 504 | return base+offset |
| 505 | |
| 506 | |
| 507 | HWMON_CONFIG = { |
| 508 | '4-0050' : { |
| 509 | 'names' : { |
| 510 | 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 511 | 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 512 | 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 513 | 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 514 | 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 515 | 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 516 | }, |
| 517 | 'labels' : { |
| 518 | '176' : { 'object_path' : 'temperature/cpu0/core0','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 519 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 520 | '177' : { 'object_path' : 'temperature/cpu0/core1','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 521 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 522 | '178' : { 'object_path' : 'temperature/cpu0/core2','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 523 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 524 | '179' : { 'object_path' : 'temperature/cpu0/core3','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 525 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 526 | '180' : { 'object_path' : 'temperature/cpu0/core4','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 527 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 528 | '181' : { 'object_path' : 'temperature/cpu0/core5','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 529 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 530 | '182' : { 'object_path' : 'temperature/cpu0/core6','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 531 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 532 | '183' : { 'object_path' : 'temperature/cpu0/core7','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 533 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 534 | '184' : { 'object_path' : 'temperature/cpu0/core8','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 535 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 536 | '185' : { 'object_path' : 'temperature/cpu0/core9','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 537 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 538 | '186' : { 'object_path' : 'temperature/cpu0/core10','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 539 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 540 | '187' : { 'object_path' : 'temperature/cpu0/core11','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 541 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 542 | '102' : { 'object_path' : 'temperature/dimm0','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 543 | '103' : { 'object_path' : 'temperature/dimm1','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 544 | '104' : { 'object_path' : 'temperature/dimm2','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 545 | '105' : { 'object_path' : 'temperature/dimm3','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 546 | '106' : { 'object_path' : 'temperature/dimm4','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 547 | '107' : { 'object_path' : 'temperature/dimm5','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 548 | '108' : { 'object_path' : 'temperature/dimm6','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 549 | '109' : { 'object_path' : 'temperature/dimm7','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 550 | '110' : { 'object_path' : 'temperature/dimm8','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 551 | '111' : { 'object_path' : 'temperature/dimm9','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 552 | '112' : { 'object_path' : 'temperature/dimm10','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 553 | '113' : { 'object_path' : 'temperature/dimm11','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 554 | '114' : { 'object_path' : 'temperature/dimm12','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 555 | '115' : { 'object_path' : 'temperature/dimm13','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 556 | '116' : { 'object_path' : 'temperature/dimm14','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 557 | '117' : { 'object_path' : 'temperature/dimm15','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 558 | '94' : { 'object_path' : 'temperature/membuf0','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 559 | '95' : { 'object_path' : 'temperature/membuf1','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 560 | '96' : { 'object_path' : 'temperature/membuf2','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 561 | '97' : { 'object_path' : 'temperature/membuf3','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 562 | } |
| 563 | }, |
| 564 | '5-0050' : { |
| 565 | 'labels' : { |
| 566 | '188' : { 'object_path' : 'temperature/cpu1/core0','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 567 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 568 | '189' : { 'object_path' : 'temperature/cpu1/core1','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 569 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 570 | '190' : { 'object_path' : 'temperature/cpu1/core2','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 571 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 572 | '191' : { 'object_path' : 'temperature/cpu1/core3','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 573 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 574 | '192' : { 'object_path' : 'temperature/cpu1/core4','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 575 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 576 | '193' : { 'object_path' : 'temperature/cpu1/core5','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 577 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 578 | '194' : { 'object_path' : 'temperature/cpu1/core6','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 579 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 580 | '195' : { 'object_path' : 'temperature/cpu1/core7','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 581 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 582 | '196' : { 'object_path' : 'temperature/cpu1/core8','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 583 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 584 | '197' : { 'object_path' : 'temperature/cpu1/core9','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 585 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 586 | '198' : { 'object_path' : 'temperature/cpu1/core10','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 587 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 588 | '199' : { 'object_path' : 'temperature/cpu1/core11','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 589 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 590 | '118' : { 'object_path' : 'temperature/dimm16','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 591 | '119' : { 'object_path' : 'temperature/dimm17','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 592 | '120' : { 'object_path' : 'temperature/dimm18','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 593 | '121' : { 'object_path' : 'temperature/dimm19','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 594 | '122' : { 'object_path' : 'temperature/dimm20','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 595 | '123' : { 'object_path' : 'temperature/dimm21','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 596 | '124' : { 'object_path' : 'temperature/dimm22','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 597 | '125' : { 'object_path' : 'temperature/dimm23','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 598 | '126' : { 'object_path' : 'temperature/dimm24','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 599 | '127' : { 'object_path' : 'temperature/dimm25','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 600 | '128' : { 'object_path' : 'temperature/dimm26','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 601 | '129' : { 'object_path' : 'temperature/dimm27','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 602 | '130' : { 'object_path' : 'temperature/dimm28','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 603 | '131' : { 'object_path' : 'temperature/dimm29','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 604 | '132' : { 'object_path' : 'temperature/dimm30','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 605 | '133' : { 'object_path' : 'temperature/dimm31','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 606 | '98' : { 'object_path' : 'temperature/membuf4','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 607 | '99' : { 'object_path' : 'temperature/membuf5','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 608 | '100' : { 'object_path' : 'temperature/membuf6','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 609 | '101' : { 'object_path' : 'temperature/membuf7','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 610 | } |
| 611 | }, |
| 612 | } |
| 613 | |
| 614 | # Miscellaneous non-poll sensor with system specific properties. |
| 615 | # The sensor id is the same as those defined in ID_LOOKUP['SENSOR']. |
| 616 | MISC_SENSORS = { |
| 617 | 0x5f : { 'class' : 'BootCountSensor' }, |
| 618 | 0x05 : { 'class' : 'BootProgressSensor' }, |
| 619 | 0x08 : { 'class' : 'OccStatusSensor', |
| 620 | 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' }, |
| 621 | 0x09 : { 'class' : 'OccStatusSensor', |
| 622 | 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0051/online' }, |
| 623 | 0xb5 : { 'class' : 'OperatingSystemStatusSensor' }, |
| 624 | 0xb3 : { 'class' : 'PowerCap', |
| 625 | 'os_path' : '/sys/class/hwmon/hwmon3/user_powercap' }, |
| 626 | } |