From 240f26001382001974fff7d62367e58df3f7b1db Mon Sep 17 00:00:00 2001 From: Bill Hoffa Date: Mon, 10 Apr 2017 14:43:51 -0500 Subject: Include HUID of failed Proc in TI data for certain SBE errors - Include a generic error pipleline for other future error scenarios to leverage this functionality Change-Id: Icc1399ee93157c7106d394944a3355285a8cd830 RTC: 171865 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/39072 Reviewed-by: Martin Gloff Tested-by: Jenkins Server Tested-by: Jenkins OP Build CI Tested-by: FSP CI Jenkins Reviewed-by: Prachi Gupta Reviewed-by: Daniel M. Crowell --- src/lib/syscall_misc.C | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/lib') diff --git a/src/lib/syscall_misc.C b/src/lib/syscall_misc.C index 22ead7a9a..fd8d76b62 100644 --- a/src/lib/syscall_misc.C +++ b/src/lib/syscall_misc.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2015 */ +/* Contributors Listed Below - COPYRIGHT 2011,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -34,14 +34,16 @@ void shutdown(uint64_t i_status, uint64_t i_payload_base, uint64_t i_payload_entry, uint64_t i_payload_data, - uint64_t i_masterHBInstance) + uint64_t i_masterHBInstance, + uint32_t i_error_data) { - _syscall5(MISC_SHUTDOWN, + _syscall6(MISC_SHUTDOWN, reinterpret_cast(i_status), reinterpret_cast(i_payload_base), reinterpret_cast(i_payload_entry), reinterpret_cast(i_payload_data), - reinterpret_cast(i_masterHBInstance)); + reinterpret_cast(i_masterHBInstance), + reinterpret_cast(i_error_data)); } ProcessorCoreType cpu_core_type() -- cgit v1.2.1