blob: f57a19348bddb4ec7f7bbf0f2bb2ff50aa292c97 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mackerrasff2e6d72006-03-28 09:28:14 +11002 * This file contains the power_save function for 970-family CPUs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 */
9
Linus Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/threads.h>
11#include <asm/processor.h>
12#include <asm/page.h>
13#include <asm/cputable.h>
14#include <asm/thread_info.h>
15#include <asm/ppc_asm.h>
Sam Ravnborg0013a852005-09-09 20:57:26 +020016#include <asm/asm-offsets.h>
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110017#include <asm/irqflags.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#undef DEBUG
20
21 .text
22
Linus Torvalds1da177e2005-04-16 15:20:36 -070023_GLOBAL(power4_idle)
24BEGIN_FTR_SECTION
25 blr
26END_FTR_SECTION_IFCLR(CPU_FTR_CAN_NAP)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 /* Now check if user or arch enabled NAP mode */
David Gibsone58c3492006-01-13 14:56:25 +110028 LOAD_REG_ADDRBASE(r3,powersave_nap)
29 lwz r4,ADDROFF(powersave_nap)(r3)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 cmpwi 0,r4,0
31 beqlr
32
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110033 /* Hard disable interrupts */
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100034 mfmsr r7
35 rldicl r0,r7,48,1
36 rotldi r0,r0,16
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110037 mtmsrd r0,1
38
39 /* Check if something happened while soft-disabled */
40 lbz r0,PACAIRQHAPPENED(r13)
41 cmpwi cr0,r0,0
42 bnelr
43
44 /* Soft-enable interrupts */
45#ifdef CONFIG_TRACE_IRQFLAGS
46 mflr r0
47 std r0,16(r1)
48 stdu r1,-128(r1)
Anton Blanchardb1576fe2014-02-04 16:04:35 +110049 bl trace_hardirqs_on
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110050 addi r1,r1,128
51 ld r0,16(r1)
52 mtlr r0
Benjamin Herrenschmidt01e8ec42012-03-16 09:26:59 +110053 mfmsr r7
Benjamin Herrenschmidt7230c562012-03-06 18:27:59 +110054#endif /* CONFIG_TRACE_IRQFLAGS */
55
Paul Mackerrasd04c56f2006-10-04 16:47:49 +100056 li r0,1
57 stb r0,PACASOFTIRQEN(r13) /* we'll hard-enable shortly */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058BEGIN_FTR_SECTION
59 DSSALL
60 sync
61END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
Stuart Yoder9778b692012-07-05 04:41:35 +000062 CURRENT_THREAD_INFO(r9, r1)
Paul Mackerrasf39224a2006-04-18 21:49:11 +100063 ld r8,TI_LOCAL_FLAGS(r9) /* set napping bit */
64 ori r8,r8,_TLF_NAPPING /* so when we take an exception */
65 std r8,TI_LOCAL_FLAGS(r9) /* it will return to our caller */
Paul Mackerrasff2e6d72006-03-28 09:28:14 +110066 ori r7,r7,MSR_EE
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 oris r7,r7,MSR_POW@h
Paul Mackerrasf39224a2006-04-18 21:49:11 +1000681: sync
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 isync
70 mtmsrd r7
71 isync
Paul Mackerrasf39224a2006-04-18 21:49:11 +100072 b 1b
73