summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorDoug Gilbert <dgilbert@us.ibm.com>2012-02-08 12:33:23 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2012-03-05 11:29:52 -0600
commit5938374fc2ce5dab6ddfa4ed8f5c112e421f5619 (patch)
tree47df5ca511af2c1cdc08bfa8fe0f7b8b92ed944a /src/include
parent5a9d47875a3f9548be27c05d42947a1db370be3f (diff)
downloadtalos-hostboot-5938374fc2ce5dab6ddfa4ed8f5c112e421f5619.tar.gz
talos-hostboot-5938374fc2ce5dab6ddfa4ed8f5c112e421f5619.zip
FAPI breakpoint external interface implementation
Change-Id: I2d18e87cb8ce250935a129e3567b09e12ce191d8 Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/699 Tested-by: Jenkins Server Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/usr/hwpf/fapi/fapiUtil.H6
-rw-r--r--src/include/usr/initservice/initsvcbreakpoint.H10
2 files changed, 4 insertions, 12 deletions
diff --git a/src/include/usr/hwpf/fapi/fapiUtil.H b/src/include/usr/hwpf/fapi/fapiUtil.H
index 23d34caf5..53d99f108 100644
--- a/src/include/usr/hwpf/fapi/fapiUtil.H
+++ b/src/include/usr/hwpf/fapi/fapiUtil.H
@@ -174,11 +174,9 @@ fapi::ReturnCode fapiUnloadInitFile(const char * i_file, const char *& io_addr,
* This function will suspend the calling istep/procedure.
* The procedure can be signaled to resume via a cmd through the
* istep dispatcher.
- * @param[in] i_target reference to the target
- * @param[in] i_info location/info @TODO of the breakpoint
+ * @param[in] i_info Tag to send when at breakpoint
*/
-
-void fapiBreakPoint(const fapi::Target & i_target, uint64_t i_info);
+void fapiBreakPoint( uint32_t i_info);
}
diff --git a/src/include/usr/initservice/initsvcbreakpoint.H b/src/include/usr/initservice/initsvcbreakpoint.H
index e273b7f74..7dc385d44 100644
--- a/src/include/usr/initservice/initsvcbreakpoint.H
+++ b/src/include/usr/initservice/initsvcbreakpoint.H
@@ -25,20 +25,14 @@
#include <stdint.h>
-namespace fapi
-{
- class Target;
-};
-
namespace INITSERVICE
{
/**
* Signal that a break point has been hit during an istep
- * @param[in] i_target, target information
- * @param[in] i_info, other information/location of bp (TBD @TODO)
+ * @param[in] i_info, tag provided by fapi break point
* @returns nothing
* @note Blocks until an outside cmd to resume has been received
*/
- void iStepBreakPoint(const fapi::Target & i_target, uint64_t i_info);
+ void iStepBreakPoint( uint32_t i_info );
};
#endif
OpenPOWER on IntegriCloud