| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Paul Mackerras | ff2e6d7 | 2006-03-28 09:28:14 +1100 | [diff] [blame] | 2 | *  This file contains the power_save function for 970-family CPUs. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
|  | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #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 Ravnborg | 0013a85 | 2005-09-09 20:57:26 +0200 | [diff] [blame] | 16 | #include <asm/asm-offsets.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 |  | 
|  | 18 | #undef DEBUG | 
|  | 19 |  | 
|  | 20 | .text | 
|  | 21 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | _GLOBAL(power4_idle) | 
|  | 23 | BEGIN_FTR_SECTION | 
|  | 24 | blr | 
|  | 25 | END_FTR_SECTION_IFCLR(CPU_FTR_CAN_NAP) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | /* Now check if user or arch enabled NAP mode */ | 
| David Gibson | e58c349 | 2006-01-13 14:56:25 +1100 | [diff] [blame] | 27 | LOAD_REG_ADDRBASE(r3,powersave_nap) | 
|  | 28 | lwz	r4,ADDROFF(powersave_nap)(r3) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | cmpwi	0,r4,0 | 
|  | 30 | beqlr | 
|  | 31 |  | 
| Stephen Rothwell | dc1c1ca | 2005-10-01 18:43:42 +1000 | [diff] [blame] | 32 | /* Go to NAP now */ | 
| Paul Mackerras | d04c56f | 2006-10-04 16:47:49 +1000 | [diff] [blame] | 33 | mfmsr	r7 | 
|  | 34 | rldicl	r0,r7,48,1 | 
|  | 35 | rotldi	r0,r0,16 | 
|  | 36 | mtmsrd	r0,1			/* hard-disable interrupts */ | 
|  | 37 | li	r0,1 | 
|  | 38 | stb	r0,PACASOFTIRQEN(r13)	/* we'll hard-enable shortly */ | 
|  | 39 | stb	r0,PACAHARDIRQEN(r13) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | BEGIN_FTR_SECTION | 
|  | 41 | DSSALL | 
|  | 42 | sync | 
|  | 43 | END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC) | 
| Paul Mackerras | f39224a | 2006-04-18 21:49:11 +1000 | [diff] [blame] | 44 | clrrdi	r9,r1,THREAD_SHIFT	/* current thread_info */ | 
|  | 45 | ld	r8,TI_LOCAL_FLAGS(r9)	/* set napping bit */ | 
|  | 46 | ori	r8,r8,_TLF_NAPPING	/* so when we take an exception */ | 
|  | 47 | std	r8,TI_LOCAL_FLAGS(r9)	/* it will return to our caller */ | 
| Paul Mackerras | ff2e6d7 | 2006-03-28 09:28:14 +1100 | [diff] [blame] | 48 | ori	r7,r7,MSR_EE | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | oris	r7,r7,MSR_POW@h | 
| Paul Mackerras | f39224a | 2006-04-18 21:49:11 +1000 | [diff] [blame] | 50 | 1:	sync | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | isync | 
|  | 52 | mtmsrd	r7 | 
|  | 53 | isync | 
| Paul Mackerras | f39224a | 2006-04-18 21:49:11 +1000 | [diff] [blame] | 54 | b	1b | 
|  | 55 |  |