diff options
Diffstat (limited to 'src/bootloader/bootloader.C')
-rw-r--r-- | src/bootloader/bootloader.C | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootloader/bootloader.C b/src/bootloader/bootloader.C index eb1cb8743..2a2634055 100644 --- a/src/bootloader/bootloader.C +++ b/src/bootloader/bootloader.C @@ -46,7 +46,6 @@ #include <limits.h> #include <securerom/ROM.H> -#include <config.h> #include <secureboot/secure_reasoncodes.H> #include <p9_sbe_hb_structures.H> @@ -555,10 +554,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; } |