summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H')
-rwxr-xr-xsrc/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H152
1 files changed, 0 insertions, 152 deletions
diff --git a/src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H b/src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H
deleted file mode 100755
index 6d012d6ff..000000000
--- a/src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H
+++ /dev/null
@@ -1,152 +0,0 @@
-/* IBM_PROLOG_BEGIN_TAG */
-/* This is an automatically generated prolog. */
-/* */
-/* $Source: src/usr/diag/prdf/common/mnfgtools/prdfMfgThresholdFile_common.H $ */
-/* */
-/* OpenPOWER HostBoot Project */
-/* */
-/* COPYRIGHT International Business Machines Corp. 2013,2014 */
-/* */
-/* 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 __PRDFMFGTHRESHOLDFILECOMMON
-#define __PRDFMFGTHRESHOLDFILECOMMON
-
-#include <stdint.h>
-#include <map>
-
-#ifdef __HOSTBOOT_MODULE
-
- // FIXME: RTC 73204 was opened to add support for these in hostboot. They will
- // need to be removed once the issue has been resolved.
- #ifndef htonl
- #define htonl(foo) (foo)
- #endif
-
- #ifndef ntohl
- #define ntohl(foo) (foo)
- #endif
-
-#else
-
- #include <netinet/in.h>
-
-#endif
-
-
-namespace PRDF
-{
-
-class MfgThresholdFileCommon
-{
- public:
-
- /**
- * @brief Structure of threshold to sync
- */
- struct SyncThreshold_t
- {
- uint32_t hash;
- uint8_t value;
- SyncThreshold_t()
- {
- hash = 0;
- value = 0;
- }
- }__attribute__ ((packed));
-
- /**
- * @brief threshold map
- */
- typedef std::map<uint32_t, uint8_t> Threshold_t;
-
- /**
- * @brief Infinite threshold enum
- */
- enum { INFINITE_LIMIT_THR = 0xff };
-
- /**
- * @brief constructor
- */
- MfgThresholdFileCommon() {};
-
- /**
- * @brief destructor
- */
- virtual ~MfgThresholdFileCommon() {};
-
- /**
- * @brief configure MfgThresholdFile
- */
- virtual void setup() = 0;
-
- /**
- * @brief get threshold value from name
- * @param[in] i_thrName - threshold name
- *
- * @return corresponding threshold value
- */
- uint8_t getThreshold(uint32_t i_thrName);
-
- /**
- * @brief set threshold name/value
- * @param[in] i_thrName - threshold name
- * @param[in] i_value - threshold value
- */
- void setThreshold(uint32_t i_thrName, uint8_t i_value);
-
- /**
- * @brief clear all thresholds
- *
- */
- void clearThresholds();
-
- /**
- * @brief get number of thresholds
- *
- * @return number of predefined thresholds
- */
- inline uint32_t getThresholdSize()
- {
- return iv_thresholds.size() * sizeof(SyncThreshold_t);
- }
-
- /**
- * @brief serialize threshold data into data buffer
- * @param[in/out] o_buffer - data buffer
- * @param[in] i_sizeOfBuf - size of buffer
- */
- virtual void packThresholdDataIntoBuffer(
- uint8_t* & o_buffer,
- uint32_t i_sizeOfBuf) = 0;
-
- /**
- * @brief deserialize data buffer into threshold data
- * @param[in/out] o_buffer - data buffer
- * @param[in] i_sizeOfBuf - size of buffer
- */
- virtual void unpackThresholdDataFromBuffer(
- uint8_t* & o_buffer,
- uint32_t i_sizeOfBuf);
-
- protected:
-
- Threshold_t iv_thresholds;
-
-};
-
-} // end namespace PRDF
-
-#endif
OpenPOWER on IntegriCloud