diff options
author | Andres Lugo-Reyes <aalugore@us.ibm.com> | 2015-05-05 13:14:27 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2015-06-19 16:00:51 -0500 |
commit | ef69ea46b6208625307bd42b2cf29beef10c8418 (patch) | |
tree | 1256d14ea7950e28714553f5503be2530bd04e9d /src/include/usr/vpd | |
parent | 4d1c59f09b6b0ab9236aa42694cb2e42cbe8d3eb (diff) | |
download | talos-hostboot-ef69ea46b6208625307bd42b2cf29beef10c8418.tar.gz talos-hostboot-ef69ea46b6208625307bd42b2cf29beef10c8418.zip |
Add serial numbers/part numbers to err logs w/ hwcallouts
Change-Id: Ifef77c71f40e70136cdb5172ce653f7a5ebfdd10
RTC:122890
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/16870
Tested-by: Jenkins Server
Tested-by: Jenkins OP Build CI
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/vpd')
-rw-r--r-- | src/include/usr/vpd/vpd_if.H | 9 | ||||
-rw-r--r-- | src/include/usr/vpd/vpdreasoncodes.H | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/include/usr/vpd/vpd_if.H b/src/include/usr/vpd/vpd_if.H index d3915ee6a..eff196042 100644 --- a/src/include/usr/vpd/vpd_if.H +++ b/src/include/usr/vpd/vpd_if.H @@ -70,6 +70,15 @@ namespace VPD */ bool cvpdPresent ( TARGETING::Target * i_target ); + + /** + * @brief This function sets the part and serial number attributes for + * a given target + * @param[in] i_target - the target to set the attributes for + * + */ + void setPartAndSerialNumberAttributes( TARGETING::Target * i_target ); + /** * @brief This function checks to see if the given pvpd target * is present diff --git a/src/include/usr/vpd/vpdreasoncodes.H b/src/include/usr/vpd/vpdreasoncodes.H index 2cfe8a68a..9692a4a78 100644 --- a/src/include/usr/vpd/vpdreasoncodes.H +++ b/src/include/usr/vpd/vpdreasoncodes.H @@ -48,6 +48,7 @@ enum vpdModuleId // Common VPD VPD_WRITE_PNOR = 0x10, VPD_ENSURE_CACHE_IS_IN_SYNC = 0x11, + VPD_GET_PN_AND_SN = 0x12, // IPVPD VPD_IPVPD_TRANSLATE_RECORD = 0x20, |