diff options
| -rwxr-xr-x | import/chips/p9/procedures/ppe_closed/cme/stop_cme/p9_cme_stop_entry.c | 11 |
1 files changed, 9 insertions, 2 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 ea0ae211..6ca3ea7a 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 @@ -1265,8 +1265,12 @@ p9_cme_stop_entry() } } - PK_TRACE("Switch Core%d PPM wakeup to STOP-GPE via CPMMR[13]", core); - CME_PUTSCOM(CPPM_CPMMR_OR, core, BIT64(13)); +#if NIMBUS_DD_LEVEL != 1 + + PK_TRACE("Drop PPM_WRITE_DISABLE via CPMMR[0]"); + CME_PUTSCOM(CPPM_CPMMR_CLR, core, BIT64(0)); + +#endif #if DEBUG_RUNTIME_STATE_CHECK @@ -1295,6 +1299,9 @@ p9_cme_stop_entry() #endif + PKTRACE("Switch Core%d PPM wakeup to STOP-GPE via CPMMR[13]", core); + CME_PUTSCOM(CPPM_CPMMR_OR, core, BIT64(13)); + PK_TRACE_INF("SE5.B: Handed off to SGPE"); } |

