-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 101603 b: refs/heads/master c: 0b2cca8 h: refs/heads/master i: 101601: 7c0de68 101599: 2a00316 v: v3
- Loading branch information
Scott Wood
authored and
Paul Mackerras
committed
May 16, 2008
1 parent
fa74b60
commit 840c85e
Showing
4 changed files
with
63 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a560643e21e1ac10f7398b45111aecdd7f47a4a5 | ||
refs/heads/master: 0b2cca804ee40495bc92449c3e22f3c3a3f2977a |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Enter and leave sleep state on chips with 6xx-style HID0 | ||
* power management bits, which don't leave sleep state via reset. | ||
* | ||
* Author: Scott Wood <scottwood@freescale.com> | ||
* | ||
* Copyright (c) 2006-2007 Freescale Semiconductor, Inc. | ||
* | ||
* This program is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 as published | ||
* by the Free Software Foundation. | ||
*/ | ||
|
||
#include <asm/ppc_asm.h> | ||
#include <asm/reg.h> | ||
#include <asm/thread_info.h> | ||
#include <asm/asm-offsets.h> | ||
|
||
_GLOBAL(mpc6xx_enter_standby) | ||
mflr r4 | ||
|
||
mfspr r5, SPRN_HID0 | ||
rlwinm r5, r5, 0, ~(HID0_DOZE | HID0_NAP) | ||
oris r5, r5, HID0_SLEEP@h | ||
mtspr SPRN_HID0, r5 | ||
isync | ||
|
||
lis r5, ret_from_standby@h | ||
ori r5, r5, ret_from_standby@l | ||
mtlr r5 | ||
|
||
rlwinm r5, r1, 0, 0, 31-THREAD_SHIFT | ||
lwz r6, TI_LOCAL_FLAGS(r5) | ||
ori r6, r6, _TLF_SLEEPING | ||
stw r6, TI_LOCAL_FLAGS(r5) | ||
|
||
mfmsr r5 | ||
ori r5, r5, MSR_EE | ||
oris r5, r5, MSR_POW@h | ||
sync | ||
mtmsr r5 | ||
isync | ||
|
||
1: b 1b | ||
|
||
ret_from_standby: | ||
mfspr r5, SPRN_HID0 | ||
rlwinm r5, r5, 0, ~HID0_SLEEP | ||
mtspr SPRN_HID0, r5 | ||
|
||
mtlr r4 | ||
blr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#ifndef __ASM_POWERPC_MPC6xx_H | ||
#define __ASM_POWERPC_MPC6xx_H | ||
|
||
void mpc6xx_enter_standby(void); | ||
|
||
#endif |