diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2019-07-23 11:44:24 -0500 |
|---|---|---|
| committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2019-07-23 18:33:29 -0500 |
| commit | f2281d448689ac930b61159365a8481808bef3a1 (patch) | |
| tree | 04e56c447ad543f30f93ce4e360d306f2e9c783b /src/bootloader | |
| parent | 4d3e1f11e57362016d94e14ed0e5426c1967f559 (diff) | |
| download | blackbird-hostboot-f2281d448689ac930b61159365a8481808bef3a1.tar.gz blackbird-hostboot-f2281d448689ac930b61159365a8481808bef3a1.zip | |
Enable URMOR hack for Axone
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>
Diffstat (limited to 'src/bootloader')
| -rw-r--r-- | src/bootloader/bootloader.C | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/bootloader/bootloader.C b/src/bootloader/bootloader.C index eb1cb8743..8c1499a85 100644 --- a/src/bootloader/bootloader.C +++ b/src/bootloader/bootloader.C @@ -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; } |

