diff options
| author | Sumit Kumar <sumit_kumar@in.ibm.com> | 2019-02-04 03:53:09 -0600 |
|---|---|---|
| committer | RAJA DAS <rajadas2@in.ibm.com> | 2019-03-22 21:15:18 -0500 |
| commit | 7fc696f4f13140b44f5e3c479cc5f5ac98a561e5 (patch) | |
| tree | 4f1923c764838e65ae9ef61cf2a1adb8deb8a5c1 /src/import/hwpf/fapi2/include | |
| parent | e27b0cc841ed13a35b7b7c5a6c8d065fc9e00b06 (diff) | |
| download | talos-sbe-7fc696f4f13140b44f5e3c479cc5f5ac98a561e5.tar.gz talos-sbe-7fc696f4f13140b44f5e3c479cc5f5ac98a561e5.zip | |
FAPI_Infra:Add new member to structure ErrorInfoHwCallout
Enabling new member addition to the structure ErrorInfoHwCallout
to pass on the clock position wrt target.
Change-Id: I9501a418945143fbdb49519644cecdc31edaf04d
CQ:SW449714
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71281
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: PPE CI <ppe-ci+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com>
Reviewed-by: Manish K. Chowdhary <manichow@in.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71311
Reviewed-by: RAJA DAS <rajadas2@in.ibm.com>
Diffstat (limited to 'src/import/hwpf/fapi2/include')
| -rw-r--r-- | src/import/hwpf/fapi2/include/error_info.H | 8 | ||||
| -rw-r--r-- | src/import/hwpf/fapi2/include/error_info_defs.H | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/import/hwpf/fapi2/include/error_info.H b/src/import/hwpf/fapi2/include/error_info.H index e3640f5e..8ff3d902 100644 --- a/src/import/hwpf/fapi2/include/error_info.H +++ b/src/import/hwpf/fapi2/include/error_info.H @@ -169,11 +169,13 @@ struct ErrorInfoHwCallout /// @param[in] i_hw Hardware to callout /// @param[in] i_calloutPriority Priority of callout /// @param[in] i_refTarget Reference to reference target + /// @param[in] i_clkPos Clock position /// ErrorInfoHwCallout( const HwCallouts::HwCallout i_hw, const CalloutPriorities::CalloutPriority i_calloutPriority, - const Target<TARGET_TYPE_ALL>& i_refTarget); + const Target<TARGET_TYPE_ALL>& i_refTarget, + const uint8_t i_clkPos = CLOCK_POS_UNDEF); #ifdef FAPI_CUSTOM_MALLOC /// @@ -202,6 +204,9 @@ struct ErrorInfoHwCallout // The reference target (needed for some HW callouts to identify what to // callout). The target handle is NULL if there is no reference target. Target<TARGET_TYPE_ALL> iv_refTarget; + + // Clock position + uint8_t iv_clkPos; }; /// @@ -548,6 +553,7 @@ struct ErrorInfoEntryHwCallout uint8_t iv_hw; uint8_t iv_calloutPriority; uint8_t iv_refObjIndex; + uint8_t iv_clkPos; void addErrorInfo(std::shared_ptr<ErrorInfo> i_info, const void* const* i_object) const; }; diff --git a/src/import/hwpf/fapi2/include/error_info_defs.H b/src/import/hwpf/fapi2/include/error_info_defs.H index 7871c99b..e312a84b 100644 --- a/src/import/hwpf/fapi2/include/error_info_defs.H +++ b/src/import/hwpf/fapi2/include/error_info_defs.H @@ -40,6 +40,8 @@ #endif namespace fapi2 { +// For HW callout - Clock position undefined to 0xFF(default) +#define CLOCK_POS_UNDEF 0xFF /// /// @brief Type to hold the ffdc data to be sent to hostboot |

