summaryrefslogtreecommitdiffstats
path: root/configs
diff options
context:
space:
mode:
authorJoel Stanley <joel@jms.id.au>2016-10-24 17:23:15 +1030
committerPatrick Williams <patrick@stwcx.xyz>2016-10-31 16:23:59 +0000
commitda7aad04d03312fe5df7580ec94bf44f0587bb53 (patch)
treec9f9ef63a320a5a5ce427132a3e26b96df04d7c8 /configs
parente83635a9c613515ecfec8f27f15ae9deefee8f43 (diff)
downloadtalos-skeleton-da7aad04d03312fe5df7580ec94bf44f0587bb53.tar.gz
talos-skeleton-da7aad04d03312fe5df7580ec94bf44f0587bb53.zip
Add Romulus config
This is a dual socket Power9 OpenPower machine manufactured by IBM. Change-Id: I4e20f3c90880a08b5adb35775ee6e3ca6944814f Signed-off-by: Joel Stanley <joel@jms.id.au> Signed-off-by: Lei YU <mine260309@gmail.com>
Diffstat (limited to 'configs')
-rw-r--r--configs/Romulus.py375
1 files changed, 375 insertions, 0 deletions
diff --git a/configs/Romulus.py b/configs/Romulus.py
new file mode 100644
index 0000000..09cabe4
--- /dev/null
+++ b/configs/Romulus.py
@@ -0,0 +1,375 @@
+# Romulus.py
+#
+# Copy of Witherspoon.py with membufs removed
+# TODO:
+# - Fix GPIOs
+#
+
+SYSTEM_STATES = [
+ 'BASE_APPS',
+ 'BMC_STARTING',
+ 'BMC_READY',
+ 'HOST_POWERING_ON',
+ 'HOST_POWERED_ON',
+ 'HOST_BOOTING',
+ 'HOST_BOOTED',
+ 'HOST_POWERED_OFF',
+]
+
+EXIT_STATE_DEPEND = {
+ 'BASE_APPS' : {
+ '/org/openbmc/sensors': 0,
+ },
+ 'BMC_STARTING' : {
+ '/org/openbmc/control/chassis0': 0,
+ '/org/openbmc/control/power0' : 0,
+ '/org/openbmc/control/host0' : 0,
+ '/org/openbmc/control/flash/bios' : 0,
+ },
+}
+
+FRU_INSTANCES = {
+ '<inventory_root>/system' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
+ '<inventory_root>/system/bios' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
+ '<inventory_root>/system/misc' : { 'fru_type' : 'SYSTEM','is_fru' : False, },
+
+ '<inventory_root>/system/chassis' : { 'fru_type' : 'SYSTEM','is_fru' : True, 'present' : "True" },
+
+ '<inventory_root>/system/chassis/motherboard' : { 'fru_type' : 'MAIN_PLANAR','is_fru' : True, },
+
+ '<inventory_root>/system/systemevent' : { 'fru_type' : 'SYSTEM_EVENT', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/refclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/pcieclock': { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/todclock' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/apss' : { 'fru_type' : 'MAIN_PLANAR', 'is_fru' : False, },
+
+ '<inventory_root>/system/chassis/fan0' : { 'fru_type' : 'FAN','is_fru' : True, },
+ '<inventory_root>/system/chassis/fan1' : { 'fru_type' : 'FAN','is_fru' : True, },
+ '<inventory_root>/system/chassis/fan2' : { 'fru_type' : 'FAN','is_fru' : True, },
+ '<inventory_root>/system/chassis/fan3' : { 'fru_type' : 'FAN','is_fru' : True, },
+
+ '<inventory_root>/system/chassis/motherboard/bmc' : { 'fru_type' : 'BMC','is_fru' : False, 'manufacturer' : 'ASPEED' },
+
+ '<inventory_root>/system/chassis/motherboard/cpu0' : { 'fru_type' : 'CPU', 'is_fru' : True, },
+ '<inventory_root>/system/chassis/motherboard/cpu1' : { 'fru_type' : 'CPU', 'is_fru' : True, },
+
+ '<inventory_root>/system/chassis/motherboard/cpu0/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core10': { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu0/core11': { 'fru_type' : 'CORE', 'is_fru' : False, },
+
+ '<inventory_root>/system/chassis/motherboard/cpu1/core0' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core1' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core2' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core3' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core4' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core5' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core6' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core7' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core8' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core9' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core10' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+ '<inventory_root>/system/chassis/motherboard/cpu1/core11' : { 'fru_type' : 'CORE', 'is_fru' : False, },
+
+ '<inventory_root>/system/chassis/motherboard/dimm0' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm1' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm2' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm3' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm4' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm5' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm6' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm7' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm8' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm9' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm10' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm11' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm12' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm13' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm14' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+ '<inventory_root>/system/chassis/motherboard/dimm15' : { 'fru_type' : 'DIMM', 'is_fru' : True,},
+}
+
+ID_LOOKUP = {
+ 'FRU' : {
+ 0x01 : '<inventory_root>/system/chassis/motherboard/cpu0',
+ 0x02 : '<inventory_root>/system/chassis/motherboard/cpu1',
+ 0x03 : '<inventory_root>/system/chassis/motherboard',
+ 0x0c : '<inventory_root>/system/chassis/motherboard/dimm0',
+ 0x0d : '<inventory_root>/system/chassis/motherboard/dimm1',
+ 0x0e : '<inventory_root>/system/chassis/motherboard/dimm2',
+ 0x0f : '<inventory_root>/system/chassis/motherboard/dimm3',
+ 0x10 : '<inventory_root>/system/chassis/motherboard/dimm4',
+ 0x11 : '<inventory_root>/system/chassis/motherboard/dimm5',
+ 0x12 : '<inventory_root>/system/chassis/motherboard/dimm6',
+ 0x13 : '<inventory_root>/system/chassis/motherboard/dimm7',
+ 0x14 : '<inventory_root>/system/chassis/motherboard/dimm8',
+ 0x15 : '<inventory_root>/system/chassis/motherboard/dimm9',
+ 0x16 : '<inventory_root>/system/chassis/motherboard/dimm10',
+ 0x17 : '<inventory_root>/system/chassis/motherboard/dimm11',
+ 0x18 : '<inventory_root>/system/chassis/motherboard/dimm12',
+ 0x19 : '<inventory_root>/system/chassis/motherboard/dimm13',
+ 0x1a : '<inventory_root>/system/chassis/motherboard/dimm14',
+ 0x1b : '<inventory_root>/system/chassis/motherboard/dimm15',
+ },
+ 'FRU_STR' : {
+ 'PRODUCT_0' : '<inventory_root>/system/bios',
+ 'BOARD_1' : '<inventory_root>/system/chassis/motherboard/cpu0',
+ 'BOARD_2' : '<inventory_root>/system/chassis/motherboard/cpu1',
+ 'CHASSIS_3' : '<inventory_root>/system/chassis/motherboard',
+ 'BOARD_3' : '<inventory_root>/system/misc',
+ 'PRODUCT_12' : '<inventory_root>/system/chassis/motherboard/dimm0',
+ 'PRODUCT_13' : '<inventory_root>/system/chassis/motherboard/dimm1',
+ 'PRODUCT_14' : '<inventory_root>/system/chassis/motherboard/dimm2',
+ 'PRODUCT_15' : '<inventory_root>/system/chassis/motherboard/dimm3',
+ 'PRODUCT_16' : '<inventory_root>/system/chassis/motherboard/dimm4',
+ 'PRODUCT_17' : '<inventory_root>/system/chassis/motherboard/dimm5',
+ 'PRODUCT_18' : '<inventory_root>/system/chassis/motherboard/dimm6',
+ 'PRODUCT_19' : '<inventory_root>/system/chassis/motherboard/dimm7',
+ 'PRODUCT_20' : '<inventory_root>/system/chassis/motherboard/dimm8',
+ 'PRODUCT_21' : '<inventory_root>/system/chassis/motherboard/dimm9',
+ 'PRODUCT_22' : '<inventory_root>/system/chassis/motherboard/dimm10',
+ 'PRODUCT_23' : '<inventory_root>/system/chassis/motherboard/dimm11',
+ 'PRODUCT_24' : '<inventory_root>/system/chassis/motherboard/dimm12',
+ 'PRODUCT_25' : '<inventory_root>/system/chassis/motherboard/dimm13',
+ 'PRODUCT_26' : '<inventory_root>/system/chassis/motherboard/dimm14',
+ 'PRODUCT_27' : '<inventory_root>/system/chassis/motherboard/dimm15',
+ 'PRODUCT_47' : '<inventory_root>/system/misc',
+ },
+ 'SENSOR' : {
+ 0x04 : '/org/openbmc/sensors/host/HostStatus',
+ 0x05 : '/org/openbmc/sensors/host/BootProgress',
+ 0x08 : '/org/openbmc/sensors/host/cpu0/OccStatus',
+ 0x09 : '/org/openbmc/sensors/host/cpu1/OccStatus',
+ 0x0c : '<inventory_root>/system/chassis/motherboard/cpu0',
+ 0x0e : '<inventory_root>/system/chassis/motherboard/cpu1',
+ 0x1e : '<inventory_root>/system/chassis/motherboard/dimm3',
+ 0x1f : '<inventory_root>/system/chassis/motherboard/dimm2',
+ 0x20 : '<inventory_root>/system/chassis/motherboard/dimm1',
+ 0x21 : '<inventory_root>/system/chassis/motherboard/dimm0',
+ 0x22 : '<inventory_root>/system/chassis/motherboard/dimm7',
+ 0x23 : '<inventory_root>/system/chassis/motherboard/dimm6',
+ 0x24 : '<inventory_root>/system/chassis/motherboard/dimm5',
+ 0x25 : '<inventory_root>/system/chassis/motherboard/dimm4',
+ 0x26 : '<inventory_root>/system/chassis/motherboard/dimm11',
+ 0x27 : '<inventory_root>/system/chassis/motherboard/dimm10',
+ 0x28 : '<inventory_root>/system/chassis/motherboard/dimm9',
+ 0x29 : '<inventory_root>/system/chassis/motherboard/dimm8',
+ 0x2a : '<inventory_root>/system/chassis/motherboard/dimm15',
+ 0x2b : '<inventory_root>/system/chassis/motherboard/dimm14',
+ 0x2c : '<inventory_root>/system/chassis/motherboard/dimm13',
+ 0x2d : '<inventory_root>/system/chassis/motherboard/dimm12',
+ 0x3e : '<inventory_root>/system/chassis/motherboard/cpu0/core0',
+ 0x3f : '<inventory_root>/system/chassis/motherboard/cpu0/core1',
+ 0x40 : '<inventory_root>/system/chassis/motherboard/cpu0/core2',
+ 0x41 : '<inventory_root>/system/chassis/motherboard/cpu0/core3',
+ 0x42 : '<inventory_root>/system/chassis/motherboard/cpu0/core4',
+ 0x43 : '<inventory_root>/system/chassis/motherboard/cpu0/core5',
+ 0x44 : '<inventory_root>/system/chassis/motherboard/cpu0/core6',
+ 0x45 : '<inventory_root>/system/chassis/motherboard/cpu0/core7',
+ 0x46 : '<inventory_root>/system/chassis/motherboard/cpu0/core8',
+ 0x47 : '<inventory_root>/system/chassis/motherboard/cpu0/core9',
+ 0x48 : '<inventory_root>/system/chassis/motherboard/cpu0/core10',
+ 0x49 : '<inventory_root>/system/chassis/motherboard/cpu0/core11',
+ 0x4a : '<inventory_root>/system/chassis/motherboard/cpu1/core0',
+ 0x4b : '<inventory_root>/system/chassis/motherboard/cpu1/core1',
+ 0x4c : '<inventory_root>/system/chassis/motherboard/cpu1/core2',
+ 0x4d : '<inventory_root>/system/chassis/motherboard/cpu1/core3',
+ 0x4e : '<inventory_root>/system/chassis/motherboard/cpu1/core4',
+ 0x4f : '<inventory_root>/system/chassis/motherboard/cpu1/core5',
+ 0x50 : '<inventory_root>/system/chassis/motherboard/cpu1/core6',
+ 0x51 : '<inventory_root>/system/chassis/motherboard/cpu1/core7',
+ 0x52 : '<inventory_root>/system/chassis/motherboard/cpu1/core8',
+ 0x53 : '<inventory_root>/system/chassis/motherboard/cpu1/core9',
+ 0x54 : '<inventory_root>/system/chassis/motherboard/cpu1/core10',
+ 0x55 : '<inventory_root>/system/chassis/motherboard/cpu1/core11',
+ 0x5f : '/org/openbmc/sensors/host/BootCount',
+ 0x60 : '<inventory_root>/system/chassis/motherboard',
+ 0x61 : '<inventory_root>/system/systemevent',
+ 0x62 : '<inventory_root>/system/powerlimit',
+ 0x63 : '<inventory_root>/system/chassis/motherboard/refclock',
+ 0x64 : '<inventory_root>/system/chassis/motherboard/pcieclock',
+ 0xb1 : '<inventory_root>/system/chassis/motherboard/todclock',
+ 0xb2 : '<inventory_root>/system/chassis/motherboard/apss',
+ 0xb3 : '/org/openbmc/sensors/host/powercap',
+ 0xb5 : '/org/openbmc/sensors/host/OperatingSystemStatus',
+ 0xb6 : '<inventory_root>/system/chassis/motherboard/pcielink',
+ },
+ 'GPIO_PRESENT' : {}
+}
+
+GPIO_CONFIG = {}
+GPIO_CONFIG['SOFTWARE_PGOOD'] = \
+ {'gpio_pin': 'R1', 'direction': 'out'}
+GPIO_CONFIG['BMC_POWER_UP'] = \
+ {'gpio_pin': 'D1', 'direction': 'out'}
+GPIO_CONFIG['SYS_PWROK_BUFF'] = \
+ {'gpio_pin': 'D2', 'direction': 'in'}
+GPIO_CONFIG['BMC_WD_CLEAR_PULSE_N'] = \
+ {'gpio_pin': 'N5', 'direction': 'out'}
+GPIO_CONFIG['CHECKSTOP'] = \
+ {'gpio_pin': 'J2', 'direction': 'falling'}
+
+#FIXME: romulus: GPIOD3/D4 is NIC_FUNC_MODE0/1
+#GPIO_CONFIG['PHY_RST_N'] = \
+# {'gpio_pin': 'D3', 'direction': 'out'}
+#GPIO_CONFIG['HDD_PWR_EN'] = \
+# {'gpio_pin': 'D4', 'direction': 'out'}
+
+GPIO_CONFIG['BMC_CP0_RESET_N'] = \
+ {'gpio_pin': 'A1', 'direction': 'out'}
+
+#FIXME: romulus: GPIOA1 is BMC_CP0_RESET_N
+#GPIO_CONFIG['CP0_DEVICES_RESET_N'] = \
+# {'gpio_pin': 'A1', 'direction': 'out'}
+
+#FIXME: Is it BMC_CP0_PERST_ENABLE or BMC_CP0_PERST_ENABLE_R
+GPIO_CONFIG['BMC_CP0_PERST_ENABLE_R'] = \
+ {'gpio_pin': 'A3', 'direction': 'out'}
+#GPIO_CONFIG['BMC_CP0_PERST_ENABLE'] = \
+# {'gpio_pin': 'A3', 'direction': 'out'}
+
+# Romulus GPIOB4 is not connected
+#GPIO_CONFIG['BMC_UCD_LATCH_LE'] = \
+# {'gpio_pin': 'B4', 'direction': 'out'}
+
+#FIXME: romulus: SOFT_FSI_CLK: AA0, SOFT_FSI_DAT: AA2, see romulus_rev1_0 page 69, 71
+GPIO_CONFIG['FSI_DATA'] = \
+ {'gpio_pin': 'AA2', 'direction': 'out'}
+GPIO_CONFIG['FSI_CLK'] = \
+ {'gpio_pin': 'AA0', 'direction': 'out'}
+GPIO_CONFIG['FSI_ENABLE'] = \
+ {'gpio_pin': 'D0', 'direction': 'out'}
+
+# romulus GPIOA6 is DBG_CP0_MUX_SEL
+GPIO_CONFIG['CRONUS_SEL'] = \
+ {'gpio_pin': 'A6', 'direction': 'out'}
+
+# romulus: PM_FP_PWRBTN_IN_L
+GPIO_CONFIG['POWER_BUTTON'] = \
+ {'gpio_pin': 'I3', 'direction': 'in'}
+# romulus: PM_NMIBTN_IN_L
+GPIO_CONFIG['RESET_BUTTON'] = \
+ {'gpio_pin': 'J1', 'direction': 'in'}
+
+#Romulus GPIOP7 is not connected
+#GPIO_CONFIG['PE_MEZZB_PRSNT_N'] = \
+# {'gpio_pin': 'P7', 'direction': 'in'}
+
+
+HWMON_CONFIG = {
+ '4-0050' : {
+ 'names' : {
+ 'caps_curr_powercap' : { 'object_path' : 'powercap/curr_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ 'caps_curr_powerreading' : { 'object_path' : 'powercap/system_power','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ 'caps_max_powercap' : { 'object_path' : 'powercap/max_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ 'caps_min_powercap' : { 'object_path' : 'powercap/min_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ 'caps_norm_powercap' : { 'object_path' : 'powercap/n_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ 'caps_user_powerlimit' : { 'object_path' : 'powercap/user_cap','poll_interval' : 10000,'scale' : 1,'units' : 'W' },
+ },
+ 'labels' : {
+ '176' : { 'object_path' : 'temperature/cpu0/core0','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '177' : { 'object_path' : 'temperature/cpu0/core1','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '178' : { 'object_path' : 'temperature/cpu0/core2','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '179' : { 'object_path' : 'temperature/cpu0/core3','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '180' : { 'object_path' : 'temperature/cpu0/core4','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '181' : { 'object_path' : 'temperature/cpu0/core5','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '182' : { 'object_path' : 'temperature/cpu0/core6','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '183' : { 'object_path' : 'temperature/cpu0/core7','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '184' : { 'object_path' : 'temperature/cpu0/core8','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '185' : { 'object_path' : 'temperature/cpu0/core9','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '186' : { 'object_path' : 'temperature/cpu0/core10','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '187' : { 'object_path' : 'temperature/cpu0/core11','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '102' : { 'object_path' : 'temperature/dimm0','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '103' : { 'object_path' : 'temperature/dimm1','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '104' : { 'object_path' : 'temperature/dimm2','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '105' : { 'object_path' : 'temperature/dimm3','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '106' : { 'object_path' : 'temperature/dimm4','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '107' : { 'object_path' : 'temperature/dimm5','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '108' : { 'object_path' : 'temperature/dimm6','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '109' : { 'object_path' : 'temperature/dimm7','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ }
+ },
+ '5-0050' : {
+ 'labels' : {
+ '188' : { 'object_path' : 'temperature/cpu1/core0','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '189' : { 'object_path' : 'temperature/cpu1/core1','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '190' : { 'object_path' : 'temperature/cpu1/core2','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '191' : { 'object_path' : 'temperature/cpu1/core3','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '192' : { 'object_path' : 'temperature/cpu1/core4','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '193' : { 'object_path' : 'temperature/cpu1/core5','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '194' : { 'object_path' : 'temperature/cpu1/core6','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '195' : { 'object_path' : 'temperature/cpu1/core7','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '196' : { 'object_path' : 'temperature/cpu1/core8','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '197' : { 'object_path' : 'temperature/cpu1/core9','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '198' : { 'object_path' : 'temperature/cpu1/core10','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '199' : { 'object_path' : 'temperature/cpu1/core11','poll_interval' : 5000,'scale' : -3,'units' : 'C',
+ 'critical_upper' : 100, 'critical_lower' : -100, 'warning_upper' : 90, 'warning_lower' : -99, 'emergency_enabled' : True },
+ '110' : { 'object_path' : 'temperature/dimm8','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '111' : { 'object_path' : 'temperature/dimm9','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '112' : { 'object_path' : 'temperature/dimm10','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '113' : { 'object_path' : 'temperature/dimm11','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '114' : { 'object_path' : 'temperature/dimm12','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '115' : { 'object_path' : 'temperature/dimm13','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '116' : { 'object_path' : 'temperature/dimm14','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ '117' : { 'object_path' : 'temperature/dimm15','poll_interval' : 5000,'scale' : -3,'units' : 'C' },
+ }
+ },
+}
+
+POWER_CONFIG = {
+ 'latch_out' : 'BMC_UCD_LATCH_LE',
+ 'power_good_in' : 'SYS_PWROK_BUFF',
+ 'power_up_outs' : [
+ ('SOFTWARE_PGOOD', True),
+ ('BMC_POWER_UP', True),
+ ],
+ 'reset_outs' : [
+ ],
+}
+
+# Miscellaneous non-poll sensor with system specific properties.
+# The sensor id is the same as those defined in ID_LOOKUP['SENSOR'].
+MISC_SENSORS = {
+ 0x5f : { 'class' : 'BootCountSensor' },
+ 0x05 : { 'class' : 'BootProgressSensor' },
+ 0x08 : { 'class' : 'OccStatusSensor',
+ 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0050/online' },
+ 0x09 : { 'class' : 'OccStatusSensor',
+ 'os_path' : '/sys/class/i2c-adapter/i2c-3/3-0051/online' },
+ 0xb5 : { 'class' : 'OperatingSystemStatusSensor' },
+ 0xb3 : { 'class' : 'PowerCap',
+ 'os_path' : '/sys/class/hwmon/hwmon3/user_powercap' },
+}
+
+# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
OpenPOWER on IntegriCloud