summaryrefslogtreecommitdiffstats
path: root/src/include/usr/fapi2
diff options
context:
space:
mode:
authorMatt Derksen <mderkse1@us.ibm.com>2018-09-12 10:54:15 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2018-11-09 13:27:20 -0600
commit1e1b50096bb42d57f06af3016cd1e7c6977d0021 (patch)
tree349d0c3199a2010686b1b9c6f056668a61031a19 /src/include/usr/fapi2
parent8351efdb3b65ed4fc5472e78efd5db315663e42f (diff)
downloadtalos-hostboot-1e1b50096bb42d57f06af3016cd1e7c6977d0021.tar.gz
talos-hostboot-1e1b50096bb42d57f06af3016cd1e7c6977d0021.zip
Support fapi2 MMIO functions
There will be a new set of interfaces in fapi2 to perform mmio (aka inband) operations directly. This is needed for OCMB access in the memory HWPs, specifically as part of the command/response protocol. Change-Id: If473e8e53fa6f76a05ad897e150b58075c769902 RTC:191344 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66045 Reviewed-by: Richard Ward <rward15@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include/usr/fapi2')
-rw-r--r--src/include/usr/fapi2/mmio_access.H90
-rw-r--r--src/include/usr/fapi2/plat_mmio_access.H77
2 files changed, 167 insertions, 0 deletions
diff --git a/src/include/usr/fapi2/mmio_access.H b/src/include/usr/fapi2/mmio_access.H
new file mode 100644
index 000000000..baa574207
--- /dev/null
+++ b/src/include/usr/fapi2/mmio_access.H
@@ -0,0 +1,90 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/usr/fapi2/mmio_access.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] 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 mmio_access.H
+///
+/// @brief Hardware access functions that needs to be specialized for
+/// platform implementation.
+///
+
+#ifndef _FAPI2_MMIO_ACCESS_H_
+#define _FAPI2_MMIO_ACCESS_H_
+
+#include <fapi2_mmio_access.H>
+#include <plat_mmio_access.H>
+
+namespace fapi2
+{
+ //----------------------------------------------------------------------------
+ // HW Communication Functions to be implemented at the platform layer.
+ //----------------------------------------------------------------------------
+ /**
+ * @brief Calls platform-level implementation of getMMIO()
+ *
+ * @param[in] i_target HW target to operate on.
+ * @param[in] i_mmioAddr Address to read, relative to this Target's system
+ * MMIO address.
+ * @param[in] i_transSize Number of bytes to read in a single transaction.
+ * @param[out] o_data Buffer that holds data read from HW target.
+ * The size of the buffer determines the number of
+ * bytes that are read.
+ *
+ * @return fapi2::ReturnCode. FAPI2_RC_SUCCESS if success, else error code.
+ */
+ template< TargetType K >
+ inline ReturnCode getMMIO(const Target<K>& i_target,
+ const uint64_t i_mmioAddr,
+ const size_t i_transSize,
+ std::vector<uint8_t>& o_data)
+ {
+ return platGetMMIO(i_target, i_mmioAddr, i_transSize, o_data);
+ }
+
+ /**
+ * @brief Calls platform-level implementation of putMMIO()
+ *
+ * @param[in] i_target HW target to operate on.
+ * @param[in] i_mmioAddr Address for write, relative to this Target's
+ * system MMIO address.
+ * @param[in] i_transSize Size of a single transaction, not the total amount
+ * of data to be transferred. For example, there is
+ * a requirement that we access the AXI regs with a
+ * 4-byte load and the SCOM regs with a 8-byte load.
+ * @param[in] i_data Buffer that holds data to write to the HW target.
+ * The size of the buffer determines the number of
+ * bytes to be written.
+ * @return fapi2::ReturnCode. FAPI2_RC_SUCCESS if success, else error code.
+ */
+ template< TargetType K >
+ inline ReturnCode putMMIO(const Target<K>& i_target,
+ const uint64_t i_mmioAddr,
+ const size_t i_transSize,
+ const std::vector<uint8_t>& i_data)
+ {
+ return platPutMMIO(i_target, i_mmioAddr, i_transSize, i_data);
+ }
+
+}; // fapi2 namespace
+
+#endif // _FAPI2_MMIO_ACCESS_H_
diff --git a/src/include/usr/fapi2/plat_mmio_access.H b/src/include/usr/fapi2/plat_mmio_access.H
new file mode 100644
index 000000000..739c991c3
--- /dev/null
+++ b/src/include/usr/fapi2/plat_mmio_access.H
@@ -0,0 +1,77 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/include/usr/fapi2/plat_mmio_access.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2018 */
+/* [+] 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 plat_mmio_access.H
+///
+/// @brief Platform mmio-access definitions
+///
+
+#ifndef _FAPI2_PLAT_MMIOACCESS_H_
+#define _FAPI2_PLAT_MMIOACCESS_H_
+
+namespace fapi2
+{
+
+ /**
+ * @brief Platform-level implementation of getMMIO()
+ * Reads data via MMIO from the target
+ *
+ * @param[in] i_target FAPI HW target to operate on.
+ * @param[in] i_mmioAddr Address to read, relative to this Target's system
+ * MMIO address.
+ * @param[in] i_transSize Number of bytes to read in a single transaction.
+ * @param[out] o_data Buffer that holds data read from HW target.
+ * The size of the buffer determines the number of
+ * bytes that are read.
+ *
+ * @return fapi2::ReturnCode. FAPI2_RC_SUCCESS if success, else error code.
+ */
+ ReturnCode platGetMMIO( const Target<TARGET_TYPE_ALL>& i_target,
+ const uint64_t i_mmioAddr,
+ const size_t i_transSize,
+ std::vector<uint8_t>& o_data );
+
+ /**
+ * @brief Platform-level implementation of putMMIO()
+ * Writes data via MMIO to the target
+ *
+ * @param[in] i_target FAPI HW target to operate on.
+ * @param[in] i_mmioAddr Address for write, relative to this Target's
+ * system MMIO address.
+ * @param[in] i_transSize Size of a single transaction, not the total amount
+ * of data to be transferred. For example, there is
+ * a requirement that we access the AXI regs with a
+ * 4-byte load and the SCOM regs with a 8-byte load.
+ * @param[in] i_data Buffer that holds data to write to the HW target.
+ * The size of the buffer determines the number of
+ * bytes to be written.
+ * @return fapi2::ReturnCode. FAPI2_RC_SUCCESS if success, else error code.
+ */
+ ReturnCode platPutMMIO( const Target<TARGET_TYPE_ALL>& i_target,
+ const uint64_t i_mmioAddr,
+ const size_t i_transSize,
+ const std::vector<uint8_t>& i_data );
+
+};
+#endif // _FAPI2_PLAT_MMIOACCESS_H_
OpenPOWER on IntegriCloud