diff options
author | Jaymes Wilks <mjwilks@us.ibm.com> | 2016-01-28 11:09:12 -0600 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-03-03 18:37:14 -0500 |
commit | 97f5d0db8ff37ebfd16220b368aea5f5b2da0c10 (patch) | |
tree | 1645246fa57c483793e560c46ddd55fffb615041 /src/include/usr/errl/errlmanager.H | |
parent | b5e8d8cff288569a1a0d591bc83d5597c147c68d (diff) | |
download | blackbird-hostboot-97f5d0db8ff37ebfd16220b368aea5f5b2da0c10.tar.gz blackbird-hostboot-97f5d0db8ff37ebfd16220b368aea5f5b2da0c10.zip |
No Callout in SEL for ABUS
This commit adds endpoint information into SELs for abus callouts.
Change-Id: Ie83ccd437d0a1ed6ae96c24bab31843af19fda9f
CQ:SW321779
ForwardPort: yes
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/20723
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr/errl/errlmanager.H')
-rw-r--r-- | src/include/usr/errl/errlmanager.H | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/src/include/usr/errl/errlmanager.H b/src/include/usr/errl/errlmanager.H index 745330537..7112a85eb 100644 --- a/src/include/usr/errl/errlmanager.H +++ b/src/include/usr/errl/errlmanager.H @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2015 */ +/* Contributors Listed Below - COPYRIGHT 2011,2016 */ /* [+] Google Inc. */ /* [+] International Business Machines Corp. */ /* */ @@ -605,7 +605,9 @@ class SensorModifier * stored in the rightmost bit so it's mask is 0x0000000000000001. */ enum { - memory_plugging_error_mask=0x0000000000000001 + memory_plugging_error_mask=0x0000000000000001, + bus_error_mask=0x0000000000000002, + membus_error_mask=0x00000000000000004, }; public: @@ -637,13 +639,14 @@ public: * * @param [in] i_sensorType Sensor type to be considered for modification * @param [out] o_eventDirType EventDirType to be modified based on sensor - * @param [out] o_specificOffset Offset to be modified based on sensor + * @param [out] o_specificOffset An array of offsets to modified based on + * sensor. * - * @return Returns a boolean, where a value of true indicates that the - * sensor was modified. + * @return Returns a boolean, where a value of true indicates that the + * sensor was modified. */ bool modifySensor(uint8_t i_sensorType, uint8_t& o_eventDirType, - uint8_t& o_specificOffset); + uint8_t& o_specificOffset); }; #endif //CONFIG_BMC_IPMI |