Skip to content

Commit

Permalink
Special wakeup bit correction
Browse files Browse the repository at this point in the history
Change-Id: I25d192ea8cea8de133f85cc0435503503a062028
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/63606
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com>
  • Loading branch information
Shakeebbk authored and sgupta2m committed Jul 31, 2018
1 parent bb25819 commit e6fa241
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/sbefw/app/power/sbecmdcntlinst.C
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,9 @@ inline bool getWarnCheckFlag(const sbeCntlInstRegMsgHdr_t & i_req)
return l_warnCheck;
}

static const uint64_t SGPE_ACTIVE = 0x0080000000000000ull;
static const uint64_t SPWKUP_ASSERT = 0x1000000000000000ull;
static const uint64_t SPWKUP_ASSERT = 0x8000000000000000ull;
static const uint64_t SPWKUP_DEASSERT = 0x0000000000000000ull;
static const uint64_t GPMMR_SPWKUP_DONE = 0x1000000000000000ull;
static const uint64_t GPMMR_SPWKUP_DONE = 0x8000000000000000ull;
static const uint32_t SPECIAL_WAKE_UP_POLL_INTERVAL_NS = 1000000; //1ms
static const uint32_t SPECIAL_WAKE_UP_POLL_INTERVAL_SIMICS = 1000000;
static const uint32_t SPECIAL_WAKEUP_TIMEOUT_COUNT = 100; // 100 * 1ms
Expand Down

0 comments on commit e6fa241

Please sign in to comment.