summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps
diff options
context:
space:
mode:
authorSwathi Madhuri Bhattiprolu <bhmadhur@in.ibm.com>2017-07-12 02:52:01 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-08-12 22:15:38 -0400
commit70047c0b3b9461a5f15da3d3bd1ec1435f38b8b7 (patch)
treed6702848a8d669cdfe0ebe153b5230e4478412fd /src/usr/isteps
parent64c5f756d00f902ce974306c783cd4f1464b3159 (diff)
downloadblackbird-hostboot-70047c0b3b9461a5f15da3d3bd1ec1435f38b8b7.tar.gz
blackbird-hostboot-70047c0b3b9461a5f15da3d3bd1ec1435f38b8b7.zip
Framework (plumbing work) in HB for Cumulus HW procedures
Change-Id: I0bc7b56d75f404176268cfbd3948e6c24ef35b4d RTC: 175996 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/43020 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> 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: VENKATESH SAINATH <venkatesh.sainath@in.ibm.com> Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com> Reviewed-by: Sakethan R. Kotta <sakkotta@in.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/isteps')
-rw-r--r--src/usr/isteps/istep11/call_cen_arrayinit.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_chiplet_init.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_do_manual_inits.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_initf.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_pll_initf.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_pll_setup.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_scominits.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_startclocks.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_tp_arrayinit.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_tp_chiplet_init1.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_tp_chiplet_init2.C38
-rw-r--r--src/usr/isteps/istep11/call_cen_tp_chiplet_init3.C38
-rw-r--r--src/usr/isteps/istep11/makefile14
-rw-r--r--src/usr/isteps/istep12/call_cen_dmi_scominit.C52
-rw-r--r--src/usr/isteps/istep12/call_cen_set_inband_addr.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_attr_update.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_erepair.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_io_dccal.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_io_run_training.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_post_trainadv.C52
-rw-r--r--src/usr/isteps/istep12/call_dmi_pre_trainadv.C52
-rw-r--r--src/usr/isteps/istep12/call_host_attnlisten_memb.C52
-rw-r--r--src/usr/isteps/istep12/call_host_startprd_dmi.C52
-rw-r--r--src/usr/isteps/istep12/call_proc_cen_framelock.C52
-rw-r--r--src/usr/isteps/istep12/call_proc_dmi_scominit.C52
-rw-r--r--src/usr/isteps/istep12/makefile15
-rw-r--r--src/usr/isteps/istep13/call_proc_mcs_skewadjust.C61
27 files changed, 1168 insertions, 2 deletions
diff --git a/src/usr/isteps/istep11/call_cen_arrayinit.C b/src/usr/isteps/istep11/call_cen_arrayinit.C
new file mode 100644
index 000000000..4507c2957
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_arrayinit.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_arrayinit.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_arrayinit (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_chiplet_init.C b/src/usr/isteps/istep11/call_cen_chiplet_init.C
new file mode 100644
index 000000000..7c63f9c14
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_chiplet_init.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_chiplet_init.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_chiplet_init (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_do_manual_inits.C b/src/usr/isteps/istep11/call_cen_do_manual_inits.C
new file mode 100644
index 000000000..7e4ae5fb5
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_do_manual_inits.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_do_manual_inits.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_do_manual_inits (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_initf.C b/src/usr/isteps/istep11/call_cen_initf.C
new file mode 100644
index 000000000..e787b36b6
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_initf.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_initf.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_initf (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_pll_initf.C b/src/usr/isteps/istep11/call_cen_pll_initf.C
new file mode 100644
index 000000000..b9f10776b
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_pll_initf.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_pll_initf.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_pll_initf (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_pll_setup.C b/src/usr/isteps/istep11/call_cen_pll_setup.C
new file mode 100644
index 000000000..eb83322aa
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_pll_setup.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_pll_setup.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_pll_setup (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_scominits.C b/src/usr/isteps/istep11/call_cen_scominits.C
new file mode 100644
index 000000000..49e67eaec
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_scominits.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_scominits.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_scominits (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_startclocks.C b/src/usr/isteps/istep11/call_cen_startclocks.C
new file mode 100644
index 000000000..3509e3935
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_startclocks.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_startclocks.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_startclocks (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_tp_arrayinit.C b/src/usr/isteps/istep11/call_cen_tp_arrayinit.C
new file mode 100644
index 000000000..147b88609
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_tp_arrayinit.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_tp_arrayinit.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_tp_arrayinit (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_tp_chiplet_init1.C b/src/usr/isteps/istep11/call_cen_tp_chiplet_init1.C
new file mode 100644
index 000000000..4ce781ca9
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_tp_chiplet_init1.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_tp_chiplet_init1.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_tp_chiplet_init1 (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_tp_chiplet_init2.C b/src/usr/isteps/istep11/call_cen_tp_chiplet_init2.C
new file mode 100644
index 000000000..8fa24fe0c
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_tp_chiplet_init2.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_tp_chiplet_init2.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_tp_chiplet_init2 (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/call_cen_tp_chiplet_init3.C b/src/usr/isteps/istep11/call_cen_tp_chiplet_init3.C
new file mode 100644
index 000000000..d3e05feb8
--- /dev/null
+++ b/src/usr/isteps/istep11/call_cen_tp_chiplet_init3.C
@@ -0,0 +1,38 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep11/call_cen_tp_chiplet_init3.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+using namespace ERRORLOG;
+
+namespace ISTEP_11
+{
+void* call_cen_tp_chiplet_init3 (void *io_pArgs)
+{
+ errlHndl_t l_err = NULL;
+
+ return l_err;
+}
+
+};
diff --git a/src/usr/isteps/istep11/makefile b/src/usr/isteps/istep11/makefile
index 4550f483a..3d3c053d4 100644
--- a/src/usr/isteps/istep11/makefile
+++ b/src/usr/isteps/istep11/makefile
@@ -5,7 +5,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2015,2016
+# Contributors Listed Below - COPYRIGHT 2015,2017
# [+] International Business Machines Corp.
#
#
@@ -26,6 +26,18 @@ ROOTPATH = ../../../..
MODULE = istep11
OBJS += call_host_prd_hwreconfig.o
+OBJS += call_cen_tp_chiplet_init1.o
+OBJS += call_cen_pll_initf.o
+OBJS += call_cen_pll_setup.o
+OBJS += call_cen_tp_chiplet_init2.o
+OBJS += call_cen_tp_arrayinit.o
+OBJS += call_cen_tp_chiplet_init3.o
+OBJS += call_cen_chiplet_init.o
+OBJS += call_cen_arrayinit.o
+OBJS += call_cen_initf.o
+OBJS += call_cen_do_manual_inits.o
+OBJS += call_cen_startclocks.o
+OBJS += call_cen_scominits.o
include ${ROOTPATH}/config.mk
diff --git a/src/usr/isteps/istep12/call_cen_dmi_scominit.C b/src/usr/isteps/istep12/call_cen_dmi_scominit.C
new file mode 100644
index 000000000..061b83461
--- /dev/null
+++ b/src/usr/isteps/istep12/call_cen_dmi_scominit.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_cen_dmi_scominit.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_cen_dmi_scominit (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_cen_set_inband_addr.C b/src/usr/isteps/istep12/call_cen_set_inband_addr.C
new file mode 100644
index 000000000..58bc37cd0
--- /dev/null
+++ b/src/usr/isteps/istep12/call_cen_set_inband_addr.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_cen_set_inband_addr.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_cen_set_inband_addr (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_attr_update.C b/src/usr/isteps/istep12/call_dmi_attr_update.C
new file mode 100644
index 000000000..732b65747
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_attr_update.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_attr_update.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_attr_update (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_erepair.C b/src/usr/isteps/istep12/call_dmi_erepair.C
new file mode 100644
index 000000000..a556237d3
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_erepair.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_erepair.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_erepair (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_io_dccal.C b/src/usr/isteps/istep12/call_dmi_io_dccal.C
new file mode 100644
index 000000000..fb32d0a2c
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_io_dccal.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_io_dccal.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_io_dccal (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_io_run_training.C b/src/usr/isteps/istep12/call_dmi_io_run_training.C
new file mode 100644
index 000000000..045532a13
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_io_run_training.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_io_run_training.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_io_run_training (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_post_trainadv.C b/src/usr/isteps/istep12/call_dmi_post_trainadv.C
new file mode 100644
index 000000000..bca3f2e66
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_post_trainadv.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_post_trainadv.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_post_trainadv (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_dmi_pre_trainadv.C b/src/usr/isteps/istep12/call_dmi_pre_trainadv.C
new file mode 100644
index 000000000..7daa7e9be
--- /dev/null
+++ b/src/usr/isteps/istep12/call_dmi_pre_trainadv.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_dmi_pre_trainadv.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_dmi_pre_trainadv (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_host_attnlisten_memb.C b/src/usr/isteps/istep12/call_host_attnlisten_memb.C
new file mode 100644
index 000000000..7a81a0d1f
--- /dev/null
+++ b/src/usr/isteps/istep12/call_host_attnlisten_memb.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_host_attnlisten_memb.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_host_attnlisten_memb (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_host_startprd_dmi.C b/src/usr/isteps/istep12/call_host_startprd_dmi.C
new file mode 100644
index 000000000..301eb1d59
--- /dev/null
+++ b/src/usr/isteps/istep12/call_host_startprd_dmi.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_host_startprd_dmi.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_host_startprd_dmi (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_proc_cen_framelock.C b/src/usr/isteps/istep12/call_proc_cen_framelock.C
new file mode 100644
index 000000000..84ebe392b
--- /dev/null
+++ b/src/usr/isteps/istep12/call_proc_cen_framelock.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_proc_cen_framelock.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_proc_cen_framelock (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/call_proc_dmi_scominit.C b/src/usr/isteps/istep12/call_proc_dmi_scominit.C
new file mode 100644
index 000000000..c378c4227
--- /dev/null
+++ b/src/usr/isteps/istep12/call_proc_dmi_scominit.C
@@ -0,0 +1,52 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep12/call_proc_dmi_scominit.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 <errl/errlentry.H>
+
+#include <initservice/isteps_trace.H>
+
+#include <isteps/hwpisteperror.H>
+#include <errl/errludtarget.H>
+
+// targeting support.
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/utilFilter.H>
+
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace ERRORLOG;
+using namespace TARGETING;
+
+
+namespace ISTEP_12
+{
+void* call_proc_dmi_scominit (void *io_pArgs)
+{
+ IStepError l_StepError;
+
+ // end task, returning any errorlogs to IStepDisp
+ return l_StepError.getErrorHandle();
+}
+
+};
diff --git a/src/usr/isteps/istep12/makefile b/src/usr/isteps/istep12/makefile
index fc625bf0c..48a70fba8 100644
--- a/src/usr/isteps/istep12/makefile
+++ b/src/usr/isteps/istep12/makefile
@@ -5,7 +5,7 @@
#
# OpenPOWER HostBoot Project
#
-# Contributors Listed Below - COPYRIGHT 2015,2016
+# Contributors Listed Below - COPYRIGHT 2015,2017
# [+] International Business Machines Corp.
#
#
@@ -26,5 +26,18 @@ ROOTPATH = ../../../..
MODULE = istep12
OBJS += call_mss_getecid.o
+OBJS += call_dmi_attr_update.o
+OBJS += call_proc_dmi_scominit.o
+OBJS += call_cen_dmi_scominit.o
+OBJS += call_dmi_erepair.o
+OBJS += call_dmi_io_dccal.o
+OBJS += call_dmi_pre_trainadv.o
+OBJS += call_dmi_io_run_training.o
+OBJS += call_dmi_post_trainadv.o
+OBJS += call_proc_cen_framelock.o
+OBJS += call_host_startprd_dmi.o
+OBJS += call_host_attnlisten_memb.o
+OBJS += call_cen_set_inband_addr.o
+
include ${ROOTPATH}/config.mk
diff --git a/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C b/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C
new file mode 100644
index 000000000..2c92518e2
--- /dev/null
+++ b/src/usr/isteps/istep13/call_proc_mcs_skewadjust.C
@@ -0,0 +1,61 @@
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/isteps/istep13/call_proc_mcs_skewadjust.C $ */
+/* */
+/* OpenPOWER HostBoot Project */
+/* */
+/* Contributors Listed Below - COPYRIGHT 2015,2017 */
+/* [+] 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 */
+
+//Error handling and tracing
+#include <errl/errlentry.H>
+#include <errl/errlmanager.H>
+#include <errl/errludtarget.H>
+#include <isteps/hwpisteperror.H>
+#include <initservice/isteps_trace.H>
+
+// targeting support
+#include <targeting/common/commontargeting.H>
+#include <targeting/common/util.H>
+#include <targeting/common/utilFilter.H>
+
+// fapi2 HWP invoker
+#include <fapi2/plat_hwp_invoker.H>
+
+//From Import Directory (EKB Repository)
+#include <config.h>
+#include <fapi2.H>
+#include <p9_mss_scominit.H>
+#include <p9_throttle_sync.H>
+
+using namespace ERRORLOG;
+using namespace ISTEP;
+using namespace ISTEP_ERROR;
+using namespace TARGETING;
+
+namespace ISTEP_13
+{
+void* call_proc_mcs_skewadjust (void *io_pArgs)
+{
+ IStepError l_stepError;
+
+ return l_stepError.getErrorHandle();
+}
+
+};
OpenPOWER on IntegriCloud