diff options
author | Dean Sanner <dsanner@us.ibm.com> | 2013-01-03 10:16:18 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-08-09 13:43:19 -0500 |
commit | 97bd69daf028bec2f7d7f4fbd8feb49486fb4577 (patch) | |
tree | 3168aba491fb1cbdd181c40c3e3947410a47e28e /src/include/sys/misc.h | |
parent | 7b0dcb2cc3a80cb09aa2af5d4cd2f2673c7146a6 (diff) | |
download | talos-hostboot-97bd69daf028bec2f7d7f4fbd8feb49486fb4577.tar.gz talos-hostboot-97bd69daf028bec2f7d7f4fbd8feb49486fb4577.zip |
Basic devtree support
Simple devtree support for Sapphire in SPless mode
Change-Id: I4a70bfc5cd3eb3dbd1b443869c046c789f98cc95
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/3739
Tested-by: Jenkins Server
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/sys/misc.h')
-rw-r--r-- | src/include/sys/misc.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/sys/misc.h b/src/include/sys/misc.h index f3e89e4e7..a73398efa 100644 --- a/src/include/sys/misc.h +++ b/src/include/sys/misc.h @@ -95,10 +95,13 @@ extern "C" * @param[in] i_payload_base The base address (target HRMOR) of the payload. * @param[in] i_payload_entry The offset from base address of the payload * entry-point. + * @param[in] i_payload_data Data pointer fo the payload. For standalone + * Saphire this is the devtree */ extern "C" void shutdown(uint64_t i_status, uint64_t i_payload_base, - uint64_t i_payload_entry); + uint64_t i_payload_entry, + uint64_t i_payload_data); #endif /** @enum ProcessorCoreType |