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_STARTING', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 17 | 'BMC_STARTING2', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 18 | 'BMC_READY', |
| 19 | 'HOST_POWERING_ON', |
| 20 | 'HOST_POWERED_ON', |
Brad Bishop | 2c0e614 | 2016-06-06 00:02:24 -0400 | [diff] [blame] | 21 | 'INVENTORY_UPLOADED', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 22 | 'HOST_BOOTING', |
Norman James | 2656f33 | 2015-10-26 06:42:41 -0500 | [diff] [blame] | 23 | 'HOST_BOOTED', |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 24 | 'HOST_POWERED_OFF', |
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' : { |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 32 | '/org/openbmc/control/power0' : 0, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 33 | '/org/openbmc/control/host0' : 0, |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 34 | '/org/openbmc/control/flash/bios' : 0, |
Norman James | 67b3bcc | 2015-11-11 10:41:38 -0600 | [diff] [blame] | 35 | '/org/openbmc/sensors/speed/fan5': 0, |
Norman James | 98e1f7b | 2015-11-24 22:17:56 -0600 | [diff] [blame] | 36 | '/org/openbmc/inventory/system/chassis/io_board' : 0, |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 37 | }, |
| 38 | 'BMC_STARTING2' : { |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 39 | '/org/openbmc/control/fans' : 0, |
Norman James | f5d2e5c | 2015-11-20 09:18:00 -0600 | [diff] [blame] | 40 | '/org/openbmc/control/chassis0': 0, |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 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 = { |
Brad Bishop | 2c0e614 | 2016-06-06 00:02:24 -0400 | [diff] [blame] | 46 | 'INVENTORY_UPLOADED' : { |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 47 | 'boot' : { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 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', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 56 | }, |
| 57 | 'setOn' : { |
| 58 | 'bus_name' : 'org.openbmc.control.led', |
Adriana Kobylak | 9c75104 | 2016-02-09 13:44:32 -0600 | [diff] [blame] | 59 | 'obj_name' : '/org/openbmc/control/led/identify', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 60 | 'interface_name' : 'org.openbmc.Led', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 61 | } |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 62 | }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 63 | 'HOST_POWERED_OFF' : { |
| 64 | 'setOff' : { |
| 65 | 'bus_name' : 'org.openbmc.control.led', |
Adriana Kobylak | 9c75104 | 2016-02-09 13:44:32 -0600 | [diff] [blame] | 66 | 'obj_name' : '/org/openbmc/control/led/identify', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 67 | 'interface_name' : 'org.openbmc.Led', |
| 68 | } |
| 69 | |
| 70 | }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 71 | 'BMC_READY' : { |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 72 | 'setOn' : { |
| 73 | 'bus_name' : 'org.openbmc.control.led', |
Adriana Kobylak | 9c75104 | 2016-02-09 13:44:32 -0600 | [diff] [blame] | 74 | 'obj_name' : '/org/openbmc/control/led/beep', |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 75 | 'interface_name' : 'org.openbmc.Led', |
| 76 | }, |
| 77 | 'init' : { |
| 78 | 'bus_name' : 'org.openbmc.control.Flash', |
| 79 | 'obj_name' : '/org/openbmc/control/flash/bios', |
| 80 | 'interface_name' : 'org.openbmc.Flash', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 81 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 82 | } |
Norman James | 90baede | 2015-09-02 20:32:49 -0500 | [diff] [blame] | 83 | } |
| 84 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 85 | APPS = { |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 86 | 'startup_hacks' : { |
| 87 | 'system_state' : 'BASE_APPS', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 88 | 'start_process' : True, |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 89 | 'monitor_process' : False, |
Norman James | 67b3bcc | 2015-11-11 10:41:38 -0600 | [diff] [blame] | 90 | 'process_name' : 'startup_hacks.sh', |
Norman James | b728e65 | 2015-11-01 07:38:46 -0600 | [diff] [blame] | 91 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 92 | 'inventory' : { |
| 93 | 'system_state' : 'BMC_STARTING', |
| 94 | 'start_process' : True, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 95 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 96 | 'process_name' : 'inventory_items.py', |
| 97 | 'args' : [ SYSTEM_NAME ] |
| 98 | }, |
Brad Bishop | 2c0e614 | 2016-06-06 00:02:24 -0400 | [diff] [blame] | 99 | 'inventory_upload' : { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 100 | 'system_state' : 'HOST_POWERED_ON', |
| 101 | 'start_process' : True, |
| 102 | 'monitor_process' : False, |
Brad Bishop | 2c0e614 | 2016-06-06 00:02:24 -0400 | [diff] [blame] | 103 | 'process_name' : 'goto_system_state.py', |
| 104 | 'args' : [ 'INVENTORY_UPLOADED', 'inventory_upload.py' ] |
| 105 | }, |
| 106 | 'pcie_present' : { |
| 107 | 'system_state' : 'INVENTORY_UPLOADED', |
| 108 | 'start_process' : True, |
| 109 | 'monitor_process' : False, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 110 | 'process_name' : 'pcie_slot_present.exe', |
| 111 | }, |
Norman James | 0ca72fb | 2015-11-10 10:39:36 -0600 | [diff] [blame] | 112 | 'fan_control' : { |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 113 | 'system_state' : 'BMC_STARTING2', |
Norman James | 0ca72fb | 2015-11-10 10:39:36 -0600 | [diff] [blame] | 114 | 'start_process' : True, |
| 115 | 'monitor_process' : True, |
| 116 | 'process_name' : 'fan_control.py', |
| 117 | }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 118 | 'hwmon' : { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 119 | 'system_state' : 'BMC_STARTING', |
| 120 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 121 | 'monitor_process' : True, |
Chris Austen | 3ac1227 | 2015-12-10 12:24:56 -0600 | [diff] [blame] | 122 | 'process_name' : 'hwmon.py', |
| 123 | 'args' : [ SYSTEM_NAME ] |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 124 | }, |
| 125 | 'sensor_manager' : { |
Norman James | 76abea3 | 2015-10-29 06:17:54 -0500 | [diff] [blame] | 126 | 'system_state' : 'BASE_APPS', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 127 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 128 | 'monitor_process' : True, |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 129 | 'process_name' : 'sensor_manager2.py', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 130 | 'args' : [ SYSTEM_NAME ] |
| 131 | }, |
| 132 | 'host_watchdog' : { |
| 133 | 'system_state' : 'BMC_STARTING', |
| 134 | 'start_process' : True, |
| 135 | 'monitor_process' : True, |
| 136 | 'process_name' : 'host_watchdog.exe', |
| 137 | }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 138 | 'power_control' : { |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 139 | 'system_state' : 'BMC_STARTING', |
| 140 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 141 | 'monitor_process' : True, |
Norman James | 5d78b4d | 2015-09-05 13:34:34 -0500 | [diff] [blame] | 142 | 'process_name' : 'power_control.exe', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 143 | 'args' : [ '3000', '10' ] |
| 144 | }, |
| 145 | 'power_button' : { |
| 146 | 'system_state' : 'BMC_STARTING', |
Ken | 871ef74 | 2015-11-06 11:22:52 +0800 | [diff] [blame] | 147 | 'start_process' : True, |
| 148 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 149 | 'process_name' : 'button_power.exe', |
| 150 | }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 151 | 'reset_button' : { |
| 152 | 'system_state' : 'BMC_STARTING', |
| 153 | 'start_process' : True, |
| 154 | 'monitor_process' : True, |
| 155 | 'process_name' : 'button_reset.exe', |
| 156 | }, |
Adriana Kobylak | 341c8c2 | 2016-06-16 09:20:55 -0500 | [diff] [blame] | 157 | 'host_checkstop' : { |
| 158 | 'system_state' : 'BMC_STARTING', |
| 159 | 'start_process' : True, |
| 160 | 'monitor_process' : True, |
| 161 | 'process_name' : 'host_checkstop.exe', |
| 162 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 163 | 'led_control' : { |
| 164 | 'system_state' : 'BMC_STARTING', |
| 165 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 166 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 167 | 'process_name' : 'led_controller.exe', |
| 168 | }, |
| 169 | 'flash_control' : { |
| 170 | 'system_state' : 'BMC_STARTING', |
| 171 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 172 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 173 | 'process_name' : 'flash_bios.exe', |
| 174 | }, |
Norman James | 3d6a06f | 2016-01-30 13:03:45 -0600 | [diff] [blame] | 175 | 'bmc_flash_control' : { |
| 176 | 'system_state' : 'BMC_STARTING', |
| 177 | 'start_process' : True, |
| 178 | 'monitor_process' : True, |
| 179 | 'process_name' : 'bmc_update.py', |
| 180 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 181 | 'download_manager' : { |
| 182 | 'system_state' : 'BMC_STARTING', |
| 183 | 'start_process' : True, |
Norman James | 8c6d838 | 2015-10-06 07:47:16 -0500 | [diff] [blame] | 184 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 185 | 'process_name' : 'download_manager.py', |
| 186 | 'args' : [ SYSTEM_NAME ] |
| 187 | }, |
| 188 | 'host_control' : { |
| 189 | 'system_state' : 'BMC_STARTING', |
| 190 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 191 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 192 | 'process_name' : 'control_host.exe', |
| 193 | }, |
| 194 | 'chassis_control' : { |
Norman James | f5d2e5c | 2015-11-20 09:18:00 -0600 | [diff] [blame] | 195 | 'system_state' : 'BMC_STARTING2', |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 196 | 'start_process' : True, |
Norman James | 6f8d042 | 2015-09-14 18:48:00 -0500 | [diff] [blame] | 197 | 'monitor_process' : True, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 198 | 'process_name' : 'chassis_control.py', |
| 199 | }, |
Norman James | 98e1f7b | 2015-11-24 22:17:56 -0600 | [diff] [blame] | 200 | 'board_vpd' : { |
| 201 | 'system_state' : 'BMC_STARTING2', |
| 202 | 'start_process' : True, |
| 203 | 'monitor_process' : False, |
| 204 | 'process_name' : 'phosphor-read-eeprom', |
Norman James | 2abcddb | 2016-01-19 14:05:00 -0600 | [diff] [blame] | 205 | 'args' : ['--eeprom','/sys/bus/i2c/devices/0-0050/eeprom','--fruid','64'], |
| 206 | }, |
Adriana Kobylak | 281063a | 2016-05-18 12:08:15 -0500 | [diff] [blame] | 207 | 'motherboard_vpd' : { |
| 208 | 'system_state' : 'BMC_STARTING2', |
| 209 | 'start_process' : True, |
| 210 | 'monitor_process' : False, |
| 211 | 'process_name' : 'phosphor-read-eeprom', |
| 212 | 'args' : ['--eeprom','/sys/bus/i2c/devices/4-0054/eeprom','--fruid','3'], |
| 213 | }, |
Norman James | 2abcddb | 2016-01-19 14:05:00 -0600 | [diff] [blame] | 214 | 'exp_vpd' : { |
| 215 | 'system_state' : 'BMC_STARTING2', |
| 216 | 'start_process' : True, |
| 217 | 'monitor_process' : False, |
| 218 | 'process_name' : 'phosphor-read-eeprom', |
| 219 | 'args' : ['--eeprom','/sys/bus/i2c/devices/6-0051/eeprom','--fruid','65'], |
| 220 | }, |
| 221 | 'hdd_vpd' : { |
| 222 | 'system_state' : 'BMC_STARTING2', |
| 223 | 'start_process' : True, |
| 224 | 'monitor_process' : False, |
| 225 | 'process_name' : 'phosphor-read-eeprom', |
| 226 | 'args' : ['--eeprom','/sys/bus/i2c/devices/6-0055/eeprom','--fruid','66'], |
Norman James | 98e1f7b | 2015-11-24 22:17:56 -0600 | [diff] [blame] | 227 | }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 228 | 'restore' : { |
| 229 | 'system_state' : 'BMC_READY', |
Norman James | 8ea118d | 2015-11-17 08:58:04 -0600 | [diff] [blame] | 230 | 'start_process' : True, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 231 | 'monitor_process' : False, |
| 232 | 'process_name' : 'discover_system_state.py', |
| 233 | }, |
William | f784d75 | 2016-01-19 12:28:49 +0800 | [diff] [blame] | 234 | 'bmc_control' : { |
| 235 | 'system_state' : 'BMC_STARTING', |
| 236 | 'start_process' : True, |
| 237 | 'monitor_process' : True, |
| 238 | 'process_name' : 'control_bmc.exe', |
| 239 | }, |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 240 | } |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 241 | |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 242 | CACHED_INTERFACES = { |
| 243 | "org.openbmc.InventoryItem" : True, |
| 244 | "org.openbmc.control.Chassis" : True, |
| 245 | } |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 246 | INVENTORY_ROOT = '/org/openbmc/inventory' |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 247 | |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 248 | FRU_INSTANCES = { |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 249 | '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 250 | '<inventory_root>/system/bios' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
| 251 | '<inventory_root>/system/misc' : { 'fru_type' : 'SYSTEM','is_fru' : False, }, |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 252 | |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 253 | '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 254 | |
| 255 | '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, }, |
| 256 | '<inventory_root>/system/chassis/io_board' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, }, |
Norman James | 2abcddb | 2016-01-19 14:05:00 -0600 | [diff] [blame] | 257 | '<inventory_root>/system/chassis/sas_expander' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, }, |
| 258 | '<inventory_root>/system/chassis/hdd_backplane' : { 'fru_type' : 'DAUGHTER_CARD','is_fru' : True, }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 259 | |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 260 | '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, }, |
| 261 | '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 262 | '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 263 | '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
| 264 | '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 265 | |
| 266 | '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 267 | '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 268 | '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 269 | '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, }, |
| 270 | '<inventory_root>/system/chassis/fan4' : { 'fru_type' : 'FAN','is_fru' : True, }, |
Norman James | 2abcddb | 2016-01-19 14:05:00 -0600 | [diff] [blame] | 271 | '<inventory_root>/system/chassis/fan5' : { 'fru_type' : 'FAN','is_fru' : True, }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 272 | |
| 273 | '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' }, |
| 274 | |
| 275 | '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 276 | '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, }, |
| 277 | |
| 278 | '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 279 | '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 280 | '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 281 | '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 282 | '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 283 | '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 284 | '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 285 | '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 286 | '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 287 | '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 288 | '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 289 | '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 290 | |
| 291 | '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 292 | '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 293 | '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 294 | '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 295 | '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 296 | '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 297 | '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 298 | '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 299 | '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 300 | '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
| 301 | '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 302 | '<inventory_root>/system/chassis/motherboard/cpu1/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 303 | |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 304 | '<inventory_root>/system/chassis/motherboard/membuf0' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 305 | '<inventory_root>/system/chassis/motherboard/membuf1' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 306 | '<inventory_root>/system/chassis/motherboard/membuf2' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 307 | '<inventory_root>/system/chassis/motherboard/membuf3' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 308 | '<inventory_root>/system/chassis/motherboard/membuf4' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 309 | '<inventory_root>/system/chassis/motherboard/membuf5' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 310 | '<inventory_root>/system/chassis/motherboard/membuf6' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
| 311 | '<inventory_root>/system/chassis/motherboard/membuf7' : { 'fru_type' : 'MEMORY_BUFFER', 'is_fru' : False, }, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 312 | |
| 313 | '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 314 | '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 315 | '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 316 | '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 317 | '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 318 | '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 319 | '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 320 | '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 321 | '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 322 | '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 323 | '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 324 | '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 325 | '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 326 | '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 327 | '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 328 | '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 329 | '<inventory_root>/system/chassis/motherboard/dimm16' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 330 | '<inventory_root>/system/chassis/motherboard/dimm17' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 331 | '<inventory_root>/system/chassis/motherboard/dimm18' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 332 | '<inventory_root>/system/chassis/motherboard/dimm19' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 333 | '<inventory_root>/system/chassis/motherboard/dimm20' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 334 | '<inventory_root>/system/chassis/motherboard/dimm21' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 335 | '<inventory_root>/system/chassis/motherboard/dimm22' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 336 | '<inventory_root>/system/chassis/motherboard/dimm23' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 337 | '<inventory_root>/system/chassis/motherboard/dimm24' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 338 | '<inventory_root>/system/chassis/motherboard/dimm25' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 339 | '<inventory_root>/system/chassis/motherboard/dimm26' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 340 | '<inventory_root>/system/chassis/motherboard/dimm27' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 341 | '<inventory_root>/system/chassis/motherboard/dimm28' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 342 | '<inventory_root>/system/chassis/motherboard/dimm29' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 343 | '<inventory_root>/system/chassis/motherboard/dimm30' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 344 | '<inventory_root>/system/chassis/motherboard/dimm31' : { 'fru_type' : 'DIMM', 'is_fru' : True,}, |
| 345 | |
| 346 | '<inventory_root>/system/chassis/io_board/pcie_slot0_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
| 347 | '<inventory_root>/system/chassis/io_board/pcie_slot1_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 348 | '<inventory_root>/system/chassis/io_board/pcie_slot2_riser' : { 'fru_type' : 'PCIE_RISER', 'is_fru' : True,}, |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 349 | '<inventory_root>/system/chassis/io_board/pcie_slot0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 350 | '<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] | 351 | '<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] | 352 | '<inventory_root>/system/chassis/io_board/pcie_mezz0' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
| 353 | '<inventory_root>/system/chassis/io_board/pcie_mezz1' : { 'fru_type' : 'PCIE_CARD', 'is_fru' : True,}, |
Norman James | 8887267 | 2015-09-21 16:51:35 -0500 | [diff] [blame] | 354 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 355 | |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 356 | ID_LOOKUP = { |
| 357 | 'FRU' : { |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 358 | 0x03 : '<inventory_root>/system/chassis/motherboard', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 359 | 0x40 : '<inventory_root>/system/chassis/io_board', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 360 | 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 361 | 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1', |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 362 | 0x04 : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 363 | 0x05 : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 364 | 0x06 : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 365 | 0x07 : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 366 | 0x08 : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 367 | 0x09 : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 368 | 0x0a : '<inventory_root>/system/chassis/motherboard/membuf6', |
| 369 | 0x0b : '<inventory_root>/system/chassis/motherboard/membuf7', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 370 | 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 371 | 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 372 | 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 373 | 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 374 | 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 375 | 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 376 | 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 377 | 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 378 | 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 379 | 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 380 | 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 381 | 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 382 | 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 383 | 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 384 | 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 385 | 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 386 | 0x1c : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 387 | 0x1d : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 388 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 389 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 390 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 391 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 392 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 393 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 394 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 395 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 396 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 397 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 398 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 399 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 400 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 401 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm31', |
| 402 | 0x33 : '<inventory_root>/system', |
Norman James | 3e5c859 | 2015-10-22 14:33:01 -0500 | [diff] [blame] | 403 | }, |
| 404 | 'FRU_STR' : { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 405 | 'PRODUCT_0' : '<inventory_root>/system/bios', |
| 406 | 'BOARD_3' : '<inventory_root>/system/misc', |
| 407 | 'PRODUCT_51' : '<inventory_root>/system/misc', |
Norman James | 1316210 | 2015-11-23 21:04:06 -0600 | [diff] [blame] | 408 | 'PRODUCT_100': '<inventory_root>/system', |
| 409 | 'CHASSIS_100': '<inventory_root>/system/chassis', |
| 410 | 'BOARD_100' : '<inventory_root>/system/chassis/io_board', |
Norman James | 2abcddb | 2016-01-19 14:05:00 -0600 | [diff] [blame] | 411 | 'BOARD_101' : '<inventory_root>/system/chassis/sas_expander', |
| 412 | 'BOARD_102' : '<inventory_root>/system/chassis/hdd_backplane', |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 413 | 'CHASSIS_3' : '<inventory_root>/system/chassis/motherboard', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 414 | 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 415 | 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1', |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 416 | 'BOARD_4' : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 417 | 'BOARD_5' : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 418 | 'BOARD_6' : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 419 | 'BOARD_7' : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 420 | 'BOARD_8' : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 421 | 'BOARD_9' : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 422 | 'BOARD_10' : '<inventory_root>/system/chassis/motherboard/membuf6', |
| 423 | 'BOARD_11' : '<inventory_root>/system/chassis/motherboard/membuf7', |
Norman James | 4f4bb6e | 2015-11-09 10:53:23 -0600 | [diff] [blame] | 424 | 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 425 | 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 426 | 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 427 | 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 428 | 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 429 | 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 430 | 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 431 | 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 432 | 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 433 | 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 434 | 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 435 | 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 436 | 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 437 | 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 438 | 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 439 | 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 440 | 'PRODUCT_28' : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 441 | 'PRODUCT_29' : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 442 | 'PRODUCT_30' : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 443 | 'PRODUCT_31' : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 444 | 'PRODUCT_32' : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 445 | 'PRODUCT_33' : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 446 | 'PRODUCT_34' : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 447 | 'PRODUCT_35' : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 448 | 'PRODUCT_36' : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 449 | 'PRODUCT_37' : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 450 | 'PRODUCT_38' : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 451 | 'PRODUCT_39' : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 452 | 'PRODUCT_40' : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 453 | 'PRODUCT_41' : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 454 | 'PRODUCT_42' : '<inventory_root>/system/chassis/motherboard/dimm30', |
| 455 | 'PRODUCT_43' : '<inventory_root>/system/chassis/motherboard/dimm31', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 456 | }, |
| 457 | 'SENSOR' : { |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 458 | 0x35 : '<inventory_root>/system/systemevent', |
| 459 | 0x36 : '<inventory_root>/system/powerlimit', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 460 | 0x34 : '<inventory_root>/system/chassis/motherboard', |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 461 | 0x31 : '<inventory_root>/system/chassis/motherboard/pcielink', |
| 462 | 0x37 : '<inventory_root>/system/chassis/motherboard/refclock', |
| 463 | 0x38 : '<inventory_root>/system/chassis/motherboard/pcieclock', |
| 464 | 0x39 : '<inventory_root>/system/chassis/motherboard/todclock', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 465 | 0x3A : '<inventory_root>/system/chassis/motherboard/apss', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 466 | 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0', |
| 467 | 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1', |
| 468 | 0xc8 : '<inventory_root>/system/chassis/motherboard/cpu0/core0', |
| 469 | 0xc9 : '<inventory_root>/system/chassis/motherboard/cpu0/core1', |
| 470 | 0xca : '<inventory_root>/system/chassis/motherboard/cpu0/core2', |
| 471 | 0xcb : '<inventory_root>/system/chassis/motherboard/cpu0/core3', |
| 472 | 0xcc : '<inventory_root>/system/chassis/motherboard/cpu0/core4', |
| 473 | 0xcd : '<inventory_root>/system/chassis/motherboard/cpu0/core5', |
| 474 | 0xce : '<inventory_root>/system/chassis/motherboard/cpu0/core6', |
| 475 | 0xcf : '<inventory_root>/system/chassis/motherboard/cpu0/core7', |
| 476 | 0xd0 : '<inventory_root>/system/chassis/motherboard/cpu0/core8', |
| 477 | 0xd1 : '<inventory_root>/system/chassis/motherboard/cpu0/core9', |
| 478 | 0xd2 : '<inventory_root>/system/chassis/motherboard/cpu0/core10', |
| 479 | 0xd3 : '<inventory_root>/system/chassis/motherboard/cpu0/core11', |
Norman James | 7427e58 | 2015-12-03 17:54:54 -0600 | [diff] [blame] | 480 | 0xd4 : '<inventory_root>/system/chassis/motherboard/cpu1/core0', |
| 481 | 0xd5 : '<inventory_root>/system/chassis/motherboard/cpu1/core1', |
| 482 | 0xd6 : '<inventory_root>/system/chassis/motherboard/cpu1/core2', |
| 483 | 0xd7 : '<inventory_root>/system/chassis/motherboard/cpu1/core3', |
| 484 | 0xd8 : '<inventory_root>/system/chassis/motherboard/cpu1/core4', |
| 485 | 0xd9 : '<inventory_root>/system/chassis/motherboard/cpu1/core5', |
| 486 | 0xda : '<inventory_root>/system/chassis/motherboard/cpu1/core6', |
| 487 | 0xdb : '<inventory_root>/system/chassis/motherboard/cpu1/core7', |
| 488 | 0xdc : '<inventory_root>/system/chassis/motherboard/cpu1/core8', |
| 489 | 0xdd : '<inventory_root>/system/chassis/motherboard/cpu1/core9', |
| 490 | 0xde : '<inventory_root>/system/chassis/motherboard/cpu1/core10', |
| 491 | 0xdf : '<inventory_root>/system/chassis/motherboard/cpu1/core11', |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 492 | 0x40 : '<inventory_root>/system/chassis/motherboard/membuf0', |
| 493 | 0x41 : '<inventory_root>/system/chassis/motherboard/membuf1', |
| 494 | 0x42 : '<inventory_root>/system/chassis/motherboard/membuf2', |
| 495 | 0x43 : '<inventory_root>/system/chassis/motherboard/membuf3', |
| 496 | 0x44 : '<inventory_root>/system/chassis/motherboard/membuf4', |
| 497 | 0x45 : '<inventory_root>/system/chassis/motherboard/membuf5', |
| 498 | 0x46 : '<inventory_root>/system/chassis/motherboard/membuf6', |
| 499 | 0x47 : '<inventory_root>/system/chassis/motherboard/membuf7', |
Ken | d6affe6 | 2015-11-05 14:44:01 +0800 | [diff] [blame] | 500 | 0x10 : '<inventory_root>/system/chassis/motherboard/dimm0', |
| 501 | 0x11 : '<inventory_root>/system/chassis/motherboard/dimm1', |
| 502 | 0x12 : '<inventory_root>/system/chassis/motherboard/dimm2', |
| 503 | 0x13 : '<inventory_root>/system/chassis/motherboard/dimm3', |
| 504 | 0x14 : '<inventory_root>/system/chassis/motherboard/dimm4', |
| 505 | 0x15 : '<inventory_root>/system/chassis/motherboard/dimm5', |
| 506 | 0x16 : '<inventory_root>/system/chassis/motherboard/dimm6', |
| 507 | 0x17 : '<inventory_root>/system/chassis/motherboard/dimm7', |
| 508 | 0x18 : '<inventory_root>/system/chassis/motherboard/dimm8', |
| 509 | 0x19 : '<inventory_root>/system/chassis/motherboard/dimm9', |
| 510 | 0x1a : '<inventory_root>/system/chassis/motherboard/dimm10', |
| 511 | 0x1b : '<inventory_root>/system/chassis/motherboard/dimm11', |
| 512 | 0x1c : '<inventory_root>/system/chassis/motherboard/dimm12', |
| 513 | 0x1d : '<inventory_root>/system/chassis/motherboard/dimm13', |
| 514 | 0x1e : '<inventory_root>/system/chassis/motherboard/dimm14', |
| 515 | 0x1f : '<inventory_root>/system/chassis/motherboard/dimm15', |
| 516 | 0x20 : '<inventory_root>/system/chassis/motherboard/dimm16', |
| 517 | 0x21 : '<inventory_root>/system/chassis/motherboard/dimm17', |
| 518 | 0x22 : '<inventory_root>/system/chassis/motherboard/dimm18', |
| 519 | 0x23 : '<inventory_root>/system/chassis/motherboard/dimm19', |
| 520 | 0x24 : '<inventory_root>/system/chassis/motherboard/dimm20', |
| 521 | 0x25 : '<inventory_root>/system/chassis/motherboard/dimm21', |
| 522 | 0x26 : '<inventory_root>/system/chassis/motherboard/dimm22', |
| 523 | 0x27 : '<inventory_root>/system/chassis/motherboard/dimm23', |
| 524 | 0x28 : '<inventory_root>/system/chassis/motherboard/dimm24', |
| 525 | 0x29 : '<inventory_root>/system/chassis/motherboard/dimm25', |
| 526 | 0x2a : '<inventory_root>/system/chassis/motherboard/dimm26', |
| 527 | 0x2b : '<inventory_root>/system/chassis/motherboard/dimm27', |
| 528 | 0x2c : '<inventory_root>/system/chassis/motherboard/dimm28', |
| 529 | 0x2d : '<inventory_root>/system/chassis/motherboard/dimm29', |
| 530 | 0x2e : '<inventory_root>/system/chassis/motherboard/dimm30', |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 531 | 0x2f : '<inventory_root>/system/chassis/motherboard/dimm31', |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 532 | 0x09 : '/org/openbmc/sensors/host/BootCount', |
| 533 | 0x05 : '/org/openbmc/sensors/host/BootProgress', |
| 534 | 0x04 : '/org/openbmc/sensors/host/HostStatus', |
Norman James | 86f2a07 | 2016-01-30 22:48:54 -0600 | [diff] [blame] | 535 | 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus', |
| 536 | 0x0A : '/org/openbmc/sensors/host/cpu1/OccStatus', |
Chris Austen | 4c9ea5d | 2015-12-09 23:26:08 -0600 | [diff] [blame] | 537 | 0x32 : '/org/openbmc/sensors/host/OperatingSystemStatus', |
| 538 | 0x33 : '/org/openbmc/sensors/host/powercap', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 539 | }, |
| 540 | 'GPIO_PRESENT' : { |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 541 | 'SLOT0_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0_riser', |
| 542 | 'SLOT1_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1_riser', |
| 543 | 'SLOT2_RISER_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2_riser', |
| 544 | 'SLOT0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot0', |
| 545 | 'SLOT1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot1', |
| 546 | 'SLOT2_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_slot2', |
| 547 | 'MEZZ0_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz0', |
| 548 | 'MEZZ1_PRESENT' : '<inventory_root>/system/chassis/io_board/pcie_mezz1', |
Norman James | 19e4591 | 2015-10-04 20:19:41 -0500 | [diff] [blame] | 549 | } |
| 550 | } |
Norman James | 362a80f | 2015-09-14 14:04:39 -0500 | [diff] [blame] | 551 | |
Norman James | ce46e3e | 2015-08-30 22:25:55 -0500 | [diff] [blame] | 552 | GPIO_CONFIG = {} |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 553 | GPIO_CONFIG['FSI_CLK'] = { 'gpio_pin': 'A4', 'direction': 'out' } |
| 554 | GPIO_CONFIG['FSI_DATA'] = { 'gpio_pin': 'A5', 'direction': 'out' } |
| 555 | GPIO_CONFIG['FSI_ENABLE'] = { 'gpio_pin': 'D0', 'direction': 'out' } |
| 556 | GPIO_CONFIG['POWER_PIN'] = { 'gpio_pin': 'E1', 'direction': 'out' } |
| 557 | GPIO_CONFIG['CRONUS_SEL'] = { 'gpio_pin': 'A6', 'direction': 'out' } |
| 558 | GPIO_CONFIG['PGOOD'] = { 'gpio_pin': 'C7', 'direction': 'in' } |
Norman James | 2943cc6 | 2015-10-28 18:59:53 -0500 | [diff] [blame] | 559 | GPIO_CONFIG['POWER_BUTTON'] = { 'gpio_pin': 'E0', 'direction': 'both' } |
Norman James | e62f445 | 2015-10-31 17:33:10 -0500 | [diff] [blame] | 560 | GPIO_CONFIG['PCIE_RESET'] = { 'gpio_pin': 'B5', 'direction': 'out' } |
| 561 | GPIO_CONFIG['USB_RESET'] = { 'gpio_pin': 'B6', 'direction': 'out' } |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 562 | |
Ken | 584747e | 2016-05-18 15:18:05 +0800 | [diff] [blame] | 563 | GPIO_CONFIG['IDBTN'] = { 'gpio_pin': 'Q7', 'direction': 'out' } |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 564 | GPIO_CONFIG['BMC_THROTTLE'] = { 'gpio_pin': 'J3', 'direction': 'out' } |
| 565 | GPIO_CONFIG['RESET_BUTTON'] = { 'gpio_pin': 'E2', 'direction': 'both' } |
| 566 | GPIO_CONFIG['CPLD_TCK'] = { 'gpio_pin': 'P0', 'direction': 'out' } |
| 567 | GPIO_CONFIG['CPLD_TDO'] = { 'gpio_pin': 'P1', 'direction': 'out' } |
| 568 | GPIO_CONFIG['CPLD_TDI'] = { 'gpio_pin': 'P2', 'direction': 'out' } |
| 569 | GPIO_CONFIG['CPLD_TMS'] = { 'gpio_pin': 'P3', 'direction': 'out' } |
Adriana Kobylak | 341c8c2 | 2016-06-16 09:20:55 -0500 | [diff] [blame] | 570 | GPIO_CONFIG['CHECKSTOP'] = { 'gpio_pin': 'P5', 'direction': 'falling' } |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 571 | |
Norman James | b38ea5a | 2015-10-28 12:44:56 -0500 | [diff] [blame] | 572 | GPIO_CONFIG['SLOT0_RISER_PRESENT'] = { 'gpio_pin': 'N0', 'direction': 'in' } |
| 573 | GPIO_CONFIG['SLOT1_RISER_PRESENT'] = { 'gpio_pin': 'N1', 'direction': 'in' } |
| 574 | GPIO_CONFIG['SLOT2_RISER_PRESENT'] = { 'gpio_pin': 'N2', 'direction': 'in' } |
| 575 | GPIO_CONFIG['SLOT0_PRESENT'] = { 'gpio_pin': 'N3', 'direction': 'in' } |
| 576 | GPIO_CONFIG['SLOT1_PRESENT'] = { 'gpio_pin': 'N4', 'direction': 'in' } |
| 577 | GPIO_CONFIG['SLOT2_PRESENT'] = { 'gpio_pin': 'N5', 'direction': 'in' } |
| 578 | GPIO_CONFIG['MEZZ0_PRESENT'] = { 'gpio_pin': 'O0', 'direction': 'in' } |
| 579 | GPIO_CONFIG['MEZZ1_PRESENT'] = { 'gpio_pin': 'O1', 'direction': 'in' } |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 580 | |
| 581 | def convertGpio(name): |
| 582 | name = name.upper() |
| 583 | c = name[0:1] |
| 584 | offset = int(name[1:]) |
| 585 | a = ord(c)-65 |
| 586 | base = a*8+GPIO_BASE |
| 587 | return base+offset |
| 588 | |
| 589 | |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 590 | HWMON_CONFIG = { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 591 | '0-004a' : { |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 592 | 'names' : { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 593 | 'temp1_input' : { 'object_path' : 'temperature/ambient','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 594 | } |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 595 | }, |
| 596 | '6-002d' : { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 597 | 'names' : { |
| 598 | 'pwm1' : { 'object_path' : 'speed/fan0','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 599 | 'pwm2' : { 'object_path' : 'speed/fan1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 600 | 'pwm3' : { 'object_path' : 'speed/fan2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 601 | 'in1_input' : { 'object_path' : 'voltage/P1V35_CPU0_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 602 | 'in2_input' : { 'object_path' : 'voltage/P0V9_CPU0_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 603 | 'in3_input' : { 'object_path' : 'voltage/P0V9_CPU0_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 604 | 'in4_input' : { 'object_path' : 'voltage/P0V9_CPU0_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 605 | 'in5_input' : { 'object_path' : 'voltage/P0V9_CPU0_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 606 | 'in6_input' : { 'object_path' : 'voltage/P1V09_CPU0_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 607 | 'in7_input' : { 'object_path' : 'voltage/P1V09_CPU0_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 608 | 'in8_input' : { 'object_path' : 'voltage/P1V09_CPU0_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 609 | 'in9_input' : { 'object_path' : 'voltage/P1V09_CPU0_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 610 | 'in10_input' : { 'object_path' : 'voltage/P0V97_CPU0','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 611 | 'in11_input' : { 'object_path' : 'voltage/P1V1_MEM0','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 612 | 'in12_input' : { 'object_path' : 'voltage/P1V35_CPU0_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 613 | 'in13_input' : { 'object_path' : 'voltage/P1V35_CPU0_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 614 | 'in14_input' : { 'object_path' : 'voltage/P1V35_CPU0_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 615 | } |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 616 | }, |
| 617 | '6-002e' : { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 618 | 'names' : { |
| 619 | 'pwm1' : { 'object_path' : 'speed/fan3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 620 | 'pwm2' : { 'object_path' : 'speed/fan4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 621 | 'pwm3' : { 'object_path' : 'speed/fan5','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 622 | 'in1_input' : { 'object_path' : 'voltage/P1V35_CPU1_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 623 | 'in2_input' : { 'object_path' : 'voltage/P0V9_CPU1_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 624 | 'in3_input' : { 'object_path' : 'voltage/P0V9_CPU1_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 625 | 'in4_input' : { 'object_path' : 'voltage/P0V9_CPU1_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 626 | 'in5_input' : { 'object_path' : 'voltage/P0V9_CPU1_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 627 | 'in6_input' : { 'object_path' : 'voltage/P1V09_CPU1_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 628 | 'in7_input' : { 'object_path' : 'voltage/P1V09_CPU1_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 629 | 'in8_input' : { 'object_path' : 'voltage/P1V09_CPU1_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 630 | 'in9_input' : { 'object_path' : 'voltage/P1V09_CPU1_BUF4','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 631 | 'in10_input' : { 'object_path' : 'voltage/P0V97_CPU1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 632 | 'in11_input' : { 'object_path' : 'voltage/P1V1_MEM1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 633 | 'in12_input' : { 'object_path' : 'voltage/P1V35_CPU1_BUF1','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 634 | 'in13_input' : { 'object_path' : 'voltage/P1V35_CPU1_BUF2','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
| 635 | 'in14_input' : { 'object_path' : 'voltage/P1V35_CPU1_BUF3','poll_interval' : 10000,'scale' : 1,'units' : '' }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 636 | } |
Ken | fb444c5 | 2015-12-18 17:56:30 -0600 | [diff] [blame] | 637 | }, |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 638 | '3-0050' : { |
Yi Li | 155f93f | 2016-01-30 15:30:14 +0800 | [diff] [blame] | 639 | 'names' : { |
| 640 | 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 641 | 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 642 | 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 643 | 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 644 | 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 645 | 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' }, |
| 646 | }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 647 | 'labels' : { |
Norman James | 72567ba | 2016-01-13 16:57:48 -0600 | [diff] [blame] | 648 | '176' : { 'object_path' : 'temperature/cpu0/core0','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 649 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 650 | '177' : { 'object_path' : 'temperature/cpu0/core1','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 651 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 652 | '178' : { 'object_path' : 'temperature/cpu0/core2','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 653 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 654 | '179' : { 'object_path' : 'temperature/cpu0/core3','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 655 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 656 | '180' : { 'object_path' : 'temperature/cpu0/core4','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 657 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 658 | '181' : { 'object_path' : 'temperature/cpu0/core5','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 659 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 660 | '182' : { 'object_path' : 'temperature/cpu0/core6','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 661 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 662 | '183' : { 'object_path' : 'temperature/cpu0/core7','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 663 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 664 | '184' : { 'object_path' : 'temperature/cpu0/core8','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 665 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 666 | '185' : { 'object_path' : 'temperature/cpu0/core9','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 667 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 668 | '186' : { 'object_path' : 'temperature/cpu0/core10','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 669 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 670 | '187' : { 'object_path' : 'temperature/cpu0/core11','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 671 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 672 | '102' : { 'object_path' : 'temperature/dimm0','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 673 | '103' : { 'object_path' : 'temperature/dimm1','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 674 | '104' : { 'object_path' : 'temperature/dimm2','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 675 | '105' : { 'object_path' : 'temperature/dimm3','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 676 | '106' : { 'object_path' : 'temperature/dimm4','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 677 | '107' : { 'object_path' : 'temperature/dimm5','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 678 | '108' : { 'object_path' : 'temperature/dimm6','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 679 | '109' : { 'object_path' : 'temperature/dimm7','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 680 | '110' : { 'object_path' : 'temperature/dimm8','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 681 | '111' : { 'object_path' : 'temperature/dimm9','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 682 | '112' : { 'object_path' : 'temperature/dimm10','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 683 | '113' : { 'object_path' : 'temperature/dimm11','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 684 | '114' : { 'object_path' : 'temperature/dimm12','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 685 | '115' : { 'object_path' : 'temperature/dimm13','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 686 | '116' : { 'object_path' : 'temperature/dimm14','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 687 | '117' : { 'object_path' : 'temperature/dimm15','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 688 | '94' : { 'object_path' : 'temperature/membuf0','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 689 | '95' : { 'object_path' : 'temperature/membuf1','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 690 | '96' : { 'object_path' : 'temperature/membuf2','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 691 | '97' : { 'object_path' : 'temperature/membuf3','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 692 | } |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 693 | }, |
| 694 | '3-0051' : { |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 695 | 'labels' : { |
Norman James | 72567ba | 2016-01-13 16:57:48 -0600 | [diff] [blame] | 696 | '188' : { 'object_path' : 'temperature/cpu1/core0','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 697 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 698 | '189' : { 'object_path' : 'temperature/cpu1/core1','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 699 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 700 | '190' : { 'object_path' : 'temperature/cpu1/core2','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 701 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 702 | '191' : { 'object_path' : 'temperature/cpu1/core3','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 703 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 704 | '192' : { 'object_path' : 'temperature/cpu1/core4','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 705 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 706 | '193' : { 'object_path' : 'temperature/cpu1/core5','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 707 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 708 | '194' : { 'object_path' : 'temperature/cpu1/core6','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 709 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 710 | '195' : { 'object_path' : 'temperature/cpu1/core7','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 711 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 712 | '196' : { 'object_path' : 'temperature/cpu1/core8','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 713 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 714 | '197' : { 'object_path' : 'temperature/cpu1/core9','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 715 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 716 | '198' : { 'object_path' : 'temperature/cpu1/core10','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 717 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
| 718 | '199' : { 'object_path' : 'temperature/cpu1/core11','poll_interval' : 5000,'scale' : 1000,'units' : 'C', |
| 719 | 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True }, |
Norman James | 3bb97d9 | 2015-12-18 14:57:22 -0600 | [diff] [blame] | 720 | '118' : { 'object_path' : 'temperature/dimm16','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 721 | '119' : { 'object_path' : 'temperature/dimm17','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 722 | '120' : { 'object_path' : 'temperature/dimm18','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 723 | '121' : { 'object_path' : 'temperature/dimm19','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 724 | '122' : { 'object_path' : 'temperature/dimm20','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 725 | '123' : { 'object_path' : 'temperature/dimm21','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 726 | '124' : { 'object_path' : 'temperature/dimm22','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 727 | '125' : { 'object_path' : 'temperature/dimm23','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 728 | '126' : { 'object_path' : 'temperature/dimm24','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 729 | '127' : { 'object_path' : 'temperature/dimm25','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 730 | '128' : { 'object_path' : 'temperature/dimm26','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 731 | '129' : { 'object_path' : 'temperature/dimm27','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 732 | '130' : { 'object_path' : 'temperature/dimm28','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 733 | '131' : { 'object_path' : 'temperature/dimm29','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 734 | '132' : { 'object_path' : 'temperature/dimm30','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 735 | '133' : { 'object_path' : 'temperature/dimm31','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 736 | '98' : { 'object_path' : 'temperature/membuf4','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 737 | '99' : { 'object_path' : 'temperature/membuf5','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 738 | '100' : { 'object_path' : 'temperature/membuf6','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 739 | '101' : { 'object_path' : 'temperature/membuf7','poll_interval' : 5000,'scale' : 1000,'units' : 'C' }, |
| 740 | } |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 741 | }, |
Yi Li | a8260c8 | 2016-03-16 14:37:57 +0800 | [diff] [blame] | 742 | '4-0010' : { |
| 743 | 'names' : { |
| 744 | # Barreleye uses 0.25 millioohms sense resistor for adm1278 |
| 745 | # To convert Iout register value Y to real-world value X, use an equation: |
| 746 | # X= 1/m * (Y * 10^-R - b), here m = 800 * R_sense, and R_sense is expressed in milliohms. |
| 747 | # The adm1278 driver did the conversion, but the R_sense is set here as a scale factor. |
| 748 | 'curr1_input' : { 'object_path' : 'HSCA/Iout','poll_interval' : 5000,'scale' : 0.25,'units' : 'mA' }, |
| 749 | 'in2_input' : { 'object_path' : 'HSCA/Vout','poll_interval' : 5000,'scale' : 1,'units' : 'mV' }, |
| 750 | } |
| 751 | }, |
| 752 | '5-0010' : { |
| 753 | 'names' : { |
| 754 | 'curr1_input' : { 'object_path' : 'HSCB/Iout','poll_interval' : 5000,'scale' : 0.25,'units' : 'mA' }, |
| 755 | 'in2_input' : { 'object_path' : 'HSCB/Vout','poll_interval' : 5000,'scale' : 1,'units' : 'mV' }, |
| 756 | } |
| 757 | }, |
| 758 | '6-0010' : { |
| 759 | 'names' : { |
| 760 | 'curr1_input' : { 'object_path' : 'HSCC/Iout','poll_interval' : 5000,'scale' : 0.25,'units' : 'mA' }, |
| 761 | 'in2_input' : { 'object_path' : 'HSCC/Vout','poll_interval' : 5000,'scale' : 1,'units' : 'mV' }, |
| 762 | } |
| 763 | }, |
Norman James | 3cb0f98 | 2015-12-03 01:07:16 -0600 | [diff] [blame] | 764 | } |
Norman James | a9966b3 | 2015-10-28 06:55:58 -0500 | [diff] [blame] | 765 | |
Yi Li | 54decc8 | 2016-05-05 17:42:56 +0800 | [diff] [blame] | 766 | # Miscellaneous non-poll sensor with system specific properties. |
| 767 | # The sensor id is the same as those defined in ID_LOOKUP['SENSOR']. |
| 768 | MISC_SENSORS = { |
| 769 | 0x09 : { 'class' : 'BootCountSensor' }, |
| 770 | 0x05 : { 'class' : 'BootProgressSensor' }, |
| 771 | 0x08 : { 'class' : 'OccStatusSensor', |
| 772 | 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' }, |
| 773 | 0x0A : { 'class' : 'OccStatusSensor', |
| 774 | 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0051/online' }, |
| 775 | 0x32 : { 'class' : 'OperatingSystemStatusSensor' }, |
| 776 | 0x33 : { 'class' : 'PowerCap', |
| 777 | 'os_path' : '/sys/class/hwmon/hwmon3/user_powercap' }, |
| 778 | } |