]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - arch/powerpc/kernel/idle_power4.S
Remove obsolete #include <linux/config.h>
[mirror_ubuntu-jammy-kernel.git] / arch / powerpc / kernel / idle_power4.S
CommitLineData
1da177e4 1/*
ff2e6d7e 2 * This file contains the power_save function for 970-family CPUs.
1da177e4
LT
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
1da177e4
LT
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>
0013a854 16#include <asm/asm-offsets.h>
1da177e4
LT
17
18#undef DEBUG
19
20 .text
21
1da177e4
LT
22_GLOBAL(power4_idle)
23BEGIN_FTR_SECTION
24 blr
25END_FTR_SECTION_IFCLR(CPU_FTR_CAN_NAP)
1da177e4 26 /* Now check if user or arch enabled NAP mode */
e58c3495
DG
27 LOAD_REG_ADDRBASE(r3,powersave_nap)
28 lwz r4,ADDROFF(powersave_nap)(r3)
1da177e4
LT
29 cmpwi 0,r4,0
30 beqlr
31
dc1c1ca3 32 /* Go to NAP now */
1da177e4
LT
33BEGIN_FTR_SECTION
34 DSSALL
35 sync
36END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
f39224a8
PM
37 clrrdi r9,r1,THREAD_SHIFT /* current thread_info */
38 ld r8,TI_LOCAL_FLAGS(r9) /* set napping bit */
39 ori r8,r8,_TLF_NAPPING /* so when we take an exception */
40 std r8,TI_LOCAL_FLAGS(r9) /* it will return to our caller */
ff2e6d7e
PM
41 mfmsr r7
42 ori r7,r7,MSR_EE
1da177e4 43 oris r7,r7,MSR_POW@h
f39224a8 441: sync
1da177e4
LT
45 isync
46 mtmsrd r7
47 isync
f39224a8
PM
48 b 1b
49