summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/memory
diff options
context:
space:
mode:
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/memory')
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/freq/sync.C10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/freq/sync.C b/src/import/chips/p9/procedures/hwp/memory/lib/freq/sync.C
index 4672cebf8..c3acf1070 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/freq/sync.C
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/freq/sync.C
@@ -93,6 +93,9 @@ fapi2::ReturnCode dimm_speed_map(const std::vector< fapi2::Target<TARGET_TYPE_MC
// DIMM speed is equal until we deduce otherwise
o_is_speed_equal = speed_equality::EQUAL_DIMM_SPEEDS;
+ // Make sure to stick the first one we found in the freq map.
+ o_freq_map.emplace( std::make_pair(*l_found_comp, l_comparator) );
+
// Loop through all MCSBISTs and store dimm speeds
// Starting from known 1st known good freq (non-zero) value
// I found above to avoid double looping target vector
@@ -120,6 +123,13 @@ fapi2::ReturnCode dimm_speed_map(const std::vector< fapi2::Target<TARGET_TYPE_MC
}
}
+ // Idiot check - most certainly a programming error
+ if (o_freq_map.size() == 0 )
+ {
+ FAPI_ERR("freq system freq map is empty? found mcbist: %s", mss::c_str(*l_found_comp));
+ fapi2::Assert(false);
+ }
+
fapi_try_exit:
return fapi2::current_err;
}
OpenPOWER on IntegriCloud