Skip to content

Commit

Permalink
Add centaur dynamic VDDR code to hostboot
Browse files Browse the repository at this point in the history
    -Update the makefile for istep07 and add
     the call to the p9c_mss_vddr_offset hwp
    -Update attribute mapping to separate the
     centaur specific values
    -Update the centaur target to include the
     attribute for the vddr offset voltage
    -Update createVddrMsg to use new attributes
     for centaur voltages

Change-Id: I3be51277b7693aa91e60c8873844be785bf97c12
RTC:157672
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/58294
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
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: Thi N. Tran <thi@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
  • Loading branch information
rjknight authored and wghoffa committed May 11, 2018
1 parent ad18149 commit 496156f
Show file tree
Hide file tree
Showing 5 changed files with 395 additions and 168 deletions.
20 changes: 10 additions & 10 deletions src/usr/isteps/hbToHwsvVoltageMsg.C
Original file line number Diff line number Diff line change
Expand Up @@ -367,41 +367,41 @@ void HBToHwsvVoltageMsg::createVddrData(
{
(void)addMemoryVoltageDomains<
TARGETING::ATTR_MSS_VDD_PROGRAM,
TARGETING::ATTR_MSS_VOLT_VDD_MILLIVOLTS,
TARGETING::ATTR_MSS_VOLT_VDD_OFFSET_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VDD_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VDD_OFFSET_MILLIVOLTS,
TARGETING::ATTR_VDD_ID>(
pMembuf,
io_request);

(void)addMemoryVoltageDomains<
TARGETING::ATTR_MSS_AVDD_PROGRAM,
TARGETING::ATTR_MSS_VOLT_AVDD_MILLIVOLTS,
TARGETING::ATTR_MSS_VOLT_AVDD_OFFSET_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_AVDD_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_AVDD_OFFSET_MILLIVOLTS,
TARGETING::ATTR_AVDD_ID>(
pMembuf,
io_request);

(void)addMemoryVoltageDomains<
TARGETING::ATTR_MSS_VCS_PROGRAM,
TARGETING::ATTR_MSS_VOLT_VCS_MILLIVOLTS,
TARGETING::ATTR_MSS_VOLT_VCS_OFFSET_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VCS_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VCS_OFFSET_MILLIVOLTS,
TARGETING::ATTR_VCS_ID>(
pMembuf,
io_request);

(void)addMemoryVoltageDomains<
TARGETING::ATTR_MSS_VPP_PROGRAM,
TARGETING::ATTR_MSS_VOLT_VPP_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VPP,
TARGETING::ATTR_CEN_MSS_VOLT_VPP_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VPP_OFFSET_MILLIVOLTS,
TARGETING::ATTR_VPP_ID>(
pMembuf,
io_request);
}

(void)addMemoryVoltageDomains<
TARGETING::ATTR_MSS_VDDR_PROGRAM,
TARGETING::ATTR_MSS_VOLT_VDDR_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT,
TARGETING::ATTR_CEN_MSS_VOLT_VDDR_MILLIVOLTS,
TARGETING::ATTR_CEN_MSS_VOLT_VDDR_OFFSET_MILLIVOLTS,
TARGETING::ATTR_VDDR_ID>(
pMembuf,
io_request);
Expand Down

0 comments on commit 496156f

Please sign in to comment.