diff options
author | Sachin Gupta <sgupta2m@in.ibm.com> | 2016-10-17 10:54:37 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-10-18 09:15:54 -0400 |
commit | 3809d641eaf65fee454ebeef375afaaa9917ab29 (patch) | |
tree | eaa9543dd65a09db08aa94a7219e4a77dc82fd8e /src/import | |
parent | 27e53cdb19d3832243bc032095412c67426dee19 (diff) | |
download | talos-hostboot-3809d641eaf65fee454ebeef375afaaa9917ab29.tar.gz talos-hostboot-3809d641eaf65fee454ebeef375afaaa9917ab29.zip |
Fix for I2CDIV rate
Change-Id: Ic323ceaec9edee93cc7ce4a3861a33665c964bc4
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31338
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: SRINIVAS V. POLISETTY <srinivan@in.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/31344
Reviewed-by: Hostboot Team <hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import')
-rw-r--r-- | src/import/chips/p9/common/include/p9_frequency_buckets.H | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/import/chips/p9/common/include/p9_frequency_buckets.H b/src/import/chips/p9/common/include/p9_frequency_buckets.H index d3c9f3faf..7083cf766 100644 --- a/src/import/chips/p9/common/include/p9_frequency_buckets.H +++ b/src/import/chips/p9/common/include/p9_frequency_buckets.H @@ -40,13 +40,14 @@ const uint32_t NEST_PLL_FREQ_LIST[NEST_PLL_FREQ_BUCKETS] = // I2C bus divisor // index is bucket number +// The values in this list will be factor of 1:64 to the NEST_PLL_FREQ_LIST const uint32_t NEST_PLL_FREQ_I2CDIV_LIST[NEST_PLL_FREQ_BUCKETS] = { - 234, - 500, - 12, - 20, - 23 + 25, + 29, + 31, + 33, + 37 }; // constant defining number of MEM PLL frequency options ('buckets') |