diff options
-rwxr-xr-x | import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c b/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c index 662c5461..2b331fff 100755 --- a/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c +++ b/import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c @@ -1565,6 +1565,13 @@ p9_cme_stop_entry() scom_data.words.upper = SSH_ACT_LV5_CONTINUE; CME_PUTSCOM(PPM_SSHSRC, core, scom_data.value); +#if NIMBUS_DD_LEVEL != 10 + + PK_TRACE("Drop PPM_WRITE_DISABLE via CPMMR[0]"); + CME_PUTSCOM(CPPM_CPMMR_CLR, core, BIT64(0)); + +#endif + PK_TRACE("Send PCB interrupt per core via PIG, select irq type via CPMMR[10]"); for (core_mask = 2; core_mask; core_mask--) @@ -1625,13 +1632,6 @@ p9_cme_stop_entry() PK_TRACE("Clear special/regular wakeup after wakeup_notify = 1 since it is edge triggered"); out32(CME_LCL_EISR_CLR, (core << SHIFT32(15)) | (core << SHIFT32(17))); -#if NIMBUS_DD_LEVEL != 10 - - PK_TRACE("Drop PPM_WRITE_DISABLE via CPMMR[0]"); - CME_PUTSCOM(CPPM_CPMMR_CLR, core, BIT64(0)); - -#endif - PK_TRACE_INF("SE.5B: Core[%d] Handed off to SGPE", core); } |