summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorMonte Copeland <copelanm@us.ibm.com>2011-08-04 11:15:39 -0500
committerMonte K. Copeland <copelanm@us.ibm.com>2011-08-15 13:25:06 -0500
commitb0ceda93e7d5b6b06465a5fcc0b261a52dad987d (patch)
treefcaffe55a2357fd3e8837fb3c76a56e387e8eb34 /src/include
parentc7b83cbaf5b18e72846e24e26f990babc5b02708 (diff)
downloadtalos-hostboot-b0ceda93e7d5b6b06465a5fcc0b261a52dad987d.tar.gz
talos-hostboot-b0ceda93e7d5b6b06465a5fcc0b261a52dad987d.zip
Implement fapi::delay()
Change-Id: Id24144813b72005d410a12ec5a400d7d50afef00 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/227 Tested-by: Jenkins Server Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com> Reviewed-by: MIKE J. JONES <mjjones@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/usr/hwpf/fapi/fapiUtil.H33
1 files changed, 32 insertions, 1 deletions
diff --git a/src/include/usr/hwpf/fapi/fapiUtil.H b/src/include/usr/hwpf/fapi/fapiUtil.H
index 0540a79cf..b7659d280 100644
--- a/src/include/usr/hwpf/fapi/fapiUtil.H
+++ b/src/include/usr/hwpf/fapi/fapiUtil.H
@@ -20,7 +20,7 @@
#include <stdint.h>
#include <stddef.h>
-
+#include <fapi.H>
namespace fapi
{
@@ -33,6 +33,37 @@ namespace fapi
*/
void fapiAssert(bool i_expression);
+
+/**
+ * @brief Delay this thread. Hostboot will use the nanoseconds parameter
+ * and make a syscall to nanosleep. While in the syscall, the hostboot
+ * kernel will continue to consume CPU cycles as it looks for a runnable
+ * task. When the delay time expires, the task becomes runnable and will soon
+ * return from the syscall. Callers of delay() in the hostboot environment
+ * will likely have to know the mHz clock speed they are running on and
+ * compute a non-zero value for i_nanoSeconds.
+ *
+ * On the FSP, it was sometimes acceptable to just provide zero for the
+ * sleep delay time, causing the task to yield its time slice. By the
+ * time the calling task could run again, it was pretty certain enough
+ * host cycles had past. This is probably not acceptable in
+ * the hostboot environment. Callers should calculate and provide a
+ * sleep value in nanoseconds relative to host clock speed.
+ *
+ * On FSP when VBU is the target, then the i_simCycles parameter will be
+ * used instead. The FSP needs to use the simdispatcher client/server
+ * API and issue a command to the awan to advance the simulation the
+ * specified number of cycles.
+ *
+ * @param[in] i_nanoSeconds nanoseconds to sleep
+ * @param[in] i_simCycles count of Awan cycles to advance
+ *
+ * @return ReturnCode. Zero on success, else platform specified error.
+ */
+ fapi::ReturnCode delay( uint64_t i_nanoSeconds, uint64_t i_simCycles );
+
+
+
}
#endif // FAPIUTIL_H_
OpenPOWER on IntegriCloud