summaryrefslogtreecommitdiffstats
path: root/src/kernel
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2019-07-24 10:19:46 -0500
committerDaniel M Crowell <dcrowell@us.ibm.com>2019-07-25 07:59:49 -0500
commit0d622822edb081334fcd7cf258c46d667175eeea (patch)
tree2077f26a3627280bdd83f4995bb838fceb4c852d /src/kernel
parent2dc57288840a0a8dc19c55e435d608651ecdf919 (diff)
downloadtalos-hostboot-0d622822edb081334fcd7cf258c46d667175eeea.tar.gz
talos-hostboot-0d622822edb081334fcd7cf258c46d667175eeea.zip
Enable URMOR hack for Axone in shutdown path
Axone ended up using the same core as Nimbus so it has the same bugs. Change-Id: Ie27b3e49219ce872bbc8dda60aacccbb71093b8c Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/80909 Reviewed-by: Ilya Smirnov <ismirno@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-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: Dean Sanner <dsanner@us.ibm.com> Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/kernel')
-rw-r--r--src/kernel/misc.C5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kernel/misc.C b/src/kernel/misc.C
index 7d19131ef..482155cca 100644
--- a/src/kernel/misc.C
+++ b/src/kernel/misc.C
@@ -121,10 +121,11 @@ namespace KernelMisc
}
else
{
- //Determine if P9N/P9C and apply URMOR hack
+ //All variants of P9 need to apply URMOR hack
uint64_t l_urmor_hack = 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 = 1;
}
OpenPOWER on IntegriCloud