diff options
author | Sharath Manjunath <shamanj4@in.ibm.com> | 2018-11-28 11:47:12 -0600 |
---|---|---|
committer | Raja Das <rajadas2@in.ibm.com> | 2019-07-26 00:54:23 -0500 |
commit | d35148fad18b28d411a86c9852ca7151e284192c (patch) | |
tree | be66936d3c53fe9cc8ce736906ef33b61b93a5e7 /src/import | |
parent | d48d771bcf633bbdfe77bf7cc7c61968e870ecd7 (diff) | |
download | talos-sbe-d35148fad18b28d411a86c9852ca7151e284192c.tar.gz talos-sbe-d35148fad18b28d411a86c9852ca7151e284192c.zip |
Update exp_draminit to read values from attributes
Change-Id: I12c961a9a2f450753d777816638a31aae68c4a76
Original-Change-Id: Ie2e72c0bff21c3a27a37708b3bd06a940a2c29e9
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/69194
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
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: STEPHEN GLANCY <sglancy@us.ibm.com>
Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'src/import')
-rw-r--r-- | src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/shared/exp_consts.H | 9 | ||||
-rw-r--r-- | src/import/chips/ocmb/explorer/procedures/xml/error_info/mss_exp_errors.xml | 45 |
2 files changed, 54 insertions, 0 deletions
diff --git a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/shared/exp_consts.H b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/shared/exp_consts.H index 559c01d7..b6662902 100644 --- a/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/shared/exp_consts.H +++ b/src/import/chips/ocmb/explorer/procedures/hwp/memory/lib/shared/exp_consts.H @@ -49,6 +49,15 @@ namespace exp constexpr uint32_t OCMB_ADDR_SHIFT = 3; /// +/// @brief common explorer sizes +/// +enum sizes +{ + MAX_DIMM_PER_PORT = 2, + MAX_RANK_PER_DIMM = 4, +}; + +/// /// @brief explorer ffdc codes /// enum ffdc_codes diff --git a/src/import/chips/ocmb/explorer/procedures/xml/error_info/mss_exp_errors.xml b/src/import/chips/ocmb/explorer/procedures/xml/error_info/mss_exp_errors.xml index a0a9c973..55498eda 100644 --- a/src/import/chips/ocmb/explorer/procedures/xml/error_info/mss_exp_errors.xml +++ b/src/import/chips/ocmb/explorer/procedures/xml/error_info/mss_exp_errors.xml @@ -25,6 +25,51 @@ <hwpErrors> <hwpError> + <rc>RC_MSS_EXP_DRAMINIT_UNSUPPORTED_DIMM_TYPE</rc> + <description>Unsupported DIMM type encountered in draminit_training procedure</description> + <ffdc>OCMB_TARGET</ffdc> + <ffdc>PORT</ffdc> + <ffdc>TYPE</ffdc> + <callout> + <target>OCMB_TARGET</target> + <priority>HIGH</priority> + </callout> + <deconfigure> + <target>OCMB_TARGET</target> + </deconfigure> + </hwpError> + + <hwpError> + <rc>RC_MSS_EXP_DRAMINIT_UNSUPPORTED_DRAM_WIDTH</rc> + <description>Unsupported DRAM width encountered in draminit_training procedure</description> + <ffdc>OCMB_TARGET</ffdc> + <ffdc>PORT</ffdc> + <ffdc>DATA_WIDTH</ffdc> + <callout> + <target>OCMB_TARGET</target> + <priority>HIGH</priority> + </callout> + <deconfigure> + <target>OCMB_TARGET</target> + </deconfigure> + </hwpError> + + <hwpError> + <rc>RC_MSS_EXP_DRAMINIT_UNSUPPORTED_3DS_HEIGHT</rc> + <description>Unsupported 3DS height encountered in draminit_training procedure</description> + <ffdc>OCMB_TARGET</ffdc> + <ffdc>PORT</ffdc> + <ffdc>HEIGHT</ffdc> + <callout> + <target>OCMB_TARGET</target> + <priority>HIGH</priority> + </callout> + <deconfigure> + <target>OCMB_TARGET</target> + </deconfigure> + </hwpError> + + <hwpError> <rc>RC_MSS_EXP_ENTERPRISE_SETUP_ERROR</rc> <description>The enterprise mode bit is in the incorrect state</description> <ffdc>EXPECTED</ffdc> |