summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/core/p9_thread_control.C
diff options
context:
space:
mode:
authorNick Klazynski <jklazyns@us.ibm.com>2016-02-10 14:48:18 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-02-22 10:57:13 -0600
commitd2888648902ed9034c5a5d58e1261d361f2964c4 (patch)
tree6b06da67cff2a0831ee1debe13ee2095e8774177 /src/import/chips/p9/procedures/hwp/core/p9_thread_control.C
parent589c4d0ce37953f9ae3a47e94fa6e931791463dc (diff)
downloadtalos-hostboot-d2888648902ed9034c5a5d58e1261d361f2964c4.tar.gz
talos-hostboot-d2888648902ed9034c5a5d58e1261d361f2964c4.zip
Initial checkin of proc_thread_control wrapper.
Change-Id: Ia15e7fb6b5952320412d109e9b4c0ac012ff26b4 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24172 Tested-by: Jenkins Server Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com> Reviewed-by: Brian Silver <bsilver@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/24543 Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/core/p9_thread_control.C')
-rw-r--r--src/import/chips/p9/procedures/hwp/core/p9_thread_control.C16
1 files changed, 7 insertions, 9 deletions
diff --git a/src/import/chips/p9/procedures/hwp/core/p9_thread_control.C b/src/import/chips/p9/procedures/hwp/core/p9_thread_control.C
index 32a4b4eec..2a792e583 100644
--- a/src/import/chips/p9/procedures/hwp/core/p9_thread_control.C
+++ b/src/import/chips/p9/procedures/hwp/core/p9_thread_control.C
@@ -7,7 +7,7 @@
/* */
/* EKB Project */
/* */
-/* COPYRIGHT 2015 */
+/* COPYRIGHT 2015,2016 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -21,7 +21,7 @@
/// @brief Implementation of sreset, start, stop and step
///
-// *HWP HWP Owner: Michael Dye <dyem@us.ibm.com>
+// *HWP HWP Owner: Nick Klazynski <jklazyns@us.ibm.com>
// *HWP FW Owner: Brian Silver <bsilver@us.ibm.com>
// *HWP Team: Quad
// *HWP Level: 2
@@ -326,7 +326,7 @@ fapi2::ReturnCode p9_thread_control_sreset(
fapi2::P9_THREAD_CONTROL_SRESET_FAIL()
.set_CORE_TARGET(i_target)
.set_THREAD(i_threads),
- "p9_thread_control_sreset: ERROR: Thread SReset issued, but the threads aren't running. "
+ "p9_thread_control_sreset: ERROR: Thread SRESET issued, but the threads aren't running. "
"SReset might have failed for threads 0x%x", i_threads);
}
@@ -365,8 +365,8 @@ fapi2::ReturnCode p9_thread_control_start(
fapi2::P9_THREAD_CONTROL_START_PRE_NOMAINT()
.set_CORE_TARGET(i_target)
.set_THREAD(i_threads),
- "p9_thread_control_start: ERROR: Cannot issue Thread Start because the threads aren't in maint mode. "
- "Start not attempted for threads 0x%x", i_threads);
+ "p9_thread_control_start: ERROR: Cannot issue Thread Start because the threads aren't in maint mode (threads=%x).",
+ i_threads);
}
// Start the threads
@@ -433,8 +433,7 @@ fapi2::ReturnCode p9_thread_control_stop(
fapi2::P9_THREAD_CONTROL_STOP_PRE_NOTRUNNING()
.set_CORE_TARGET(i_target)
.set_THREAD(i_threads),
- "p9_thread_control_stop: ERROR: Threads cannot be stopped because they aren't running "
- "Stop not attempted for threads 0x%x", i_threads);
+ "p9_thread_control_stop: ERROR: Threads cannot be stopped because they aren't running (threads=%x).", i_threads);
}
// Stop the threads
@@ -498,8 +497,7 @@ fapi2::ReturnCode p9_thread_control_step(
fapi2::P9_THREAD_CONTROL_STEP_PRE_NOTSTOPPING()
.set_CORE_TARGET(i_target)
.set_THREAD(i_threads),
- "p9_thread_control_step: ERROR: Thread cannot be stepped because they are not ready to step "
- "Step not attempted for threads 0x%x", i_threads);
+ "p9_thread_control_step: ERROR: Thread cannot be stepped because they are not ready to step (threads=%x).", i_threads);
}
OpenPOWER on IntegriCloud