diff options
| author | Prachi Gupta <pragupta@us.ibm.com> | 2018-02-05 11:08:17 -0600 |
|---|---|---|
| committer | William G. Hoffa <wghoffa@us.ibm.com> | 2018-02-06 15:33:40 -0500 |
| commit | abc7d754b770b7322340bf1b3429260614ca0907 (patch) | |
| tree | 970c2e602edd406c3bad017398fe374c788679d1 /src/kernel | |
| parent | 77224965fc6cb49efbfed76a0f4c480ddb010c5e (diff) | |
| download | talos-hostboot-abc7d754b770b7322340bf1b3429260614ca0907.tar.gz talos-hostboot-abc7d754b770b7322340bf1b3429260614ca0907.zip | |
host_coalesce_host: bup updates
- move p9_fab_iovalid to fab_iovalid common lib
to avoid conflicts with hwp lib
- doorbell_send to wake up the cores in istep18
- move block wakeup interrupts set later in the
istep 18 flow after we have suspended the mbox
and drained the interrupt queue
Change-Id: I241240ca1d1787182c5baaf3bdd10283878d5798
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/52701
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: SWATHI M. BHATTIPROLU <bhmadhur@in.ibm.com>
Reviewed-by: Sakethan R. Kotta <sakkotta@in.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/kernel')
| -rw-r--r-- | src/kernel/misc.C | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/kernel/misc.C b/src/kernel/misc.C index 75f476187..d1ff0c45a 100644 --- a/src/kernel/misc.C +++ b/src/kernel/misc.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2011,2017 */ +/* Contributors Listed Below - COPYRIGHT 2011,2018 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -439,13 +439,11 @@ namespace KernelMisc KERNEL_MAX_SUPPORTED_NODES; i++) { cpu_t* slave = CpuManager::getCpu(i); - if ((NULL != slave) && (slave != cpu)) { - if (slave->winkled) - { - InterruptMsgHdlr::sendThreadWakeupMsg(i); - } + uint64_t l_pir = slave->cpu; + printkd("Sending dbell to wakeup cpu:%d", (int)l_pir); + doorbell_send(l_pir); } } }; |

