2 * This file contains idle entry/exit functions for POWER7,
3 * POWER8 and POWER9 CPUs.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
11 #include <linux/threads.h>
12 #include <asm/processor.h>
14 #include <asm/cputable.h>
15 #include <asm/thread_info.h>
16 #include <asm/ppc_asm.h>
17 #include <asm/asm-offsets.h>
18 #include <asm/ppc-opcode.h>
19 #include <asm/hw_irq.h>
20 #include <asm/kvm_book3s_asm.h>
22 #include <asm/cpuidle.h>
23 #include <asm/book3s/64/mmu-hash.h>
29 * Use unused space in the interrupt stack to save and restore
30 * registers for winkle support.
43 #define PSSCR_HV_TEMPLATE PSSCR_ESL | PSSCR_EC | \
44 PSSCR_PSLL_MASK | PSSCR_TR_MASK | \
50 * Used by threads before entering deep idle states. Saves SPRs
51 * in interrupt stack frame
55 * Note all register i.e per-core, per-subcore or per-thread is saved
56 * here since any thread in the core might wake up first
62 * Note - SDR1 is dropped in Power ISA v3. Hence not restoring
68 ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_300)
89 * Used by threads when the lock bit of core_idle_state is set.
90 * Threads will spin in HMT_LOW until the lock bit is cleared.
91 * r14 - pointer to core_idle_state
92 * r15 - used to load contents of core_idle_state
98 andi. r15,r15,PNV_CORE_IDLE_LOCK_BIT
105 * Pass requested state in r3:
106 * r3 - PNV_THREAD_NAP/SLEEP/WINKLE in POWER8
107 * - Requested STOP state in POWER9
109 * To check IRQ_HAPPENED in r4
113 * Address to 'rfid' to in r5
115 _GLOBAL(pnv_powersave_common)
116 /* Use r3 to pass state nap/sleep/winkle */
117 /* NAP is a state loss, we create a regs frame on the
118 * stack, fill it up with the state we care about and
119 * stick a pointer to it in PACAR1. We really only
120 * need to save PC, some CR bits and the NV GPRs,
121 * but for now an interrupt frame will do.
125 stdu r1,-INT_FRAME_SIZE(r1)
129 /* Hard disable interrupts */
133 mtmsrd r9,1 /* hard-disable interrupts */
135 /* Check if something happened while soft-disabled */
136 lbz r0,PACAIRQHAPPENED(r13)
137 andi. r0,r0,~PACA_IRQ_HARD_DIS@l
141 addi r1,r1,INT_FRAME_SIZE
143 li r3,0 /* Return 0 (no nap) */
147 1: /* We mark irqs hard disabled as this is the state we'll
148 * be in when returning and we need to tell arch_local_irq_restore()
151 li r0,PACA_IRQ_HARD_DIS
152 stb r0,PACAIRQHAPPENED(r13)
154 /* We haven't lost state ... yet */
156 stb r0,PACA_NAPSTATELOST(r13)
158 /* Continue saving state */
166 #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
167 /* Tell KVM we're entering idle */
168 li r4,KVM_HWTHREAD_IN_IDLE
169 stb r4,HSTATE_HWTHREAD_STATE(r13)
173 * Go to real mode to do the nap, as required by the architecture.
174 * Also, we need to be in real mode before setting hwthread_state,
175 * because as soon as we do that, another thread can switch
176 * the MMU context to the guest.
178 LOAD_REG_IMMEDIATE(r7, MSR_IDLE)
181 mtmsrd r6, 1 /* clear RI before setting SRR0/1 */
186 .globl pnv_enter_arch207_idle_mode
187 pnv_enter_arch207_idle_mode:
188 stb r3,PACA_THREAD_IDLE_STATE(r13)
189 cmpwi cr3,r3,PNV_THREAD_SLEEP
191 IDLE_STATE_ENTER_SEQ(PPC_NAP)
194 /* Sleep or winkle */
195 lbz r7,PACA_THREAD_MASK(r13)
196 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
200 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
201 bnel core_idle_lock_held
203 andc r15,r15,r7 /* Clear thread bit */
205 andi. r15,r15,PNV_CORE_IDLE_THREAD_BITS
208 * If cr0 = 0, then current thread is the last thread of the core entering
209 * sleep. Last thread needs to execute the hardware bug workaround code if
210 * required by the platform.
211 * Make the workaround call unconditionally here. The below branch call is
212 * patched out when the idle states are discovered if the platform does not
215 .global pnv_fastsleep_workaround_at_entry
216 pnv_fastsleep_workaround_at_entry:
217 beq fastsleep_workaround_at_entry
223 common_enter: /* common code for all the threads entering sleep or winkle */
225 IDLE_STATE_ENTER_SEQ(PPC_SLEEP)
227 fastsleep_workaround_at_entry:
228 ori r15,r15,PNV_CORE_IDLE_LOCK_BIT
233 /* Fast sleep workaround */
236 bl opal_rm_config_cpu_idle_state
245 bl save_sprs_to_stack
247 IDLE_STATE_ENTER_SEQ(PPC_WINKLE)
250 * r3 - requested stop state
254 * Check if the requested state is a deep idle state.
256 LOAD_REG_ADDRBASE(r5,pnv_first_deep_stop_state)
257 ld r4,ADDROFF(pnv_first_deep_stop_state)(r5)
260 IDLE_STATE_ENTER_SEQ(PPC_STOP)
263 * Entering deep idle state.
264 * Clear thread bit in PACA_CORE_IDLE_STATE, save SPRs to
265 * stack and enter stop
267 lbz r7,PACA_THREAD_MASK(r13)
268 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
272 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
273 bnel core_idle_lock_held
274 andc r15,r15,r7 /* Clear thread bit */
280 bl save_sprs_to_stack
282 IDLE_STATE_ENTER_SEQ(PPC_STOP)
285 /* Now check if user or arch enabled NAP mode */
286 LOAD_REG_ADDRBASE(r3,powersave_nap)
287 lwz r4,ADDROFF(powersave_nap)(r3)
296 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
297 b pnv_powersave_common
300 _GLOBAL(power7_sleep)
301 li r3,PNV_THREAD_SLEEP
303 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
304 b pnv_powersave_common
307 _GLOBAL(power7_winkle)
308 li r3,PNV_THREAD_WINKLE
310 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
311 b pnv_powersave_common
314 #define CHECK_HMI_INTERRUPT \
315 mfspr r0,SPRN_SRR1; \
316 BEGIN_FTR_SECTION_NESTED(66); \
317 rlwinm r0,r0,45-31,0xf; /* extract wake reason field (P8) */ \
318 FTR_SECTION_ELSE_NESTED(66); \
319 rlwinm r0,r0,45-31,0xe; /* P7 wake reason field is 3 bits */ \
320 ALT_FTR_SECTION_END_NESTED_IFSET(CPU_FTR_ARCH_207S, 66); \
321 cmpwi r0,0xa; /* Hypervisor maintenance ? */ \
323 /* Invoke opal call to handle hmi */ \
324 ld r2,PACATOC(r13); \
326 std r3,ORIG_GPR3(r1); /* Save original r3 */ \
327 li r3,0; /* NULL argument */ \
328 bl hmi_exception_realmode; \
330 ld r3,ORIG_GPR3(r1); /* Restore original r3 */ \
335 * r3 - requested stop state
337 _GLOBAL(power9_idle_stop)
338 LOAD_REG_IMMEDIATE(r4, PSSCR_HV_TEMPLATE)
342 LOAD_REG_ADDR(r5,power_enter_stop)
343 b pnv_powersave_common
346 * Called from reset vector. Check whether we have woken up with
347 * hypervisor state loss. If yes, restore hypervisor state and return
348 * back to reset vector.
350 * r13 - Contents of HSPRG0
351 * cr3 - set to gt if waking up with partial/complete hypervisor state loss
353 _GLOBAL(pnv_restore_hyp_resource)
357 * POWER ISA 3. Use PSSCR to determine if we
358 * are waking up from deep idle state
360 LOAD_REG_ADDRBASE(r5,pnv_first_deep_stop_state)
361 ld r4,ADDROFF(pnv_first_deep_stop_state)(r5)
365 * 0-3 bits correspond to Power-Saving Level Status
366 * which indicates the idle state we are waking up from
370 bge cr4,pnv_wakeup_tb_loss
372 * Waking up without hypervisor state loss. Return to
377 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
380 * POWER ISA 2.07 or less.
381 * Check if last bit of HSPGR0 is set. This indicates whether we are
382 * waking up from winkle.
387 /* Now that we are sure r13 is corrected, load TOC */
390 mtspr SPRN_HSPRG0,r13
392 lbz r0,PACA_THREAD_IDLE_STATE(r13)
393 cmpwi cr2,r0,PNV_THREAD_NAP
394 bgt cr2,pnv_wakeup_tb_loss /* Either sleep or Winkle */
397 * We fall through here if PACA_THREAD_IDLE_STATE shows we are waking
398 * up from nap. At this stage CR3 shouldn't contains 'gt' since that
399 * indicates we are waking with hypervisor state loss from nap.
403 blr /* Return back to System Reset vector from where
404 pnv_restore_hyp_resource was invoked */
407 * Called if waking up from idle state which can cause either partial or
408 * complete hyp state loss.
409 * In POWER8, called if waking up from fastsleep or winkle
410 * In POWER9, called if waking up from stop state >= pnv_first_deep_stop_state
413 * cr3 - gt if waking up with partial/complete hypervisor state loss
414 * cr4 - gt or eq if waking up from complete hypervisor state loss.
416 _GLOBAL(pnv_wakeup_tb_loss)
419 * Before entering any idle state, the NVGPRs are saved in the stack
420 * and they are restored before switching to the process context. Hence
421 * until they are restored, they are free to be used.
423 * Save SRR1 and LR in NVGPRs as they might be clobbered in
424 * opal_call() (called in CHECK_HMI_INTERRUPT). SRR1 is required
425 * to determine the wakeup reason if we branch to kvm_start_guest. LR
426 * is required to return back to reset vector after hypervisor state
427 * restore is complete.
433 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
435 lbz r7,PACA_THREAD_MASK(r13)
436 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
439 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
441 * Lock bit is set in one of the 2 cases-
442 * a. In the sleep/winkle enter path, the last thread is executing
443 * fastsleep workaround code.
444 * b. In the wake up path, another thread is executing fastsleep
445 * workaround undo code or resyncing timebase or restoring context
446 * In either case loop until the lock bit is cleared.
448 bnel core_idle_lock_held
454 * cr2 - eq if first thread to wakeup in core
455 * cr3- gt if waking up with partial/complete hypervisor state loss
456 * cr4 - gt or eq if waking up from complete hypervisor state loss.
459 ori r15,r15,PNV_CORE_IDLE_LOCK_BIT
465 lbz r4,PACA_SUBCORE_SIBLING_MASK(r13)
467 cmpwi r4,0 /* Check if first in subcore */
469 or r15,r15,r7 /* Set thread bit */
470 beq first_thread_in_subcore
471 END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300)
473 or r15,r15,r7 /* Set thread bit */
474 beq cr2,first_thread_in_core
476 /* Not first thread in core or subcore to wake up */
479 first_thread_in_subcore:
481 * If waking up from sleep, subcore state is not lost. Hence
482 * skip subcore state restore
484 blt cr4,subcore_state_restored
486 /* Restore per-subcore state */
495 subcore_state_restored:
497 * Check if the thread is also the first thread in the core. If not,
498 * skip to clear_lock.
502 first_thread_in_core:
505 * First thread in the core waking up from any state which can cause
506 * partial or complete hypervisor state loss. It needs to
507 * call the fastsleep workaround code if the platform requires it.
508 * Call it unconditionally here. The below branch instruction will
509 * be patched out if the platform does not have fastsleep or does not
510 * require the workaround. Patching will be performed during the
511 * discovery of idle-states.
513 .global pnv_fastsleep_workaround_at_exit
514 pnv_fastsleep_workaround_at_exit:
515 b fastsleep_workaround_at_exit
519 * Use cr3 which indicates that we are waking up with atleast partial
520 * hypervisor state loss to determine if TIMEBASE RESYNC is needed.
523 /* Time base re-sync */
524 bl opal_rm_resync_timebase;
526 * If waking up from sleep, per core state is not lost, skip to
532 * First thread in the core to wake up and its waking up with
533 * complete hypervisor state loss. Restore per core hypervisor
541 END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
549 andi. r15,r15,PNV_CORE_IDLE_THREAD_BITS
555 * Common to all threads.
557 * If waking up from sleep, hypervisor state is not lost. Hence
558 * skip hypervisor state restore.
560 blt cr4,hypervisor_state_restored
562 /* Waking up from winkle */
564 BEGIN_MMU_FTR_SECTION
566 END_MMU_FTR_SECTION_IFSET(MMU_FTR_TYPE_RADIX)
567 /* Restore SLB from PACA */
568 ld r8,PACA_SLBSHADOWPTR(r13)
571 li r3, SLBSHADOW_SAVEAREA
575 andis. r7,r5,SLB_ESID_V@h
582 /* Restore per thread state */
593 /* Call cur_cpu_spec->cpu_restore() */
594 LOAD_REG_ADDR(r4, cur_cpu_spec)
596 ld r12,CPU_SPEC_RESTORE(r4)
597 #ifdef PPC64_ELF_ABI_v1
603 hypervisor_state_restored:
607 blr /* Return back to System Reset vector from where
608 pnv_restore_hyp_resource was invoked */
610 fastsleep_workaround_at_exit:
613 bl opal_rm_config_cpu_idle_state
617 * R3 here contains the value that will be returned to the caller
620 _GLOBAL(pnv_wakeup_loss)
624 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
630 addi r1,r1,INT_FRAME_SIZE
637 * R3 here contains the value that will be returned to the caller
640 _GLOBAL(pnv_wakeup_noloss)
641 lbz r0,PACA_NAPSTATELOST(r13)
646 END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
651 addi r1,r1,INT_FRAME_SIZE