diff options
author | Prasad Bg Ranganath <prasadbgr@in.ibm.com> | 2018-05-23 05:02:06 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-06-08 15:49:45 -0400 |
commit | 261923ec2039da55f441407e2406e04110bb6efd (patch) | |
tree | 3f257ffbab3722289f6e49f1c39f3fb90467ba9f /src/import/chips/p9/procedures/hwp/lib | |
parent | 77eb9fe3e55ace204f597a7a525ae2a4be1122be (diff) | |
download | talos-hostboot-261923ec2039da55f441407e2406e04110bb6efd.tar.gz talos-hostboot-261923ec2039da55f441407e2406e04110bb6efd.zip |
PPB: Bug fix in computing IAC Vdn value
- Hardcode the Vdn Ceff value to 1 as the dimension is not supported in the WOF
Tables. This avoids the root of the issue noted which was VPD data
dependent in the previous algoithm for an unused element.
- Update OCC Pstate Parameter Block comments on Iddq units to 5mA
-- This is non-functional update to ensure the header comments represent
reality and is for documentation only!!! (no pre/co-req)
Key_Cronus_Test=PM_REGRESS
Change-Id: I3a790160998eda4e384d9bcb9da7198aa45f457c
CQ:SW429936
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/59241
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Martha Broyles <mbroyles@us.ibm.com>
Reviewed-by: Francesco A. Campisano <campisan@us.ibm.com>
Dev-Ready: Francesco A. Campisano <campisan@us.ibm.com>
UseHW-Fleetwood: Francesco A. Campisano <campisan@us.ibm.com>
Reviewed-by: Andres A. Lugo-Reyes <aalugore@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/59247
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/lib')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/lib/p9_pstates_occ.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/import/chips/p9/procedures/hwp/lib/p9_pstates_occ.h b/src/import/chips/p9/procedures/hwp/lib/p9_pstates_occ.h index 058759642..6ef85286e 100644 --- a/src/import/chips/p9/procedures/hwp/lib/p9_pstates_occ.h +++ b/src/import/chips/p9/procedures/hwp/lib/p9_pstates_occ.h @@ -107,19 +107,19 @@ typedef struct /// Spare uint8_t spare[8]; - /// IVDD ALL Good Cores ON; 1mA units + /// IVDD ALL Good Cores ON; 5mA units iddq_entry_t ivdd_all_good_cores_on_caches_on[IDDQ_MEASUREMENTS]; - /// IVDD ALL Cores OFF; 1mA units + /// IVDD ALL Cores OFF; 5mA units iddq_entry_t ivdd_all_cores_off_caches_off[IDDQ_MEASUREMENTS]; - /// IVDD ALL Good Cores OFF; 1mA units + /// IVDD ALL Good Cores OFF; 5mA units iddq_entry_t ivdd_all_good_cores_off_good_caches_on[IDDQ_MEASUREMENTS]; - /// IVDD Quad 0 Good Cores ON, Caches ON; 1mA units + /// IVDD Quad 0 Good Cores ON, Caches ON; 5mA units iddq_entry_t ivdd_quad_good_cores_on_good_caches_on[MAXIMUM_QUADS][IDDQ_MEASUREMENTS]; - /// IVDDN; 1mA units + /// IVDDN; 5mA units iddq_entry_t ivdn[IDDQ_MEASUREMENTS]; /// IVDD ALL Good Cores ON, Caches ON; 0.5C units |