summaryrefslogtreecommitdiffstats
path: root/src/usr/htmgt/htmgt_activate.C
diff options
context:
space:
mode:
authorChris Cain <cjcain@us.ibm.com>2014-09-29 11:18:13 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-11-18 09:59:50 -0600
commit58fb1308bfdf6cd8546cf3187a8d9f7831ade552 (patch)
tree1e4d86a8d82a093c7fe431858e6fa483e5c229dc /src/usr/htmgt/htmgt_activate.C
parent36282dfad11d98c0d71ff8c0714b4fdf975c1163 (diff)
downloadtalos-hostboot-58fb1308bfdf6cd8546cf3187a8d9f7831ade552.tar.gz
talos-hostboot-58fb1308bfdf6cd8546cf3187a8d9f7831ade552.zip
HTMGT Base Communication
Change-Id: Ie1d9401128d6cfe21a6be1be1760c3ddb0059148 RTC: 115442 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/13863 Tested-by: Jenkins Server Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/htmgt/htmgt_activate.C')
-rw-r--r--src/usr/htmgt/htmgt_activate.C148
1 files changed, 148 insertions, 0 deletions
diff --git a/src/usr/htmgt/htmgt_activate.C b/src/usr/htmgt/htmgt_activate.C
new file mode 100644
index 000000000..e094b491f
--- /dev/null
+++ b/src/usr/htmgt/htmgt_activate.C
@@ -0,0 +1,148 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/htmgt/htmgt_activate.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2014 */
+/* [+] 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 */
+
+#include <htmgt/htmgt.H>
+#include <htmgt/htmgt_reasoncodes.H>
+#include "htmgt_utility.H"
+#include "htmgt_activate.H"
+#include "htmgt_occcmd.H"
+#include "htmgt_config.H"
+#include "htmgt_poll.H"
+
+// Targeting support
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+#include <targeting/common/attributes.H>
+#include <targeting/common/targetservice.H>
+
+
+namespace HTMGT
+{
+
+// TODO RTC 118875
+#ifdef SIMICS_TESTING
+ uint8_t * G_simicsHomerBuffer = NULL;
+#endif
+
+
+ // Send all config data to the OCCs
+ // (see ToifNode::toif_manager_config() in src/tmgt/fsp/tmgt_toifnode.C)
+ void sendOccConfigData()
+ {
+ TMGT_INF("sendOccConfigData: STUB");
+ // TODO RTC 109066
+ }
+
+
+
+ // Wait for all OCCs to reach active ready state
+ // (see ToifNode::wait_for_occ_ready() in tmgt_toifnode.C)
+ errlHndl_t waitForOccReady()
+ {
+ errlHndl_t l_err = NULL;
+
+ l_err = sendOccPoll();
+
+ // TODO RTC 109066
+ if (NULL == l_err)
+ {
+ TMGT_ERR("waitForOccReady: Stub forcing failure");
+ /*@
+ * @errortype
+ * @reasoncode HTMGT_RC_OCC_UNAVAILABLE
+ * @moduleid HTMGT_MOD_WAIT_FOR_OCC_READY
+ * @devdesc OCCs did not reach active ready state
+ */
+ bldErrLog(l_err, HTMGT_MOD_WAIT_FOR_OCC_READY,
+ HTMGT_RC_OCC_UNAVAILABLE,
+ 0, 0, 0, 0,
+ ERRORLOG::ERRL_SEV_INFORMATIONAL);
+ }
+
+ return l_err;
+ }
+
+
+
+ errlHndl_t setOccState(const occStateId i_state)
+ {
+ errlHndl_t l_err = NULL;
+
+ TMGT_INF("setOccState: STUB");
+ // TODO RTC 109066
+
+ return l_err;
+ }
+
+
+
+ // Wait for all OCCs to reach active state
+ errlHndl_t waitForOccsActive()
+ {
+ errlHndl_t l_err = NULL;
+
+ TMGT_INF("wait_for_occs_active called");
+
+ // Wait for attns - not needed?
+
+ // Wait for all OCCs to be ready for active state
+ l_err = waitForOccReady();
+ if (NULL == l_err)
+ {
+ // Send Set State (ACTIVE) to master
+ l_err = setOccState(OCC_STATE_ACTIVE);
+ if (NULL == l_err)
+ {
+ TMGT_INF("waitForOccsActive: OCCs are all active");
+ }
+ }
+ else
+ {
+ TMGT_ERR("waitForOccsActive: OCC(s) are not in active ready");
+ }
+
+ return l_err;
+
+ } // end waitForOccsActive()
+
+
+
+ // Set active sensors for all OCCs so BMC can start communication
+ errlHndl_t setOccActiveSensors()
+ {
+ errlHndl_t l_err = NULL;
+
+ TMGT_INF("setOccActiveSensors: STUB");
+ // TODO RTC 109066
+
+ return l_err;
+ }
+
+
+
+} // end namespace
+
+
+
OpenPOWER on IntegriCloud