diff options
author | Brian Silver <bsilver@us.ibm.com> | 2015-11-09 13:40:47 -0600 |
---|---|---|
committer | Stephen Cprek <smcprek@us.ibm.com> | 2016-02-19 17:06:48 -0600 |
commit | d9b916f59cd01560b4e17430c9f5601bf9d1b7c2 (patch) | |
tree | eb04dc1eff0ba52f76c8b596aea9fde5a9cd882c /src/import/chips/p9 | |
parent | 0632ac9370614a550b2f06567f440c5bf0699e7a (diff) | |
download | talos-hostboot-d9b916f59cd01560b4e17430c9f5601bf9d1b7c2.tar.gz talos-hostboot-d9b916f59cd01560b4e17430c9f5601bf9d1b7c2.zip |
Add p9_mss_scominit
Change-Id: I02408dfd23cdf876b6d4ff8f062a6f19ed72518e
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/21909
Tested-by: Jenkins Server
Reviewed-by: Craig C. Hamilton <cchamilt@us.ibm.com>
Reviewed-by: Andre A. Marin <aamarin@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9')
3 files changed, 115 insertions, 0 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C new file mode 100644 index 000000000..1ae880f05 --- /dev/null +++ b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C @@ -0,0 +1,46 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: chips/p9/procedures/hwp/memory/p9_mss_scominit.C $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* EKB Project */ +/* */ +/* COPYRIGHT 2015 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* The source code for this program is not published or otherwise */ +/* divested of its trade secrets, irrespective of what has been */ +/* deposited with the U.S. Copyright Office. */ +/* */ +/* IBM_PROLOG_END_TAG */ + +/// +/// @file p9_mss_scominit.C +/// @brief SCOM inits for PHY, MC +/// +// *HWP HWP Owner: Brian Silver <bsilver@us.ibm.com> +// *HWP HWP Backup: Craig Hamilton <cchamilt@us.ibm.com> +// *HWP FW Owner: Andre Marin <aamarin@us.ibm.com> +// *HWP Team: Memory +// *HWP Level: 1 +// *HWP Consumed by: FSP:HB + +#include <fapi2.H> + +using fapi2::TARGET_TYPE_MCBIST; +using fapi2::FAPI2_RC_SUCCESS; + +/// +/// @brief SCOM inits for PHY, MC +/// @param[in] i_target, the MCBIST +/// @return FAPI2_RC_SUCCESS iff ok +/// +fapi2::ReturnCode p9_mss_scominit( const fapi2::Target<TARGET_TYPE_MCBIST>& i_target ) +{ + FAPI_INF("Start MSS SCOM init"); + FAPI_INF("End MSS SCOM init"); + return FAPI2_RC_SUCCESS; +} diff --git a/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.H b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.H new file mode 100644 index 000000000..2ff814714 --- /dev/null +++ b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.H @@ -0,0 +1,48 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: chips/p9/procedures/hwp/memory/p9_mss_scominit.H $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* EKB Project */ +/* */ +/* COPYRIGHT 2015 */ +/* [+] International Business Machines Corp. */ +/* */ +/* */ +/* The source code for this program is not published or otherwise */ +/* divested of its trade secrets, irrespective of what has been */ +/* deposited with the U.S. Copyright Office. */ +/* */ +/* IBM_PROLOG_END_TAG */ + +/// +/// @file p9_mss_scominit.C +/// @brief SCOM inits for PHY, MC +/// +// *HWP HWP Owner: Brian Silver <bsilver@us.ibm.com> +// *HWP HWP Backup: Craig Hamilton <cchamilt@us.ibm.com> +// *HWP FW Owner: Andre Marin <aamarin@us.ibm.com> +// *HWP Team: Memory +// *HWP Level: 1 +// *HWP Consumed by: FSP:HB + +#include <fapi2.H> + +using fapi2::TARGET_TYPE_MBIST; + +typedef fapi2::ReturnCode (*p9_mss_scominit_FP_t) (const fapi2::Target<TARGET_TYPE_MCBIST>&); + +extern "C" +{ + +/// +/// @brief SCOM inits for PHY, MC +/// @param[in] i_target, the MCBIST +/// @return FAPI2_RC_SUCCESS iff ok +/// + fapi2::ReturnCode p9_mss_scominit( const fapi2::Target<TARGET_TYPE_MCBIST>& i_target ); + +} + diff --git a/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.mk b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.mk new file mode 100644 index 000000000..f13196ee1 --- /dev/null +++ b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.mk @@ -0,0 +1,21 @@ +# IBM_PROLOG_BEGIN_TAG +# This is an automatically generated prolog. +# +# $Source: chips/p9/procedures/hwp/memory/p9_mss_scominit.mk $ +# +# IBM CONFIDENTIAL +# +# EKB Project +# +# COPYRIGHT 2015 +# [+] International Business Machines Corp. +# +# +# The source code for this program is not published or otherwise +# divested of its trade secrets, irrespective of what has been +# deposited with the U.S. Copyright Office. +# +# IBM_PROLOG_END_TAG + +PROCEDURE=p9_mss_scominit +$(call BUILD_PROCEDURE) |