2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2006-03-27 22:28:14 +00:00
|
|
|
* This file contains the power_save function for 970-family CPUs.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/config.h>
|
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/cputable.h>
|
|
|
|
#include <asm/thread_info.h>
|
|
|
|
#include <asm/ppc_asm.h>
|
2005-09-09 18:57:26 +00:00
|
|
|
#include <asm/asm-offsets.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#undef DEBUG
|
|
|
|
|
|
|
|
.text
|
|
|
|
|
|
|
|
_GLOBAL(power4_idle)
|
|
|
|
BEGIN_FTR_SECTION
|
|
|
|
blr
|
|
|
|
END_FTR_SECTION_IFCLR(CPU_FTR_CAN_NAP)
|
|
|
|
/* Now check if user or arch enabled NAP mode */
|
2006-01-13 03:56:25 +00:00
|
|
|
LOAD_REG_ADDRBASE(r3,powersave_nap)
|
|
|
|
lwz r4,ADDROFF(powersave_nap)(r3)
|
2005-04-16 22:20:36 +00:00
|
|
|
cmpwi 0,r4,0
|
|
|
|
beqlr
|
|
|
|
|
2005-10-01 08:43:42 +00:00
|
|
|
/* Go to NAP now */
|
2005-04-16 22:20:36 +00:00
|
|
|
BEGIN_FTR_SECTION
|
|
|
|
DSSALL
|
|
|
|
sync
|
|
|
|
END_FTR_SECTION_IFSET(CPU_FTR_ALTIVEC)
|
2006-03-27 22:28:14 +00:00
|
|
|
mfmsr r7
|
|
|
|
ori r7,r7,MSR_EE
|
2005-04-16 22:20:36 +00:00
|
|
|
oris r7,r7,MSR_POW@h
|
|
|
|
sync
|
|
|
|
isync
|
|
|
|
mtmsrd r7
|
|
|
|
isync
|
|
|
|
sync
|
|
|
|
blr
|