diff options
| author | Mike Jones <mjjones@us.ibm.com> | 2013-11-18 13:40:12 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-12-03 14:44:23 -0600 |
| commit | 83b1c3a6b7512ad61baa1affacf3176233b948b3 (patch) | |
| tree | 52e147adf4531d5467a075cc8e2f7be352bac30c /src/usr/hwpf/plat | |
| parent | c38de5ef9f27b3d6f21d838597adcbf1aec15ab7 (diff) | |
| download | blackbird-hostboot-83b1c3a6b7512ad61baa1affacf3176233b948b3.tar.gz blackbird-hostboot-83b1c3a6b7512ad61baa1affacf3176233b948b3.zip | |
Support new proc/memb pll_ring_attributes
Change-Id: I5ba5fd112a43b77a2cb41349379fc113b6f6b5f4
CQ: SW234336
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7309
Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf/plat')
| -rw-r--r-- | src/usr/hwpf/plat/fapiPlatAttributeService.C | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/usr/hwpf/plat/fapiPlatAttributeService.C b/src/usr/hwpf/plat/fapiPlatAttributeService.C index 5a893c4da..00ca0ed69 100644 --- a/src/usr/hwpf/plat/fapiPlatAttributeService.C +++ b/src/usr/hwpf/plat/fapiPlatAttributeService.C @@ -50,7 +50,8 @@ #include <hwpf/hwp/mvpd_accessors/getMBvpdVersion.H> #include <hwpf/hwp/mvpd_accessors/getMBvpdDram2NModeEnabled.H> #include <fapiPllRingAttr.H> -#include <getPllRingAttr.H> +#include <hwpf/hwp/pll_accessors/getPllRingAttr.H> +#include <hwpf/hwp/pll_accessors/getPllRingInfoAttr.H> // The following file checks at compile time that all HWPF attributes are // handled by Hostboot. This is done to ensure that the HTML file listing @@ -1576,6 +1577,18 @@ fapi::ReturnCode fapiPlatGetPllAttr(const fapi::AttributeId i_targAttrId, } //----------------------------------------------------------------------------- +fapi::ReturnCode fapiPlatGetPllInfoAttr( + const fapi::Target * i_pProcChip, + const fapi::getPllRingInfo::Attr i_attr, + void * o_pVal, + const size_t i_len) +{ + fapi::ReturnCode l_rc; + FAPI_EXEC_HWP(l_rc, getPllRingInfoAttr, *i_pProcChip, i_attr, o_pVal, i_len); + return l_rc; +} + +//----------------------------------------------------------------------------- fapi::ReturnCode fapiPlatGetSpdAttrAccessor( const fapi::Target * i_pDimm, const fapi::getSpdAttr::Attr i_attr, |

