summaryrefslogtreecommitdiffstats
path: root/src/import/generic
diff options
context:
space:
mode:
authorStephen Glancy <sglancy@us.ibm.com>2018-08-30 14:12:51 -0500
committerChristian R. Geddes <crgeddes@us.ibm.com>2018-09-19 10:37:53 -0500
commit11cc78395582d24d6f19d389841a5fa224ec1d93 (patch)
tree8c9efb6d439821d6c3f6237458d3c891c5b1269e /src/import/generic
parent4e4dbf34cd08855833bce3b3f3519761a839d6db (diff)
downloadtalos-hostboot-11cc78395582d24d6f19d389841a5fa224ec1d93.tar.gz
talos-hostboot-11cc78395582d24d6f19d389841a5fa224ec1d93.zip
Moves and renames swizzle.H to generic
Change-Id: I2cedeb3250d8adfbcf7bf57af08e09694a371936 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65702 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: Louis Stermole <stermole@us.ibm.com> Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65707 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Diffstat (limited to 'src/import/generic')
-rw-r--r--src/import/generic/memory/lib/utils/buffer_ops.H135
1 files changed, 135 insertions, 0 deletions
diff --git a/src/import/generic/memory/lib/utils/buffer_ops.H b/src/import/generic/memory/lib/utils/buffer_ops.H
new file mode 100644
index 000000000..f6599d644
--- /dev/null
+++ b/src/import/generic/memory/lib/utils/buffer_ops.H
@@ -0,0 +1,135 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/import/generic/memory/lib/utils/buffer_ops.H $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,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 buffer_ops.H
+/// @brief Buffer operations
+///
+// *HWP HWP Owner: Stephen Glancy <sglancy@us.ibm.com>
+// *HWP HWP Backup: Andre Marin <aamarin@us.ibm.com>
+// *HWP Team: Memory
+// *HWP Level: 3
+// *HWP Consumed by: HB:FSP
+
+#ifndef _BUFFER_OPS_H_
+#define _BUFFER_OPS_H_
+
+#include <fapi2.H>
+
+namespace mss
+{
+
+///
+/// @brief Swap two bits in a buffer
+/// @tparam TB the bit in the buffer to move to SB
+/// @tparam SB the bit in the buffer to move to TB
+/// @tparam T integral type of the buffer
+/// @param[in,out] i_data reference to the buffer
+/// @return reference to the input buffer (for chaining)
+///
+template< uint64_t TB, uint64_t SB, typename T >
+inline fapi2::buffer<T>& swap( fapi2::buffer<T>& i_data )
+{
+ bool l_tb = i_data.template getBit<TB>();
+ i_data.template writeBit<TB>(i_data.template getBit<SB>());
+ i_data.template writeBit<SB>(l_tb);
+
+ return i_data;
+}
+
+///
+/// @brief Invert (negate) one bit in a buffer
+/// @tparam TB the bit in the buffer to negate
+/// @tparam T integral type of the buffer
+/// @param[in,out] io_data reference to the buffer
+/// @return reference to the input buffer (for chaining)
+///
+template< uint64_t TB, typename T >
+inline fapi2::buffer<T>& negate( fapi2::buffer<T>& i_data )
+{
+ // Use care when writeBit'ing a getBit as getBit returns a bool and writeBit
+ // checks if the input != 0. Negating it (~ getBit) was causing havok. So
+ // we do this - note the negation of the conditional to get the reverse.
+ i_data.template writeBit<TB>(i_data.template getBit<TB>() == true ? 0 : 1);
+ return i_data;
+}
+
+///
+/// @brief Reverse the buffer
+/// @param[in,out] io_buffer the buffer which to reverse
+//
+// @note from
+// http://stackoverflow.com/questions/746171/best-algorithm-for-bit-reversal-from-msb-lsb-to-lsb-msb-in-c
+///
+template< typename T >
+static inline void reverse( T& io_buffer )
+{
+ T l_result = io_buffer;
+ size_t l_s = sizeof(T) * 8 - 1;
+
+ for( io_buffer >>= 1; io_buffer; io_buffer >>= 1)
+ {
+ l_result <<= 1;
+ l_result |= io_buffer & 1;
+ l_s--;
+ }
+
+ l_result <<= l_s;
+
+ io_buffer = l_result;
+}
+
+///
+/// @brief Swizzle bits between two fapi2 buffers, and insert from source to destination
+/// @tparam DS the start bit in the destination buffer - swizzle will count up from here
+/// @tparam L how many bits to swizzle
+/// @tparam SS the start bit in the source buffer - swizzle will count down from here
+/// @tparam SB source buffer type
+/// @tparam DB destination buffer type
+/// @param[in] i_source source buffer - these bits will be decremented
+/// @param[out] o_destination destination buffer - these bits will be incremented
+/// @return reference to the destination
+///
+template<uint64_t DS, uint64_t L, uint64_t SS, typename SB, typename DB>
+inline fapi2::buffer<DB>& swizzle( const fapi2::buffer<SB>& i_source, fapi2::buffer<DB>& o_destination )
+{
+ // Reverse the destination, and then mangle the start bits to get things to line up
+ fapi2::buffer<SB> l_tmp(i_source);
+ reverse(l_tmp);
+
+ o_destination.template insert < DS, L, (sizeof(SB) * 8) - (SS + 1) > (SB(l_tmp));
+
+#ifdef SWIZZLE_TRACE
+ // s: source, r: reverse, d: destination, ds: distination start, l: length, ss: source start
+ FAPI_DBG("swizzle s: 0x%016llx, r: 0x%016llx, d: 0x%016llx, ds: %d, l: %d, ss: %d",
+ i_source, l_tmp, o_destination, DS, L, (sizeof(SB) * 8) - (SS + 1));
+#endif
+
+ return o_destination;
+}
+
+} // ns mss
+
+#endif
OpenPOWER on IntegriCloud