summaryrefslogtreecommitdiffstats
path: root/src/import/generic/memory
diff options
context:
space:
mode:
authorAndre Marin <aamarin@us.ibm.com>2017-04-17 19:53:04 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-04-23 11:25:48 -0400
commit2d4694521ddb819a09347acd4a6c33536fd3fd0b (patch)
tree9953910593d796bba4ca318db98d762ce0e25592 /src/import/generic/memory
parent9349e6ece944f284f59b1b9315f27a82df60d196 (diff)
downloadtalos-hostboot-2d4694521ddb819a09347acd4a6c33536fd3fd0b.tar.gz
talos-hostboot-2d4694521ddb819a09347acd4a6c33536fd3fd0b.zip
Move memory_size API to generic folder to share among controllers
Change-Id: I765a53f2b79d108ef180123dfd7d534c1f650067 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39348 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com> Reviewed-by: JACOB L. HARVEY <jlharvey@us.ibm.com> Reviewed-by: Louis Stermole <stermole@us.ibm.com> Reviewed-by: Thi N. Tran <thi@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39352 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@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/import/generic/memory')
-rw-r--r--src/import/generic/memory/lib/utils/memory_size.H55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/import/generic/memory/lib/utils/memory_size.H b/src/import/generic/memory/lib/utils/memory_size.H
new file mode 100644
index 000000000..427d152e2
--- /dev/null
+++ b/src/import/generic/memory/lib/utils/memory_size.H
@@ -0,0 +1,55 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/import/generic/memory/lib/utils/memory_size.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 */
+
+///
+/// @file memory_size.H
+/// @brief Return the effective memory size behind a target
+///
+// *HWP HWP Owner: Andre Marin <aamarin@us.ibm.com>
+// *HWP HWP Backup: Jacob Harvey <jlharvey@us.ibm.com>
+// *HWP Team: Memory
+// *HWP Level: 3
+// *HWP Consumed by: HB:FSP
+
+#ifndef _MSS_EFF_MEMORY_SIZE_H_
+#define _MSS_EFF_MEMORY_SIZE_H_
+
+#include <fapi2.H>
+
+namespace mss
+{
+///
+/// @brief Return the total memory size behind the target
+/// @tparam T fapi2 target template parameter
+/// @param[in] i_target the fapi2::Target, typically a port
+/// @param[out] o_size the size of memory in GB behind the target
+/// @return FAPI2_RC_SUCCESS if ok
+///
+template< fapi2::TargetType T >
+fapi2::ReturnCode eff_memory_size( const fapi2::Target<T>& i_target, uint64_t& o_size );
+}
+
+#endif
+
OpenPOWER on IntegriCloud