diff options
author | Sachin Gupta <sgupta2m@in.ibm.com> | 2018-09-24 00:10:53 -0500 |
---|---|---|
committer | Sachin Gupta <sgupta2m@in.ibm.com> | 2018-09-26 12:44:11 -0500 |
commit | 629cf0ba3bf70d7b8f1006fadb210f15cb060afd (patch) | |
tree | 2dc38ea4454dce3b555807e58b6506cd1d37da5b | |
parent | c9c321873ecd46104c7de15ef8b39a135829d29b (diff) | |
download | talos-sbe-629cf0ba3bf70d7b8f1006fadb210f15cb060afd.tar.gz talos-sbe-629cf0ba3bf70d7b8f1006fadb210f15cb060afd.zip |
Support ATTR_LPC_CONSOLE_CNFG attribute
SBE has started supporting LPC console messages on openpower
systems. All systems does not support console as its needs
LPC/BMC support. So this attribute will be used by SBE to control
this feature. HB will customise this attribute in SBE.
Change-Id: I7859e53c8f7b7c48ad70f85583026578a05eb448
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66507
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66521
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
-rw-r--r-- | src/import/chips/p9/procedures/xml/attribute_info/p9_sbe_attributes.xml | 4 | ||||
-rwxr-xr-x | src/import/chips/p9/procedures/xml/attribute_info/pervasive_attributes.xml | 11 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/import/chips/p9/procedures/xml/attribute_info/p9_sbe_attributes.xml b/src/import/chips/p9/procedures/xml/attribute_info/p9_sbe_attributes.xml index 454ce327..ccfd27ce 100644 --- a/src/import/chips/p9/procedures/xml/attribute_info/p9_sbe_attributes.xml +++ b/src/import/chips/p9/procedures/xml/attribute_info/p9_sbe_attributes.xml @@ -616,4 +616,8 @@ attribute tank <name>ATTR_CHIP_EC_FEATURE_HW403111</name> <virtual/> </entry> + <entry> + <name>ATTR_LPC_CONSOLE_CNFG</name> + <value>0x00</value> + </entry> </entries> diff --git a/src/import/chips/p9/procedures/xml/attribute_info/pervasive_attributes.xml b/src/import/chips/p9/procedures/xml/attribute_info/pervasive_attributes.xml index d8a6a717..7e20ec01 100755 --- a/src/import/chips/p9/procedures/xml/attribute_info/pervasive_attributes.xml +++ b/src/import/chips/p9/procedures/xml/attribute_info/pervasive_attributes.xml @@ -786,4 +786,15 @@ <writeable/> </attribute> +<attribute> + <id>ATTR_LPC_CONSOLE_CNFG</id> + <targetType>TARGET_TYPE_PROC_CHIP</targetType> + <description>Indicates if LPC console is enabled on system</description> + <valueType>uint8</valueType> + <enum>ENABLE = 0x1,DISABLE = 0x0</enum> + <default>DISABLE</default> + <platInit/> + <mrwHide/> +</attribute> + </attributes> |