RE: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-27 Thread Tero.Kristo
: Re: [PATCH 1/2] ARM: Implemented support for VFP PM >context saving > >On Tue, Nov 24, 2009 at 01:20:26PM +, Catalin Marinas wrote: >> BTW, the two patches below were mentioned to me some time ago but I >> haven't got the time to look at them: >> >> [ARM] vfp

Re: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-24 Thread Russell King - ARM Linux
On Tue, Nov 24, 2009 at 01:20:26PM +, Catalin Marinas wrote: > BTW, the two patches below were mentioned to me some time ago but I > haven't got the time to look at them: > > [ARM] vfp: Fix bug in vfp_pm_suspend > https://www.codeaurora.org/gitweb/quic/le/?p=kernel/msm.git;a=commit;h=88984c9b2

RE: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-24 Thread Tero.Kristo
: Re: [PATCH 1/2] ARM: Implemented support for VFP PM >context saving > >On Tue, 2009-11-24 at 11:48 +, Russell King - ARM Linux wrote: >> On Tue, Nov 24, 2009 at 12:37:03PM +0200, Tero Kristo wrote: >> > In some ARM architectures, like OMAP3, the VFP context can >b

Re: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-24 Thread Catalin Marinas
On Tue, 2009-11-24 at 11:48 +, Russell King - ARM Linux wrote: > On Tue, Nov 24, 2009 at 12:37:03PM +0200, Tero Kristo wrote: > > In some ARM architectures, like OMAP3, the VFP context can be lost during > > dynamic sleep cycle. For this purpose, there is now a function > > vfp_pm_save_context(

Re: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-24 Thread Russell King - ARM Linux
On Tue, Nov 24, 2009 at 12:37:03PM +0200, Tero Kristo wrote: > In some ARM architectures, like OMAP3, the VFP context can be lost during > dynamic sleep cycle. For this purpose, there is now a function > vfp_pm_save_context() that should be called before the VFP is assumed to > lose context. Next V

[PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-24 Thread Tero Kristo
From: Tero Kristo In some ARM architectures, like OMAP3, the VFP context can be lost during dynamic sleep cycle. For this purpose, there is now a function vfp_pm_save_context() that should be called before the VFP is assumed to lose context. Next VFP trap will then restore context automatically.

Re: [PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-23 Thread Tony Lindgren
* Tero Kristo [091119 07:12]: > From: Tero Kristo > > In some ARM architectures, like OMAP3, the VFP context can be lost during > dynamic sleep cycle. For this purpose, there is now a function > vfp_pm_save_context() that should be called before the VFP is assumed to > lose context. Next VFP tra

[PATCH 1/2] ARM: Implemented support for VFP PM context saving

2009-11-19 Thread Tero Kristo
From: Tero Kristo In some ARM architectures, like OMAP3, the VFP context can be lost during dynamic sleep cycle. For this purpose, there is now a function vfp_pm_save_context() that should be called before the VFP is assumed to lose context. Next VFP trap will then restore context automatically.