Skip to content

Commit

Permalink
Adds explorer MCBIST address/data traps processing
Browse files Browse the repository at this point in the history
Change-Id: If0a805d0568d19076257a4591dd4ac017da36204
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/80910
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: ANDRE A MARIN <aamarin@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/81219
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
  • Loading branch information
sglancy6 authored and RAJA DAS committed Aug 7, 2019
1 parent 84c8885 commit 05669c5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Expand Up @@ -128,6 +128,7 @@ enum sizes
MAX_SYMBOLS_PER_PORT = 72,
MAX_RANKS_DIMM1 = 2,
MAX_MRANK_PER_PORT = MAX_DIMM_PER_PORT * MAX_RANK_PER_DIMM,
MAX_BYTES_PER_PORT = MAX_DQ_BITS_PER_PORT / BITS_PER_BYTE,
};

#endif
Expand Down
Expand Up @@ -115,6 +115,14 @@ enum conversions
NIBBLES_PER_BYTE = 2,
BITS_PER_NIBBLE = 4,
BITS_PER_BYTE = 8,
BIT_POS_FOR_BYTE0 = BITS_PER_BYTE * 0,
BIT_POS_FOR_BYTE1 = BITS_PER_BYTE * 1,
BIT_POS_FOR_BYTE2 = BITS_PER_BYTE * 2,
BIT_POS_FOR_BYTE3 = BITS_PER_BYTE * 3,
BIT_POS_FOR_BYTE4 = BITS_PER_BYTE * 4,
BIT_POS_FOR_BYTE5 = BITS_PER_BYTE * 5,
BIT_POS_FOR_BYTE6 = BITS_PER_BYTE * 6,
BIT_POS_FOR_BYTE7 = BITS_PER_BYTE * 7,

// Used by exp_decoder.C for dA to cA
DECI_TO_CENTI = 10,
Expand Down

0 comments on commit 05669c5

Please sign in to comment.