diff options
author | Dean Sanner <dsanner@us.ibm.com> | 2018-02-01 09:53:30 -0600 |
---|---|---|
committer | Dean Sanner <dsanner@us.ibm.com> | 2018-02-13 06:38:43 -0500 |
commit | 305fcd051d535220f5372051cace8968d25f8491 (patch) | |
tree | e89ac2d7331a2c495735e9f45ba1af8a5767ea0a /src/kernel/workitem.C | |
parent | b3073568dbd8ec534ad77e0ed89c03e2cedfb160 (diff) | |
download | talos-hostboot-305fcd051d535220f5372051cace8968d25f8491.tar.gz talos-hostboot-305fcd051d535220f5372051cace8968d25f8491.zip |
Updates to make multinode IPC work
-Fixed node/group id calculations
-Reduced dbell printk to prevent printk overflow
-Fixed architectual hole in how internode IPC works
Workitems won't work, instead just always check
for IPC on any doorbells to master thread
-Changed PIR tracing to print out in hex
Change-Id: I25eb7f87fd812a90f98a7724b1ac1100f764fe7b
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/53187
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@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>
Reviewed-by: Dean Sanner <dsanner@us.ibm.com>
Diffstat (limited to 'src/kernel/workitem.C')
-rw-r--r-- | src/kernel/workitem.C | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/kernel/workitem.C b/src/kernel/workitem.C index a66908514..0edf83083 100644 --- a/src/kernel/workitem.C +++ b/src/kernel/workitem.C @@ -33,20 +33,10 @@ void CpuWakeupDoorbellWorkItem::operator() (void) { size_t pir = getPIR(); - printk("Wkup pir %ld done\n", pir); + printkd("Wkup pir %ld done\n", pir); //Send message to the intrrp in userspace indicating this pir has woken up // There is a task associated with the intrrp that monitors that the proper // cores/threads have woken up InterruptMsgHdlr::sendThreadWakeupMsg(pir); return; } - -void IPCDoorbellWorkItem::operator() (void) -{ - size_t pir = getPIR(); - printk("IPC msg pir %ld done\n", pir); - //Send message tot he intrrp in userspace indicating it has a pending IPC - // message. - InterruptMsgHdlr::sendIpcMsg(pir); - return; -} |