diff options
| author | Dan Crowell <dcrowell@us.ibm.com> | 2016-09-28 09:39:55 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-10-16 21:45:43 -0400 |
| commit | 560a3667e8a581005586f9c731bfa5c1fe0e911d (patch) | |
| tree | 7eb981aa83d018bcfb41d2122e32b19825b55673 /src/usr/ipmi | |
| parent | af6a053e12c60b67a951b578275ce2e0968de344 (diff) | |
| download | talos-hostboot-560a3667e8a581005586f9c731bfa5c1fe0e911d.tar.gz talos-hostboot-560a3667e8a581005586f9c731bfa5c1fe0e911d.zip | |
Add interfaces for HDAT to fetch new data
New interfaces added:
I2C::getDeviceInfo()
IPMI::getBmcInfo()
CONSOLE::getUartInfo()
New attributes:
SYSTEM_FAMILY
SYSTEM_TYPE
Change-Id: I7d1a018c01067a19b8a66f853e11922c910fcc54
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/30405
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Elizabeth K. Liner <eliner@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/ipmi')
| -rw-r--r-- | src/usr/ipmi/ipmirp.C | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/usr/ipmi/ipmirp.C b/src/usr/ipmi/ipmirp.C index ae3cf0048..b4fbfc047 100644 --- a/src/usr/ipmi/ipmirp.C +++ b/src/usr/ipmi/ipmirp.C @@ -1097,4 +1097,15 @@ namespace IPMI return err; } + /** + * Retrieve some information about the BMC and the connection + * we have to it. + */ + BmcInfo_t getBmcInfo(void) + { + //@TODO-RTC:161648-Fill in data + BmcInfo_t l_info; + return l_info; + } + }; |

