summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/memory/lib/spd
diff options
context:
space:
mode:
authorJacob Harvey <jlharvey@us.ibm.com>2017-02-01 13:20:50 -0600
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2017-02-21 09:29:56 -0500
commit06892e3cb492e12292b5f76a05c55aa0f21b65ed (patch)
treeeef16e176a6306d2143d92309ce8fbd2e153eccc /src/import/chips/p9/procedures/hwp/memory/lib/spd
parentdf47aac6817658442cefe58945e21062d8513f5d (diff)
downloadtalos-hostboot-06892e3cb492e12292b5f76a05c55aa0f21b65ed.tar.gz
talos-hostboot-06892e3cb492e12292b5f76a05c55aa0f21b65ed.zip
Fixing raw card setting for DIMMs
Change-Id: I5288b6bd10e7ccdf2a1d7669eaf11b7a1c80b35e Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35753 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Reviewed-by: Louis Stermole <stermole@us.ibm.com> Reviewed-by: Brian R. Silver <bsilver@us.ibm.com> Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com> Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com> Reviewed-by: Matt K. Light <mklight@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/35847 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/memory/lib/spd')
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/spd/common/rcw_settings.H6
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/spd/lrdimm/lrdimm_raw_cards.C3
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/spd/rdimm/rdimm_raw_cards.C6
3 files changed, 2 insertions, 13 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/spd/common/rcw_settings.H b/src/import/chips/p9/procedures/hwp/memory/lib/spd/common/rcw_settings.H
index d71896316..3eec7a4c7 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/spd/common/rcw_settings.H
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/spd/common/rcw_settings.H
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2016 */
+/* Contributors Listed Below - COPYRIGHT 2016,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -54,7 +54,6 @@ struct rcw_settings
uint64_t iv_rc01;
uint64_t iv_rc02;
uint64_t iv_rc06_07;
- uint64_t iv_rc08;
uint64_t iv_rc09;
uint64_t iv_rc0b;
uint64_t iv_rc0c;
@@ -103,7 +102,6 @@ struct rcw_settings
/// @param[in] i_rc01 setting for register control word (RC01)
/// @param[in] i_rc02 setting for register control word (RC02)
/// @param[in] i_rc06_07 setting for register control word (RCO6 & RC07)
- /// @param[in] i_rc08 setting for register control word (RC08)
/// @param[in] i_rc09 setting for register control word (RC09)
/// @param[in] i_rc0b setting for register control word (RC0B)
/// @param[in] i_rc0c setting for register control word (RC0C)
@@ -123,7 +121,6 @@ struct rcw_settings
const uint64_t i_rc01,
const uint64_t i_rc02,
const uint64_t i_rc06_07,
- const uint64_t i_rc08,
const uint64_t i_rc09,
const uint64_t i_rc0b,
const uint64_t i_rc0c,
@@ -142,7 +139,6 @@ struct rcw_settings
iv_rc01(i_rc01),
iv_rc02(i_rc02),
iv_rc06_07(i_rc06_07),
- iv_rc08(i_rc08),
iv_rc09(i_rc09),
iv_rc0b(i_rc0b),
iv_rc0c(i_rc0c),
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/spd/lrdimm/lrdimm_raw_cards.C b/src/import/chips/p9/procedures/hwp/memory/lib/spd/lrdimm/lrdimm_raw_cards.C
index dfbef75e6..ecbd64b64 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/spd/lrdimm/lrdimm_raw_cards.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/spd/lrdimm/lrdimm_raw_cards.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2016 */
+/* Contributors Listed Below - COPYRIGHT 2016,2017 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -54,7 +54,6 @@ rcw_settings lrdimm_rc_b0( 0x00, // RC00
0x00, // RC01 (C might be the right answer)
0x00, // RC02
0x1F, // RC06_7
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/spd/rdimm/rdimm_raw_cards.C b/src/import/chips/p9/procedures/hwp/memory/lib/spd/rdimm/rdimm_raw_cards.C
index a61640a84..c252c8f43 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/spd/rdimm/rdimm_raw_cards.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/spd/rdimm/rdimm_raw_cards.C
@@ -53,7 +53,6 @@ rcw_settings rdimm_rc_c1( 0x00, // RC00
0x00, // RC01 (C might be the right answer?)
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
@@ -77,7 +76,6 @@ rcw_settings rdimm_rc_c2( 0x00, // RC00
0x00, // RC01 (C might be the right answer?)
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
@@ -100,7 +98,6 @@ rcw_settings rdimm_rc_a1( 0x00, // RC00
0x00, // RC01 (C might be the right answer?)
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
@@ -124,7 +121,6 @@ rcw_settings rdimm_rc_b1( 0x00, // RC00
0x00, // RC01 (C might be the right answer?)
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08 //Should be set in eff_config, decided via 3DS/ SDP
0x00, // RC09 //Should be set in eff_config for CKE power DOWN modep:q
0x0E, // RC0B
0x00, // RC0C
@@ -147,7 +143,6 @@ rcw_settings rdimm_rc_b2( 0x00, // RC00
0x00, // RC01 (C might be the right answer?)
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
@@ -170,7 +165,6 @@ rcw_settings rdimm_rc_vbu( 0x00, // RC00
0x00, // RC01
0x00, // RC02
0x0F, // RC06_07
- 0x03, // RC08
0x00, // RC09
0x0E, // RC0B
0x00, // RC0C
OpenPOWER on IntegriCloud