Skip to content

Commit

Permalink
Enable URMOR hack for Axone
Browse files Browse the repository at this point in the history
Axone ended up using the same core as Nimbus so it has the same
bugs.

Change-Id: I2bb74ae22038bf9afcb055577d4a1902efaf2c9e
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/80822
Reviewed-by: Ilya Smirnov <ismirno@us.ibm.com>
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>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
  • Loading branch information
dcrowell77 committed Jul 23, 2019
1 parent 4d3e1f1 commit f2281d4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bootloader/bootloader.C
Expand Up @@ -555,10 +555,11 @@ namespace Bootloader{
writeScratchReg(MMIO_SCRATCH_HOSTBOOT_ACTIVE,
hostboot_string);

//Determine if P9N or P9C and apply URMOR hack
//All variants of P9 need to apply URMOR hack
uint64_t l_urmor_hack_required = 0x0;
PVR_t l_pvr(getPVR());
if((l_pvr.chipFamily == PVR_t::P9_ALL))
if((l_pvr.chipFamily == PVR_t::P9_ALL)
||((l_pvr.chipFamily == PVR_t::P9_AXONE)))
{
l_urmor_hack_required = 1;
}
Expand Down

0 comments on commit f2281d4

Please sign in to comment.