Skip to content

Commit

Permalink
Adds utility to read explorer delay tap size
Browse files Browse the repository at this point in the history
Change-Id: Iff0a0075cfbe906a65b9724cf8f0ecf11c1215f2
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/92916
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>
Reviewed-by: Mark Pizzutillo <mark.pizzutillo@ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/92921
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: Christian R Geddes <crgeddes@us.ibm.com>
  • Loading branch information
sglancy6 authored and crgeddes committed Mar 25, 2020
1 parent ba56009 commit 5f5573b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
Expand Up @@ -3250,6 +3250,17 @@ static const uint64_t EXP_DDR4_PHY_DBYTE9_VREFDAC0_R6 = 0x4065900ull;
static const uint64_t EXP_DDR4_PHY_DBYTE9_VREFDAC0_R7 = 0x4065D00ull;
static const uint64_t EXP_DDR4_PHY_DBYTE9_VREFDAC0_R8 = 0x4066100ull;
static const uint64_t EXP_DDR4_PHY_DDR_PHY_CONTROL = 0x6000118ull;
static const uint64_t EXP_DDR4_PHY_DBYTE0_DXLCDLSTATUS = 0x4040390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE1_DXLCDLSTATUS = 0x4044390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE2_DXLCDLSTATUS = 0x4048390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE3_DXLCDLSTATUS = 0x404C390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE4_DXLCDLSTATUS = 0x4050390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE5_DXLCDLSTATUS = 0x4054390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE6_DXLCDLSTATUS = 0x4058390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE7_DXLCDLSTATUS = 0x405C390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE8_DXLCDLSTATUS = 0x4060390ull;
static const uint64_t EXP_DDR4_PHY_DBYTE9_DXLCDLSTATUS = 0x4064390ull;
static const uint64_t EXP_DDR4_PHY_MASTER0_LCDLDBGCNTL = 0x408038Cull;



Expand Down
Expand Up @@ -53,5 +53,11 @@ static const uint8_t EXP_APBONLY0_MICROCONTMUXSEL_MICROCONTMUXSEL =
static const uint8_t EXP_DDR4_PHY_DDR_PHY_CONTROL_DFI_AC_SELECT = 63 - 8;
static const uint8_t EXP_DDR4_PHY_DDR_PHY_CONTROL_DFI_CFGCMD_AC_MASK = 63 - 5;
static const uint8_t EXP_DDR4_PHY_DDR_PHY_CONTROL_DFI_CFGCMD_AC_MASK_LEN = 2;
static const uint64_t EXP_DDR4_PHY_DBYTE0_DXLCDLSTATUS_DXLCDLFINESNAPVAL = 63 - 9;
static const uint64_t EXP_DDR4_PHY_DBYTE0_DXLCDLSTATUS_DXLCDLFINESNAPVAL_LEN = 10;
static const uint64_t EXP_DDR4_PHY_MASTER0_LCDLDBGCNTL_LCDLTSTENABLE = 63 - 11;
static const uint64_t EXP_DDR4_PHY_MASTER0_LCDLDBGCNTL_LCDLFINESNAP = 63 - 10;
static const uint64_t EXP_DDR4_PHY_MASTER0_LCDLDBGCNTL_LCDLSTATUSSEL = 63 - 15;
static const uint64_t EXP_DDR4_PHY_MASTER0_LCDLDBGCNTL_LCDLSTATUSSEL_LEN = 4;

#endif

0 comments on commit 5f5573b

Please sign in to comment.