powerpc/64s: Stop using bit in HSPRG0 to test winkle
[linux-2.6-block.git] / arch / powerpc / kernel / idle_book3s.S
CommitLineData
948cf67c 1/*
bcef83a0
SP
2 * This file contains idle entry/exit functions for POWER7,
3 * POWER8 and POWER9 CPUs.
948cf67c
BH
4 *
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.
9 */
10
11#include <linux/threads.h>
12#include <asm/processor.h>
13#include <asm/page.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>
7230c564 19#include <asm/hw_irq.h>
f0888f70 20#include <asm/kvm_book3s_asm.h>
97eb001f 21#include <asm/opal.h>
7cba160a 22#include <asm/cpuidle.h>
bf0153c1 23#include <asm/exception-64s.h>
f64e8084 24#include <asm/book3s/64/mmu-hash.h>
bcef83a0 25#include <asm/mmu.h>
948cf67c
BH
26
27#undef DEBUG
28
77b54e9f
SP
29/*
30 * Use unused space in the interrupt stack to save and restore
31 * registers for winkle support.
32 */
33#define _SDR1 GPR3
34#define _RPR GPR4
35#define _SPURR GPR5
36#define _PURR GPR6
37#define _TSCR GPR7
38#define _DSCR GPR8
39#define _AMOR GPR9
40#define _WORT GPR10
41#define _WORC GPR11
bcef83a0
SP
42#define _PTCR GPR12
43
09206b60 44#define PSSCR_EC_ESL_MASK_SHIFTED (PSSCR_EC | PSSCR_ESL) >> 16
77b54e9f 45
aca79d2b
VS
46 .text
47
0dfffb48
SP
48/*
49 * Used by threads before entering deep idle states. Saves SPRs
50 * in interrupt stack frame
51 */
52save_sprs_to_stack:
53 /*
54 * Note all register i.e per-core, per-subcore or per-thread is saved
55 * here since any thread in the core might wake up first
56 */
bcef83a0
SP
57BEGIN_FTR_SECTION
58 mfspr r3,SPRN_PTCR
59 std r3,_PTCR(r1)
60 /*
61 * Note - SDR1 is dropped in Power ISA v3. Hence not restoring
62 * SDR1 here
63 */
64FTR_SECTION_ELSE
0dfffb48
SP
65 mfspr r3,SPRN_SDR1
66 std r3,_SDR1(r1)
bcef83a0 67ALT_FTR_SECTION_END_IFSET(CPU_FTR_ARCH_300)
0dfffb48
SP
68 mfspr r3,SPRN_RPR
69 std r3,_RPR(r1)
70 mfspr r3,SPRN_SPURR
71 std r3,_SPURR(r1)
72 mfspr r3,SPRN_PURR
73 std r3,_PURR(r1)
74 mfspr r3,SPRN_TSCR
75 std r3,_TSCR(r1)
76 mfspr r3,SPRN_DSCR
77 std r3,_DSCR(r1)
78 mfspr r3,SPRN_AMOR
79 std r3,_AMOR(r1)
80 mfspr r3,SPRN_WORT
81 std r3,_WORT(r1)
82 mfspr r3,SPRN_WORC
83 std r3,_WORC(r1)
84
85 blr
86
b32aadc1
SP
87/*
88 * Used by threads when the lock bit of core_idle_state is set.
89 * Threads will spin in HMT_LOW until the lock bit is cleared.
90 * r14 - pointer to core_idle_state
91 * r15 - used to load contents of core_idle_state
09b7e37b 92 * r9 - used as a temporary variable
b32aadc1
SP
93 */
94
95core_idle_lock_held:
96 HMT_LOW
973: lwz r15,0(r14)
98 andi. r15,r15,PNV_CORE_IDLE_LOCK_BIT
99 bne 3b
100 HMT_MEDIUM
101 lwarx r15,0,r14
09b7e37b
PM
102 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
103 bne core_idle_lock_held
b32aadc1
SP
104 blr
105
aca79d2b
VS
106/*
107 * Pass requested state in r3:
bcef83a0
SP
108 * r3 - PNV_THREAD_NAP/SLEEP/WINKLE in POWER8
109 * - Requested STOP state in POWER9
8d6f7c5a
ME
110 *
111 * To check IRQ_HAPPENED in r4
112 * 0 - don't check
113 * 1 - check
4eae2c9a
SP
114 *
115 * Address to 'rfid' to in r5
aca79d2b 116 */
bf0153c1 117pnv_powersave_common:
aca79d2b 118 /* Use r3 to pass state nap/sleep/winkle */
948cf67c
BH
119 /* NAP is a state loss, we create a regs frame on the
120 * stack, fill it up with the state we care about and
121 * stick a pointer to it in PACAR1. We really only
122 * need to save PC, some CR bits and the NV GPRs,
123 * but for now an interrupt frame will do.
124 */
125 mflr r0
126 std r0,16(r1)
127 stdu r1,-INT_FRAME_SIZE(r1)
128 std r0,_LINK(r1)
129 std r0,_NIP(r1)
130
948cf67c
BH
131 /* Hard disable interrupts */
132 mfmsr r9
133 rldicl r9,r9,48,1
134 rotldi r9,r9,16
135 mtmsrd r9,1 /* hard-disable interrupts */
7230c564
BH
136
137 /* Check if something happened while soft-disabled */
138 lbz r0,PACAIRQHAPPENED(r13)
d6a4f709 139 andi. r0,r0,~PACA_IRQ_HARD_DIS@l
7230c564 140 beq 1f
8d6f7c5a
ME
141 cmpwi cr0,r4,0
142 beq 1f
7230c564
BH
143 addi r1,r1,INT_FRAME_SIZE
144 ld r0,16(r1)
f57333a7 145 li r3,0 /* Return 0 (no nap) */
7230c564
BH
146 mtlr r0
147 blr
148
1491: /* We mark irqs hard disabled as this is the state we'll
150 * be in when returning and we need to tell arch_local_irq_restore()
151 * about it
152 */
153 li r0,PACA_IRQ_HARD_DIS
154 stb r0,PACAIRQHAPPENED(r13)
155
156 /* We haven't lost state ... yet */
948cf67c 157 li r0,0
2fde6d20 158 stb r0,PACA_NAPSTATELOST(r13)
948cf67c
BH
159
160 /* Continue saving state */
161 SAVE_GPR(2, r1)
162 SAVE_NVGPRS(r1)
aca79d2b
VS
163 mfcr r4
164 std r4,_CCR(r1)
948cf67c
BH
165 std r9,_MSR(r1)
166 std r1,PACAR1(r13)
167
8117ac6a
PM
168 /*
169 * Go to real mode to do the nap, as required by the architecture.
170 * Also, we need to be in real mode before setting hwthread_state,
171 * because as soon as we do that, another thread can switch
172 * the MMU context to the guest.
173 */
4eae2c9a 174 LOAD_REG_IMMEDIATE(r7, MSR_IDLE)
8117ac6a
PM
175 li r6, MSR_RI
176 andc r6, r9, r6
8117ac6a 177 mtmsrd r6, 1 /* clear RI before setting SRR0/1 */
4eae2c9a
SP
178 mtspr SPRN_SRR0, r5
179 mtspr SPRN_SRR1, r7
8117ac6a
PM
180 rfid
181
5fa6b6bd
SP
182 .globl pnv_enter_arch207_idle_mode
183pnv_enter_arch207_idle_mode:
56c46222
PM
184#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
185 /* Tell KVM we're entering idle */
186 li r4,KVM_HWTHREAD_IN_IDLE
187 /******************************************************/
188 /* N O T E W E L L ! ! ! N O T E W E L L */
189 /* The following store to HSTATE_HWTHREAD_STATE(r13) */
190 /* MUST occur in real mode, i.e. with the MMU off, */
191 /* and the MMU must stay off until we clear this flag */
bf0153c1
NP
192 /* and test HSTATE_HWTHREAD_REQ(r13) in */
193 /* pnv_powersave_wakeup in this file. */
56c46222
PM
194 /* The reason is that another thread can switch the */
195 /* MMU to a guest context whenever this flag is set */
196 /* to KVM_HWTHREAD_IN_IDLE, and if the MMU was on, */
197 /* that would potentially cause this thread to start */
198 /* executing instructions from guest memory in */
199 /* hypervisor mode, leading to a host crash or data */
200 /* corruption, or worse. */
201 /******************************************************/
202 stb r4,HSTATE_HWTHREAD_STATE(r13)
203#endif
7cba160a 204 stb r3,PACA_THREAD_IDLE_STATE(r13)
77b54e9f
SP
205 cmpwi cr3,r3,PNV_THREAD_SLEEP
206 bge cr3,2f
823b7bd5 207 IDLE_STATE_ENTER_SEQ_NORET(PPC_NAP)
aca79d2b 208 /* No return */
7cba160a
SP
2092:
210 /* Sleep or winkle */
211 lbz r7,PACA_THREAD_MASK(r13)
212 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
213lwarx_loop1:
214 lwarx r15,0,r14
b32aadc1
SP
215
216 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
217 bnel core_idle_lock_held
218
7cba160a
SP
219 andc r15,r15,r7 /* Clear thread bit */
220
221 andi. r15,r15,PNV_CORE_IDLE_THREAD_BITS
222
223/*
224 * If cr0 = 0, then current thread is the last thread of the core entering
225 * sleep. Last thread needs to execute the hardware bug workaround code if
226 * required by the platform.
227 * Make the workaround call unconditionally here. The below branch call is
228 * patched out when the idle states are discovered if the platform does not
229 * require it.
230 */
231.global pnv_fastsleep_workaround_at_entry
232pnv_fastsleep_workaround_at_entry:
233 beq fastsleep_workaround_at_entry
234
235 stwcx. r15,0,r14
236 bne- lwarx_loop1
237 isync
238
77b54e9f
SP
239common_enter: /* common code for all the threads entering sleep or winkle */
240 bgt cr3,enter_winkle
823b7bd5 241 IDLE_STATE_ENTER_SEQ_NORET(PPC_SLEEP)
7cba160a
SP
242
243fastsleep_workaround_at_entry:
244 ori r15,r15,PNV_CORE_IDLE_LOCK_BIT
245 stwcx. r15,0,r14
246 bne- lwarx_loop1
247 isync
248
249 /* Fast sleep workaround */
250 li r3,1
251 li r4,1
ab9bad0e 252 bl opal_config_cpu_idle_state
7cba160a
SP
253
254 /* Clear Lock bit */
255 li r0,0
256 lwsync
257 stw r0,0(r14)
258 b common_enter
259
77b54e9f 260enter_winkle:
0dfffb48
SP
261 bl save_sprs_to_stack
262
823b7bd5 263 IDLE_STATE_ENTER_SEQ_NORET(PPC_WINKLE)
f0888f70 264
bcef83a0 265/*
09206b60 266 * r3 - PSSCR value corresponding to the requested stop state.
bcef83a0
SP
267 */
268power_enter_stop:
56c46222
PM
269#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
270 /* Tell KVM we're entering idle */
271 li r4,KVM_HWTHREAD_IN_IDLE
272 /* DO THIS IN REAL MODE! See comment above. */
273 stb r4,HSTATE_HWTHREAD_STATE(r13)
274#endif
09206b60
GS
275/*
276 * Check if we are executing the lite variant with ESL=EC=0
277 */
278 andis. r4,r3,PSSCR_EC_ESL_MASK_SHIFTED
279 clrldi r3,r3,60 /* r3 = Bits[60:63] = Requested Level (RL) */
424f8acd 280 bne .Lhandle_esl_ec_set
09206b60
GS
281 IDLE_STATE_ENTER_SEQ(PPC_STOP)
282 li r3,0 /* Since we didn't lose state, return 0 */
283 b pnv_wakeup_noloss
424f8acd
GS
284
285.Lhandle_esl_ec_set:
bcef83a0
SP
286/*
287 * Check if the requested state is a deep idle state.
288 */
424f8acd 289 LOAD_REG_ADDRBASE(r5,pnv_first_deep_stop_state)
bcef83a0
SP
290 ld r4,ADDROFF(pnv_first_deep_stop_state)(r5)
291 cmpd r3,r4
424f8acd 292 bge .Lhandle_deep_stop
823b7bd5 293 IDLE_STATE_ENTER_SEQ_NORET(PPC_STOP)
424f8acd 294.Lhandle_deep_stop:
bcef83a0
SP
295/*
296 * Entering deep idle state.
297 * Clear thread bit in PACA_CORE_IDLE_STATE, save SPRs to
298 * stack and enter stop
299 */
300 lbz r7,PACA_THREAD_MASK(r13)
301 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
302
303lwarx_loop_stop:
304 lwarx r15,0,r14
305 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
306 bnel core_idle_lock_held
307 andc r15,r15,r7 /* Clear thread bit */
308
309 stwcx. r15,0,r14
310 bne- lwarx_loop_stop
311 isync
312
313 bl save_sprs_to_stack
314
823b7bd5 315 IDLE_STATE_ENTER_SEQ_NORET(PPC_STOP)
bcef83a0 316
aca79d2b
VS
317_GLOBAL(power7_idle)
318 /* Now check if user or arch enabled NAP mode */
319 LOAD_REG_ADDRBASE(r3,powersave_nap)
320 lwz r4,ADDROFF(powersave_nap)(r3)
321 cmpwi 0,r4,0
322 beqlr
8d6f7c5a 323 li r3, 1
aca79d2b
VS
324 /* fall through */
325
326_GLOBAL(power7_nap)
8d6f7c5a 327 mr r4,r3
7cba160a 328 li r3,PNV_THREAD_NAP
4eae2c9a 329 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
5fa6b6bd 330 b pnv_powersave_common
aca79d2b
VS
331 /* No return */
332
333_GLOBAL(power7_sleep)
7cba160a 334 li r3,PNV_THREAD_SLEEP
c733cf83 335 li r4,1
4eae2c9a 336 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
5fa6b6bd 337 b pnv_powersave_common
aca79d2b 338 /* No return */
948cf67c 339
77b54e9f 340_GLOBAL(power7_winkle)
bfd1b7ae 341 li r3,PNV_THREAD_WINKLE
77b54e9f 342 li r4,1
4eae2c9a 343 LOAD_REG_ADDR(r5, pnv_enter_arch207_idle_mode)
5fa6b6bd 344 b pnv_powersave_common
77b54e9f
SP
345 /* No return */
346
bbdb760d
MS
347#define CHECK_HMI_INTERRUPT \
348 mfspr r0,SPRN_SRR1; \
349BEGIN_FTR_SECTION_NESTED(66); \
350 rlwinm r0,r0,45-31,0xf; /* extract wake reason field (P8) */ \
351FTR_SECTION_ELSE_NESTED(66); \
352 rlwinm r0,r0,45-31,0xe; /* P7 wake reason field is 3 bits */ \
353ALT_FTR_SECTION_END_NESTED_IFSET(CPU_FTR_ARCH_207S, 66); \
354 cmpwi r0,0xa; /* Hypervisor maintenance ? */ \
355 bne 20f; \
356 /* Invoke opal call to handle hmi */ \
357 ld r2,PACATOC(r13); \
358 ld r1,PACAR1(r13); \
359 std r3,ORIG_GPR3(r1); /* Save original r3 */ \
fd7bacbc
MS
360 li r3,0; /* NULL argument */ \
361 bl hmi_exception_realmode; \
362 nop; \
bbdb760d
MS
363 ld r3,ORIG_GPR3(r1); /* Restore original r3 */ \
36420: nop;
365
bcef83a0 366/*
09206b60
GS
367 * r3 - The PSSCR value corresponding to the stop state.
368 * r4 - The PSSCR mask corrresonding to the stop state.
bcef83a0
SP
369 */
370_GLOBAL(power9_idle_stop)
09206b60
GS
371 mfspr r5,SPRN_PSSCR
372 andc r5,r5,r4
373 or r3,r3,r5
374 mtspr SPRN_PSSCR,r3
bcef83a0 375 LOAD_REG_ADDR(r5,power_enter_stop)
09206b60 376 li r4,1
bcef83a0
SP
377 b pnv_powersave_common
378 /* No return */
17ed4c8f 379
17ed4c8f
GS
380/*
381 * On waking up from stop 0,1,2 with ESL=1 on POWER9 DD1,
382 * HSPRG0 will be set to the HSPRG0 value of one of the
383 * threads in this core. Thus the value we have in r13
384 * may not be this thread's paca pointer.
385 *
386 * Fortunately, the TIR remains invariant. Since this thread's
387 * paca pointer is recorded in all its sibling's paca, we can
388 * correctly recover this thread's paca pointer if we
389 * know the index of this thread in the core.
390 *
391 * This index can be obtained from the TIR.
392 *
393 * i.e, thread's position in the core = TIR.
394 * If this value is i, then this thread's paca is
395 * paca->thread_sibling_pacas[i].
396 */
397power9_dd1_recover_paca:
398 mfspr r4, SPRN_TIR
399 /*
400 * Since each entry in thread_sibling_pacas is 8 bytes
401 * we need to left-shift by 3 bits. Thus r4 = i * 8
402 */
403 sldi r4, r4, 3
404 /* Get &paca->thread_sibling_pacas[0] in r5 */
405 ld r5, PACA_SIBLING_PACA_PTRS(r13)
406 /* Load paca->thread_sibling_pacas[i] into r13 */
407 ldx r13, r4, r5
408 SET_PACA(r13)
409 ld r2, PACATOC(r13)
410 /*
411 * Indicate that we have lost NVGPR state
412 * which needs to be restored from the stack.
413 */
414 li r3, 1
415 stb r0,PACA_NAPSTATELOST(r13)
416 blr
417
544686ca
NP
418/*
419 * Called from reset vector for powersave wakeups.
420 * cr3 - set to gt if waking up with partial/complete hypervisor state loss
421 */
bf0153c1
NP
422.global pnv_powersave_wakeup
423pnv_powersave_wakeup:
bf0153c1
NP
424 bl pnv_restore_hyp_resource
425
426 li r0,PNV_THREAD_RUNNING
427 stb r0,PACA_THREAD_IDLE_STATE(r13) /* Clear thread state */
428
429#ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE
430 li r0,KVM_HWTHREAD_IN_KERNEL
431 stb r0,HSTATE_HWTHREAD_STATE(r13)
432 /* Order setting hwthread_state vs. testing hwthread_req */
433 sync
434 lbz r0,HSTATE_HWTHREAD_REQ(r13)
435 cmpwi r0,0
436 beq 1f
437 b kvm_start_guest
4381:
439#endif
440
441 /* Return SRR1 from power7_nap() */
442 mfspr r3,SPRN_SRR1
443 blt cr3,pnv_wakeup_noloss
444 b pnv_wakeup_loss
445
17065671 446/*
bf0153c1
NP
447 * Check whether we have woken up with hypervisor state loss.
448 * If yes, restore hypervisor state and return back to link.
17065671 449 *
17065671
SP
450 * cr3 - set to gt if waking up with partial/complete hypervisor state loss
451 */
bf0153c1 452pnv_restore_hyp_resource:
bcef83a0 453BEGIN_FTR_SECTION
17ed4c8f
GS
454 mflr r6
455 bl power9_dd1_recover_paca
456 mtlr r6
544686ca 457FTR_SECTION_ELSE
17ed4c8f 458 ld r2, PACATOC(r13)
544686ca
NP
459ALT_FTR_SECTION_END_IFSET(CPU_FTR_POWER9_DD1)
460
461BEGIN_FTR_SECTION
bcef83a0
SP
462 /*
463 * POWER ISA 3. Use PSSCR to determine if we
464 * are waking up from deep idle state
465 */
466 LOAD_REG_ADDRBASE(r5,pnv_first_deep_stop_state)
467 ld r4,ADDROFF(pnv_first_deep_stop_state)(r5)
468
469 mfspr r5,SPRN_PSSCR
17065671 470 /*
bcef83a0
SP
471 * 0-3 bits correspond to Power-Saving Level Status
472 * which indicates the idle state we are waking up from
473 */
474 rldicl r5,r5,4,60
475 cmpd cr4,r5,r4
bf0153c1
NP
476 bge cr4,pnv_wakeup_tb_loss /* returns to caller */
477
478 blr /* Waking up without hypervisor state loss. */
bcef83a0
SP
479
480END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
481
482 /*
483 * POWER ISA 2.07 or less.
544686ca 484 * Check if we slept with winkle.
17065671 485 */
17065671
SP
486 lbz r0,PACA_THREAD_IDLE_STATE(r13)
487 cmpwi cr2,r0,PNV_THREAD_NAP
544686ca 488 cmpwi cr4,r0,PNV_THREAD_WINKLE
5fa6b6bd 489 bgt cr2,pnv_wakeup_tb_loss /* Either sleep or Winkle */
17065671
SP
490
491 /*
492 * We fall through here if PACA_THREAD_IDLE_STATE shows we are waking
493 * up from nap. At this stage CR3 shouldn't contains 'gt' since that
494 * indicates we are waking with hypervisor state loss from nap.
495 */
496 bgt cr3,.
497
bf0153c1 498 blr /* Waking up without hypervisor state loss */
17065671 499
bcef83a0
SP
500/*
501 * Called if waking up from idle state which can cause either partial or
502 * complete hyp state loss.
503 * In POWER8, called if waking up from fastsleep or winkle
504 * In POWER9, called if waking up from stop state >= pnv_first_deep_stop_state
505 *
506 * r13 - PACA
507 * cr3 - gt if waking up with partial/complete hypervisor state loss
bd00a240 508 * cr4 - gt or eq if waking up from complete hypervisor state loss.
bcef83a0 509 */
bf0153c1 510pnv_wakeup_tb_loss:
97eb001f 511 ld r1,PACAR1(r13)
7cba160a
SP
512 /*
513 * Before entering any idle state, the NVGPRs are saved in the stack
514 * and they are restored before switching to the process context. Hence
515 * until they are restored, they are free to be used.
516 *
17065671 517 * Save SRR1 and LR in NVGPRs as they might be clobbered in
69c592ed 518 * opal_call() (called in CHECK_HMI_INTERRUPT). SRR1 is required
17065671
SP
519 * to determine the wakeup reason if we branch to kvm_start_guest. LR
520 * is required to return back to reset vector after hypervisor state
521 * restore is complete.
7cba160a 522 */
17065671 523 mflr r17
7cba160a 524 mfspr r16,SPRN_SRR1
bbdb760d
MS
525BEGIN_FTR_SECTION
526 CHECK_HMI_INTERRUPT
527END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
7cba160a
SP
528
529 lbz r7,PACA_THREAD_MASK(r13)
530 ld r14,PACA_CORE_IDLE_STATE_PTR(r13)
531lwarx_loop2:
532 lwarx r15,0,r14
533 andi. r9,r15,PNV_CORE_IDLE_LOCK_BIT
534 /*
535 * Lock bit is set in one of the 2 cases-
536 * a. In the sleep/winkle enter path, the last thread is executing
537 * fastsleep workaround code.
538 * b. In the wake up path, another thread is executing fastsleep
539 * workaround undo code or resyncing timebase or restoring context
540 * In either case loop until the lock bit is cleared.
541 */
b32aadc1 542 bnel core_idle_lock_held
7cba160a
SP
543
544 cmpwi cr2,r15,0
77b54e9f
SP
545
546 /*
547 * At this stage
bcef83a0
SP
548 * cr2 - eq if first thread to wakeup in core
549 * cr3- gt if waking up with partial/complete hypervisor state loss
bd00a240 550 * cr4 - gt or eq if waking up from complete hypervisor state loss.
77b54e9f
SP
551 */
552
7cba160a
SP
553 ori r15,r15,PNV_CORE_IDLE_LOCK_BIT
554 stwcx. r15,0,r14
555 bne- lwarx_loop2
556 isync
557
bcef83a0
SP
558BEGIN_FTR_SECTION
559 lbz r4,PACA_SUBCORE_SIBLING_MASK(r13)
560 and r4,r4,r15
561 cmpwi r4,0 /* Check if first in subcore */
562
563 or r15,r15,r7 /* Set thread bit */
564 beq first_thread_in_subcore
565END_FTR_SECTION_IFCLR(CPU_FTR_ARCH_300)
566
567 or r15,r15,r7 /* Set thread bit */
568 beq cr2,first_thread_in_core
569
570 /* Not first thread in core or subcore to wake up */
571 b clear_lock
572
573first_thread_in_subcore:
77b54e9f
SP
574 /*
575 * If waking up from sleep, subcore state is not lost. Hence
576 * skip subcore state restore
577 */
bd00a240 578 blt cr4,subcore_state_restored
77b54e9f
SP
579
580 /* Restore per-subcore state */
581 ld r4,_SDR1(r1)
582 mtspr SPRN_SDR1,r4
bcef83a0 583
77b54e9f
SP
584 ld r4,_RPR(r1)
585 mtspr SPRN_RPR,r4
586 ld r4,_AMOR(r1)
587 mtspr SPRN_AMOR,r4
588
589subcore_state_restored:
590 /*
591 * Check if the thread is also the first thread in the core. If not,
592 * skip to clear_lock.
593 */
594 bne cr2,clear_lock
595
596first_thread_in_core:
597
7cba160a 598 /*
bcef83a0
SP
599 * First thread in the core waking up from any state which can cause
600 * partial or complete hypervisor state loss. It needs to
7cba160a
SP
601 * call the fastsleep workaround code if the platform requires it.
602 * Call it unconditionally here. The below branch instruction will
bcef83a0
SP
603 * be patched out if the platform does not have fastsleep or does not
604 * require the workaround. Patching will be performed during the
605 * discovery of idle-states.
7cba160a
SP
606 */
607.global pnv_fastsleep_workaround_at_exit
608pnv_fastsleep_workaround_at_exit:
609 b fastsleep_workaround_at_exit
610
611timebase_resync:
bcef83a0
SP
612 /*
613 * Use cr3 which indicates that we are waking up with atleast partial
614 * hypervisor state loss to determine if TIMEBASE RESYNC is needed.
615 */
7cba160a 616 ble cr3,clear_lock
97eb001f 617 /* Time base re-sync */
ab9bad0e 618 bl opal_resync_timebase;
77b54e9f
SP
619 /*
620 * If waking up from sleep, per core state is not lost, skip to
621 * clear_lock.
622 */
bd00a240 623 blt cr4,clear_lock
77b54e9f 624
bcef83a0
SP
625 /*
626 * First thread in the core to wake up and its waking up with
627 * complete hypervisor state loss. Restore per core hypervisor
628 * state.
629 */
630BEGIN_FTR_SECTION
631 ld r4,_PTCR(r1)
632 mtspr SPRN_PTCR,r4
633 ld r4,_RPR(r1)
634 mtspr SPRN_RPR,r4
635END_FTR_SECTION_IFSET(CPU_FTR_ARCH_300)
636
77b54e9f
SP
637 ld r4,_TSCR(r1)
638 mtspr SPRN_TSCR,r4
639 ld r4,_WORC(r1)
640 mtspr SPRN_WORC,r4
641
7cba160a
SP
642clear_lock:
643 andi. r15,r15,PNV_CORE_IDLE_THREAD_BITS
644 lwsync
645 stw r15,0(r14)
646
647common_exit:
77b54e9f
SP
648 /*
649 * Common to all threads.
650 *
651 * If waking up from sleep, hypervisor state is not lost. Hence
652 * skip hypervisor state restore.
653 */
bd00a240 654 blt cr4,hypervisor_state_restored
77b54e9f
SP
655
656 /* Waking up from winkle */
657
bcef83a0
SP
658BEGIN_MMU_FTR_SECTION
659 b no_segments
5a25b6f5 660END_MMU_FTR_SECTION_IFSET(MMU_FTR_TYPE_RADIX)
77b54e9f
SP
661 /* Restore SLB from PACA */
662 ld r8,PACA_SLBSHADOWPTR(r13)
663
664 .rept SLB_NUM_BOLTED
665 li r3, SLBSHADOW_SAVEAREA
666 LDX_BE r5, r8, r3
667 addi r3, r3, 8
668 LDX_BE r6, r8, r3
669 andis. r7,r5,SLB_ESID_V@h
670 beq 1f
671 slbmte r6,r5
6721: addi r8,r8,16
673 .endr
bcef83a0
SP
674no_segments:
675
676 /* Restore per thread state */
77b54e9f
SP
677
678 ld r4,_SPURR(r1)
679 mtspr SPRN_SPURR,r4
680 ld r4,_PURR(r1)
681 mtspr SPRN_PURR,r4
682 ld r4,_DSCR(r1)
683 mtspr SPRN_DSCR,r4
684 ld r4,_WORT(r1)
685 mtspr SPRN_WORT,r4
686
bcef83a0
SP
687 /* Call cur_cpu_spec->cpu_restore() */
688 LOAD_REG_ADDR(r4, cur_cpu_spec)
689 ld r4,0(r4)
690 ld r12,CPU_SPEC_RESTORE(r4)
691#ifdef PPC64_ELF_ABI_v1
692 ld r12,0(r12)
693#endif
694 mtctr r12
695 bctrl
696
77b54e9f
SP
697hypervisor_state_restored:
698
7cba160a 699 mtspr SPRN_SRR1,r16
17065671 700 mtlr r17
bf0153c1 701 blr /* return to pnv_powersave_wakeup */
97eb001f 702
7cba160a
SP
703fastsleep_workaround_at_exit:
704 li r3,1
705 li r4,0
ab9bad0e 706 bl opal_config_cpu_idle_state
7cba160a
SP
707 b timebase_resync
708
56548fc0
PM
709/*
710 * R3 here contains the value that will be returned to the caller
711 * of power7_nap.
712 */
bf0153c1
NP
713.global pnv_wakeup_loss
714pnv_wakeup_loss:
948cf67c 715 ld r1,PACAR1(r13)
bbdb760d
MS
716BEGIN_FTR_SECTION
717 CHECK_HMI_INTERRUPT
718END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
948cf67c
BH
719 REST_NVGPRS(r1)
720 REST_GPR(2, r1)
56548fc0 721 ld r6,_CCR(r1)
948cf67c
BH
722 ld r4,_MSR(r1)
723 ld r5,_NIP(r1)
724 addi r1,r1,INT_FRAME_SIZE
56548fc0 725 mtcr r6
948cf67c
BH
726 mtspr SPRN_SRR1,r4
727 mtspr SPRN_SRR0,r5
728 rfid
729
56548fc0
PM
730/*
731 * R3 here contains the value that will be returned to the caller
732 * of power7_nap.
733 */
bf0153c1 734pnv_wakeup_noloss:
2fde6d20
PM
735 lbz r0,PACA_NAPSTATELOST(r13)
736 cmpwi r0,0
5fa6b6bd 737 bne pnv_wakeup_loss
bbdb760d
MS
738BEGIN_FTR_SECTION
739 CHECK_HMI_INTERRUPT
740END_FTR_SECTION_IFSET(CPU_FTR_HVMODE)
948cf67c 741 ld r1,PACAR1(r13)
0aab3747 742 ld r6,_CCR(r1)
948cf67c
BH
743 ld r4,_MSR(r1)
744 ld r5,_NIP(r1)
745 addi r1,r1,INT_FRAME_SIZE
0aab3747 746 mtcr r6
948cf67c
BH
747 mtspr SPRN_SRR1,r4
748 mtspr SPRN_SRR0,r5
749 rfid