Skip to content

Commit

Permalink
Set Gemini EC level to be 0x10 if 0x00 is found in SPD revision field
Browse files Browse the repository at this point in the history
The SPD for ocmb cards does not have the EC level but instead has the
"revision". Revision 0x00 for the gemini should be EC level 0x10. If
we make the gemini EC level to be 0x00 the EC attributes will not work.

Change-Id: I4eb0025a7e9758cb0b5238a349bc7e6d48ac86ff
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/81930
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Roland Veloz <rveloz@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@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: Daniel M Crowell <dcrowell@us.ibm.com>
  • Loading branch information
crgeddes authored and dcrowell77 committed Aug 9, 2019
1 parent 7e50071 commit b424be0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/usr/hwas/hwasPlat.C
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ errlHndl_t ocmbTranslateSpdToIdec(const uint16_t i_value,

const uint16_t OCMB_ID = i_isID ? i_value : i_id;

const uint32_t GEMINI_EC = 0x0000;
const uint32_t GEMINI_EC = 0x0010;
const uint32_t GEMINI_SPD_EC = 0x0000;
const uint32_t EXPLORER_EC = 0x0010;
const uint32_t EXPLORER_SPD_EC = 0x0000;
Expand Down

0 comments on commit b424be0

Please sign in to comment.