summaryrefslogtreecommitdiffstats
path: root/src/usr/initservice/bootconfig/bootconfig.C
diff options
context:
space:
mode:
authorRichard J. Knight <rjknight@us.ibm.com>2015-01-28 08:14:46 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2015-04-09 22:04:14 -0500
commit3f60aa31636637979096fa927d273c7e09b3be48 (patch)
tree1552db505f590b7193460bac8d1078e4f1371634 /src/usr/initservice/bootconfig/bootconfig.C
parent343014b3095462dbec20efe456cbb945d4844b4e (diff)
downloadtalos-hostboot-3f60aa31636637979096fa927d273c7e09b3be48.tar.gz
talos-hostboot-3f60aa31636637979096fa927d273c7e09b3be48.zip
interpret BMC scratch registers
Change-Id: I16b631992271fc03b50f187c11911cdbf7d7c108 RTC:118752 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/15430 Tested-by: Jenkins Server Reviewed-by: Brian H. Horton <brianh@linux.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com> Reviewed-by: WILLIAM G. HOFFA <wghoffa@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/initservice/bootconfig/bootconfig.C')
-rw-r--r--src/usr/initservice/bootconfig/bootconfig.C67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/usr/initservice/bootconfig/bootconfig.C b/src/usr/initservice/bootconfig/bootconfig.C
new file mode 100644
index 000000000..34363049f
--- /dev/null
+++ b/src/usr/initservice/bootconfig/bootconfig.C
@@ -0,0 +1,67 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/initservice/bootconfig/bootconfig.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015 */
+/* [+] 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 */
+/******************************************************************************/
+// Includes
+/******************************************************************************/
+#include <lpc/lpcif.H>
+#include <devicefw/userif.H>
+#include <config.h>
+#include <errl/errlentry.H>
+#include "bootconfig.H"
+
+namespace INITSERVICE
+{
+namespace BOOTCONFIG
+{
+
+ // declare storage for config trace
+ extern trace_desc_t * g_bc_trace;
+
+
+ BootConfig::BootConfig()
+ {};
+
+ BootConfig::~BootConfig()
+ {};
+
+ errlHndl_t BootConfig::readAndProcessBootConfig()
+ {
+ TRACFCOMP(g_bc_trace, "readAndProcessBootConfig() - Default version called no-op");
+ return NULL;
+ }
+
+ errlHndl_t BootConfig::readIstepControl(istepControl_t & o_stepInfo)
+ {
+ TRACFCOMP(g_bc_trace, "readIstepControl() - Default version called no-op");
+ return NULL;
+ }
+
+ errlHndl_t BootConfig::writeIstepControl( istepControl_t & i_stepInfo)
+ {
+ TRACFCOMP(g_bc_trace, "writeIstepControl() - Default version called no-op");
+ return NULL;
+ }
+};
+}; // end namespace
OpenPOWER on IntegriCloud