diff options
| author | Corey Swenson <cswenson@us.ibm.com> | 2016-12-05 21:35:38 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-02-03 10:34:29 -0500 |
| commit | da3675d8e4c72ea6e952546e27432784c0a99a9b (patch) | |
| tree | da7168594c296f864397a7f93b3e2747236525bf /src/include/usr/scom | |
| parent | 135b23e1902271c8df773c14994a84505e0b5c20 (diff) | |
| download | talos-hostboot-da3675d8e4c72ea6e952546e27432784c0a99a9b.tar.gz talos-hostboot-da3675d8e4c72ea6e952546e27432784c0a99a9b.zip | |
Add HCODE scom update interface to HBRT
Change-Id: I8d6a8aa2330ec95e1ce612979c9fa037a633d07d
RTC:150219
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/33702
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr/scom')
| -rw-r--r-- | src/include/usr/scom/scomif.H | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/src/include/usr/scom/scomif.H b/src/include/usr/scom/scomif.H new file mode 100644 index 000000000..4bba1112b --- /dev/null +++ b/src/include/usr/scom/scomif.H @@ -0,0 +1,49 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/usr/scom/scomif.H $ */ +/* */ +/* OpenPOWER HostBoot Project */ +/* */ +/* Contributors Listed Below - COPYRIGHT 2016,2017 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* Licensed under the Apache License, Version 2.0 (the "License"); */ +/* you may not use this file except in compliance with the License. */ +/* You may obtain a copy of the License at */ +/* */ +/* http://www.apache.org/licenses/LICENSE-2.0 */ +/* */ +/* Unless required by applicable law or agreed to in writing, software */ +/* distributed under the License is distributed on an "AS IS" BASIS, */ +/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or */ +/* implied. See the License for the specific language governing */ +/* permissions and limitations under the License. */ +/* */ +/* IBM_PROLOG_END_TAG */ +#ifndef __SCOMIF_H +#define __SCOMIF_H + +namespace SCOM +{ + +/** + * @brief This function translates a relative scom address + * to an absolute scom address + * + * @param[in] i_target SCom target + * @param[in|out] io_addr SCom address + * @param[out] o_needsWakeup Enable SW before scom + * @param[in] i_opMode Defaults to 0 (Standard) + * @return errlHndl_t + */ +errlHndl_t scomTranslate(TARGETING::Target * &i_target, + uint64_t & io_addr, + bool & o_needsWakeup, + uint64_t i_opMode = 0); + + +}; // end namespace SCOM + +#endif // end __SCOMIF_H |

