diff options
| author | Elliott Dahle <dedahle@us.ibm.com> | 2013-12-09 11:17:38 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-01-15 13:47:19 -0600 |
| commit | e147a8e14a254784ce4975806d1cc32d55af2df4 (patch) | |
| tree | 3ab4b29d4e715f23250ed10431b4d85990b37529 /src/include/usr/hwas/common | |
| parent | e6629f1ed483f2a73f9757c7dbf8d64b549b8828 (diff) | |
| download | talos-hostboot-e147a8e14a254784ce4975806d1cc32d55af2df4.tar.gz talos-hostboot-e147a8e14a254784ce4975806d1cc32d55af2df4.zip | |
Add Deconfig State / GARD Error parameters to addClockCallout(...)
Change-Id: Ia8bd707604651f8779897a177657eaa5e639a37d
RTC:91649
CMVC-Coreq:910647
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7863
Tested-by: Jenkins Server
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: Christopher T. Phan <cphan@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/hwas/common')
| -rw-r--r-- | src/include/usr/hwas/common/hwasCallout.H | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/include/usr/hwas/common/hwasCallout.H b/src/include/usr/hwas/common/hwasCallout.H index c22713329..09e776dc8 100644 --- a/src/include/usr/hwas/common/hwasCallout.H +++ b/src/include/usr/hwas/common/hwasCallout.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2012,2013 */ +/* COPYRIGHT International Business Machines Corp. 2012,2014 */ /* */ /* p1 */ /* */ @@ -146,6 +146,8 @@ typedef struct callout_ud }; struct { // type == CLOCK_CALLOUT clockTypeEnum clockType; // uint32_t + DeconfigEnum clkDeconfigState; // uint32_t + GARD_ErrorType clkGardErrorType; // uint32_t // one Target will follow }; }; @@ -235,6 +237,8 @@ errlHndl_t platHandleBusCallout( * @param[in] i_clockType Enum indicating which type of clock * @param[in] i_priority Enum indicating the priority of the callout * @param[in] io_errl reference to errlHnld for this errlog + * @param[in] i_deconfigState Enum indicating whether to deconfig or not + * @param[in] i_gardErrType Enum indicating the type of failure * * @return errlHndl_t valid errlHndl_t handle if there was an error, * NULL if no errors; @@ -243,7 +247,9 @@ errlHndl_t platHandleClockCallout( TARGETING::Target *i_pTarget, clockTypeEnum i_clockType, callOutPriority i_priority, - errlHndl_t &io_errl); + errlHndl_t &io_errl, + DeconfigEnum i_deconfigState = DECONFIG, + GARD_ErrorType i_gardErrorType = GARD_Fatal); #endif // not PARSER |

