diff options
| author | Doug Gilbert <dgilbert@us.ibm.com> | 2013-11-15 12:45:52 -0600 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-01-10 18:06:54 -0600 |
| commit | effa0e2c6eccb199caa6179a0618c75c6182aa4b (patch) | |
| tree | cfbd0f070ad74eaf3a08f6f545de8fc633efc688 /src/include/usr | |
| parent | 613d36e02e5ce4e5b69cbb02483e9fa352666ecd (diff) | |
| download | talos-hostboot-effa0e2c6eccb199caa6179a0618c75c6182aa4b.tar.gz talos-hostboot-effa0e2c6eccb199caa6179a0618c75c6182aa4b.zip | |
implement start_payload for multi-drawer
RTC: 71994
Change-Id: I422f349d5588731a5e7cfc504d96e497958d6b95
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/7426
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr')
| -rw-r--r-- | src/include/usr/initservice/initserviceif.H | 11 | ||||
| -rw-r--r-- | src/include/usr/mbox/ipc_msg_types.H | 1 |
2 files changed, 10 insertions, 2 deletions
diff --git a/src/include/usr/initservice/initserviceif.H b/src/include/usr/initservice/initserviceif.H index 05231fd59..f32bbc28c 100644 --- a/src/include/usr/initservice/initserviceif.H +++ b/src/include/usr/initservice/initserviceif.H @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2011,2013 */ +/* COPYRIGHT International Business Machines Corp. 2011,2014 */ /* */ /* p1 */ /* */ @@ -30,6 +30,8 @@ #include <targeting/namedtarget.H> #include <targeting/attrsync.H> +#define THIS_NODE_NO_PAYLOAD 0xffffffffffffffffull + namespace INITSERVICE { @@ -91,6 +93,10 @@ bool unregisterShutdownEvent(msg_q_t i_msgQ); * payload entry-point. * @param[in] i_payload_data - Pointer to payload data (if needed) * + * @param[in] i_masterHBinstance - master Host boot instance number (node) + * Needed when starting payload + * on multi-node system. + * * @return Nothing * * @note If inBackground = true, the shutdown call will spawn a child task @@ -102,7 +108,8 @@ void doShutdown ( uint64_t i_status, bool i_inBackground = false, uint64_t i_payload_base = 0, uint64_t i_payload_entry = 0, - uint64_t i_payload_data = 0); + uint64_t i_payload_data = 0, + uint64_t i_masterHBInstance = THIS_NODE_NO_PAYLOAD); /** * @brief Returns if Service Processor Base Services are available diff --git a/src/include/usr/mbox/ipc_msg_types.H b/src/include/usr/mbox/ipc_msg_types.H index e6b450b40..3271c515e 100644 --- a/src/include/usr/mbox/ipc_msg_types.H +++ b/src/include/usr/mbox/ipc_msg_types.H @@ -34,6 +34,7 @@ namespace IPC { IPC_POPULATE_ATTRIBUTES = MBOX::FIRST_SECURE_MSG + 1, IPC_TEST_CONNECTION = MBOX::FIRST_SECURE_MSG + 2, + IPC_START_PAYLOAD, }; }; // namespace IPC |

