summaryrefslogtreecommitdiffstats
path: root/src/usr/hwas
diff options
context:
space:
mode:
authorElliott Dahle <dedahle@us.ibm.com>2013-12-09 11:17:38 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-01-15 13:47:19 -0600
commite147a8e14a254784ce4975806d1cc32d55af2df4 (patch)
tree3ab4b29d4e715f23250ed10431b4d85990b37529 /src/usr/hwas
parente6629f1ed483f2a73f9757c7dbf8d64b549b8828 (diff)
downloadtalos-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/usr/hwas')
-rw-r--r--src/usr/hwas/common/hwasCallout.C6
-rw-r--r--src/usr/hwas/hwasPlatCallout.C12
2 files changed, 11 insertions, 7 deletions
diff --git a/src/usr/hwas/common/hwasCallout.C b/src/usr/hwas/common/hwasCallout.C
index dcac818e8..1868efd56 100644
--- a/src/usr/hwas/common/hwasCallout.C
+++ b/src/usr/hwas/common/hwasCallout.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2012,2013 */
+/* COPYRIGHT International Business Machines Corp. 2012,2014 */
/* */
/* p1 */
/* */
@@ -196,7 +196,9 @@ void processCallout(errlHndl_t &io_errl,
pTarget,
pCalloutUD->clockType,
pCalloutUD->priority,
- io_errl);
+ io_errl,
+ pCalloutUD->clkDeconfigState,
+ pCalloutUD->clkGardErrorType);
if (errl)
{
HWAS_ERR("processCallout: error from platHandleClockCallout");
diff --git a/src/usr/hwas/hwasPlatCallout.C b/src/usr/hwas/hwasPlatCallout.C
index b8adddecf..164ffdf30 100644
--- a/src/usr/hwas/hwasPlatCallout.C
+++ b/src/usr/hwas/hwasPlatCallout.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2013 */
+/* COPYRIGHT International Business Machines Corp. 2013,2014 */
/* */
/* p1 */
/* */
@@ -166,16 +166,18 @@ errlHndl_t platHandleClockCallout(
TARGETING::Target *i_pTarget,
clockTypeEnum i_clockType,
callOutPriority i_priority,
- errlHndl_t &io_errl)
+ errlHndl_t &io_errl,
+ DeconfigEnum i_deconfigState,
+ GARD_ErrorType i_gardErrorType)
{
// WARNING:
// this hostboot code should not change io_errl, unless the caller of the
- // processCallouts() function also changes, as today it (errlentry.C) calls
- // from the errlEntry object
+ // processCallouts() function also changes, as today it (errlentry.C) calls
+ // from the errlEntry object
errlHndl_t errl = NULL;
- // hostboot does not handle or do any action for clock callouts
+ // Hostboot does not handle or do any action for clock callouts
return errl;
}
OpenPOWER on IntegriCloud