* [PATCH v2] powerpc: Fix determining TI_CPU in power_save_ppc32_restore()
@ 2008-08-26 2:08 Kumar Gala
2008-08-26 4:39 ` Benjamin Herrenschmidt
0 siblings, 1 reply; 3+ messages in thread
From: Kumar Gala @ 2008-08-26 2:08 UTC (permalink / raw)
To: paulus; +Cc: linuxppc-dev
The calculation to get TI_CPU based off of SPRG3 was just plain wrong.
Just offset off the stack pointer (to get to thread_info) like all the
other references to TI_CPU do.
This was pointed out by Chen Gong <G.Chen@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
The first version was just brain damaged. This version should be cleaner and
doesn't assume anything about the call site having r9 setup already.
(updated for-2.6.27 w/this and rebased to top of linus).
- k
arch/powerpc/kernel/idle_6xx.S | 3 ++-
arch/powerpc/kernel/idle_e500.S | 3 ++-
2 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/arch/powerpc/kernel/idle_6xx.S b/arch/powerpc/kernel/idle_6xx.S
index 019b02d..6dfcdb6 100644
--- a/arch/powerpc/kernel/idle_6xx.S
+++ b/arch/powerpc/kernel/idle_6xx.S
@@ -158,7 +158,8 @@ _GLOBAL(power_save_ppc32_restore)
stw r9,_NIP(r11) /* make it do a blr */
#ifdef CONFIG_SMP
- mfspr r12,SPRN_SPRG3
+ rlwinm r12,r1,0,0,31-THREAD_SHIFT
+ tophys(r12,r12) /* check local flags */
lwz r11,TI_CPU(r12) /* get cpu number * 4 */
slwi r11,r11,2
#else
diff --git a/arch/powerpc/kernel/idle_e500.S b/arch/powerpc/kernel/idle_e500.S
index 0630403..47a1a98 100644
--- a/arch/powerpc/kernel/idle_e500.S
+++ b/arch/powerpc/kernel/idle_e500.S
@@ -84,10 +84,11 @@ _GLOBAL(power_save_ppc32_restore)
stw r9,_NIP(r11) /* make it do a blr */
#ifdef CONFIG_SMP
- mfspr r12,SPRN_SPRG3
+ rlwinm r12,r1,0,0,31-THREAD_SHIFT
lwz r11,TI_CPU(r12) /* get cpu number * 4 */
slwi r11,r11,2
#else
li r11,0
#endif
+
b transfer_to_handler_cont
--
1.5.5.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: Fix determining TI_CPU in power_save_ppc32_restore()
2008-08-26 2:08 [PATCH v2] powerpc: Fix determining TI_CPU in power_save_ppc32_restore() Kumar Gala
@ 2008-08-26 4:39 ` Benjamin Herrenschmidt
2008-08-29 12:06 ` Kumar Gala
0 siblings, 1 reply; 3+ messages in thread
From: Benjamin Herrenschmidt @ 2008-08-26 4:39 UTC (permalink / raw)
To: Kumar Gala; +Cc: linuxppc-dev, paulus
On Mon, 2008-08-25 at 21:08 -0500, Kumar Gala wrote:
> The calculation to get TI_CPU based off of SPRG3 was just plain wrong.
> Just offset off the stack pointer (to get to thread_info) like all the
> other references to TI_CPU do.
>
> This was pointed out by Chen Gong <G.Chen@freescale.com>
>
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] powerpc: Fix determining TI_CPU in power_save_ppc32_restore()
2008-08-26 4:39 ` Benjamin Herrenschmidt
@ 2008-08-29 12:06 ` Kumar Gala
0 siblings, 0 replies; 3+ messages in thread
From: Kumar Gala @ 2008-08-29 12:06 UTC (permalink / raw)
To: Paul Mackerras; +Cc: ppc-dev list
On Aug 25, 2008, at 11:39 PM, Benjamin Herrenschmidt wrote:
> On Mon, 2008-08-25 at 21:08 -0500, Kumar Gala wrote:
>> The calculation to get TI_CPU based off of SPRG3 was just plain
>> wrong.
>> Just offset off the stack pointer (to get to thread_info) like all
>> the
>> other references to TI_CPU do.
>>
>> This was pointed out by Chen Gong <G.Chen@freescale.com>
>>
>> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
>
> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Paul, you picking this up for 2.6.27?
- k
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-08-29 12:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-26 2:08 [PATCH v2] powerpc: Fix determining TI_CPU in power_save_ppc32_restore() Kumar Gala
2008-08-26 4:39 ` Benjamin Herrenschmidt
2008-08-29 12:06 ` Kumar Gala
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).