summaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorDoug Gilbert <dgilbert@us.ibm.com>2013-11-15 12:45:52 -0600
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-01-10 18:06:54 -0600
commiteffa0e2c6eccb199caa6179a0618c75c6182aa4b (patch)
treecfbd0f070ad74eaf3a08f6f545de8fc633efc688 /src/lib
parent613d36e02e5ce4e5b69cbb02483e9fa352666ecd (diff)
downloadtalos-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/lib')
-rw-r--r--src/lib/syscall_misc.C10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/syscall_misc.C b/src/lib/syscall_misc.C
index c972292f9..d7894d6f8 100644
--- a/src/lib/syscall_misc.C
+++ b/src/lib/syscall_misc.C
@@ -5,7 +5,7 @@
/* */
/* IBM CONFIDENTIAL */
/* */
-/* COPYRIGHT International Business Machines Corp. 2011,2013 */
+/* COPYRIGHT International Business Machines Corp. 2011,2014 */
/* */
/* p1 */
/* */
@@ -31,13 +31,15 @@ using namespace Systemcalls;
void shutdown(uint64_t i_status,
uint64_t i_payload_base,
uint64_t i_payload_entry,
- uint64_t i_payload_data)
+ uint64_t i_payload_data,
+ uint64_t i_masterHBInstance)
{
- _syscall4(MISC_SHUTDOWN,
+ _syscall5(MISC_SHUTDOWN,
reinterpret_cast<void*>(i_status),
reinterpret_cast<void*>(i_payload_base),
reinterpret_cast<void*>(i_payload_entry),
- reinterpret_cast<void*>(i_payload_data));
+ reinterpret_cast<void*>(i_payload_data),
+ reinterpret_cast<void*>(i_masterHBInstance));
}
ProcessorCoreType cpu_core_type()
OpenPOWER on IntegriCloud