2 * This file contains the power_save function for 970-family CPUs.
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.
10 #include <linux/threads.h>
11 #include <asm/processor.h>
13 #include <asm/cputable.h>
14 #include <asm/thread_info.h>
15 #include <asm/ppc_asm.h>
16 #include <asm/asm-offsets.h>
17 #include <asm/irqflags.h>
26 END_FTR_SECTION_IFCLR(CPU_FTR_CAN_NAP)
27 /* Now check if user or arch enabled NAP mode */
28 LOAD_REG_ADDRBASE(r3,powersave_nap)
29 lwz r4,ADDROFF(powersave_nap)(r3)
33 /* Hard disable interrupts */
39 /* Check if something happened while soft-disabled */
40 lbz r0,PACAIRQHAPPENED(r13)
44 /* Soft-enable interrupts */
45 #ifdef CONFIG_TRACE_IRQFLAGS
54 #endif /* CONFIG_TRACE_IRQFLAGS */
57 stb r0,PACASOFTIRQEN(r13) /* we'll hard-enable shortly */
61 END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
62 CURRENT_THREAD_INFO(r9, r1)
63 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 */