diff options
| author | Christian Geddes <crgeddes@us.ibm.com> | 2019-01-30 11:22:50 -0600 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2019-02-05 16:55:41 -0600 |
| commit | d054b917fa8bd693a248628519c81b9143e87af1 (patch) | |
| tree | 93a900d1889bd769a1e6a81842d0a494e6dc48cc /src/usr | |
| parent | de881124f74c2a869e633fafa9a574ef8ea45ce8 (diff) | |
| download | blackbird-hostboot-d054b917fa8bd693a248628519c81b9143e87af1.tar.gz blackbird-hostboot-d054b917fa8bd693a248628519c81b9143e87af1.zip | |
Add temporary Axone simics workarounds to progress IPL
Currently there is no VRM hooked up to the other side of the AVSbus
in simics. The simics team is working on this but for now we need
to skip the istep that calls setup evid to set voltages. This can
be removed when Simics gets this working. Also for now we are will
skip starting checkstop handling early on in the IPL because the
OCC model is not finished. This also can be changed when the model
starts working.
Change-Id: Ia0df49fedae97acceefe07e3f3c903bbe6aac83d
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/71097
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Matt Derksen <mderkse1@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr')
| -rw-r--r-- | src/usr/isteps/istep08/call_host_set_voltages.C | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/usr/isteps/istep08/call_host_set_voltages.C b/src/usr/isteps/istep08/call_host_set_voltages.C index 70a1ae691..11c37a50d 100644 --- a/src/usr/isteps/istep08/call_host_set_voltages.C +++ b/src/usr/isteps/istep08/call_host_set_voltages.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2016,2018 */ +/* Contributors Listed Below - COPYRIGHT 2016,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -69,6 +69,9 @@ void* call_host_set_voltages(void *io_pArgs) do { + // Skip p9_setup_evid on Axone, no targets exist + #ifndef CONFIG_AXONE_BRING_UP + TargetHandleList l_procList; // Get the system's procs getAllChips( l_procList, @@ -112,6 +115,7 @@ void* call_host_set_voltages(void *io_pArgs) { break; } + #endif // If no error occurred and FSP is present, // send voltage information to HWSV |

