* [RFC PATCH v3] ARM hibernation/suspend-to-disk support @ 2011-05-25 13:16 Frank Hofmann 2011-05-27 15:01 ` Frank Hofmann 2011-06-02 22:18 ` [linux-pm] " Pavel Machek 0 siblings, 2 replies; 6+ messages in thread From: Frank Hofmann @ 2011-05-25 13:16 UTC (permalink / raw) To: linux-arm-kernel Hi, I've cleaned this up by the suggestions in the previous thread; this is the result. - now baselined against rmk/devel-stable - didn't create the <asm/suspend.h> because Rafael is just removing that everywhere anyway - Fixes re prev suggestion: local_fiq_enable/disable bracketing save only absolutely essential regs and let cpu_init do the rest thumb2 clean assembly allows mach hooks (but they're not defined by this code) - Also: uses the "generic suspend/resume support" code (commit f6b0fa02e8b0708d17d631afce456524eadf87ff, rmk/devel-stable) Via the latter, the previously-used hooks into machine-dependent code, __save/__restore_processor_state, have become unnecessary. This now simply calls the cpu_do_suspend/resume utilities provided by the generic code. I'm still figuring out how to best test a recent devel-stable kernel ... Please let me know what you think, Thanks in advance, FrankH. ============================================================================== Note on non-current kernels (older than 2.6.38): ============================================================================== The use of generic CPU suspend/resume also ties the code to a sufficiently-recent kernel - it requires the code from: http://ftp.arm.linux.org.uk/git/gitweb.cgi?p=linux-2.6-arm.git;a=commitdiff;h=f6b0fa02e8b0708d17d631afce456524eadf87ff Which is, for many that (want to) use the feature, a hurdle... If you're using an older kernel (2.6.37 or below), try the "generic" part posted via: https://patchwork.kernel.org/patch/809212/ and add a __save/__restore_processor_state for your CPU type, as mentioned here: http://lists.arm.linux.org.uk/lurker/message/20110520.123937.760c528f.en.html ============================================================================== -------------- next part -------------- A non-text attachment was scrubbed... Name: hibernate-arm.patch Type: text/x-diff Size: 6606 bytes Desc: URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20110525/5a6747ff/attachment-0001.bin> ^ permalink raw reply [flat|nested] 6+ messages in thread
* [RFC PATCH v3] ARM hibernation/suspend-to-disk support 2011-05-25 13:16 [RFC PATCH v3] ARM hibernation/suspend-to-disk support Frank Hofmann @ 2011-05-27 15:01 ` Frank Hofmann 2011-05-27 19:27 ` Nicolas Pitre 2011-06-02 22:18 ` [linux-pm] " Pavel Machek 1 sibling, 1 reply; 6+ messages in thread From: Frank Hofmann @ 2011-05-27 15:01 UTC (permalink / raw) To: linux-arm-kernel On Wed, 25 May 2011, Frank Hofmann wrote: > Hi, > > I've cleaned this up by the suggestions in the previous thread; this is the > result. > > - now baselined against rmk/devel-stable > - didn't create the <asm/suspend.h> because Rafael is just removing > that everywhere anyway > - Fixes re prev suggestion: > local_fiq_enable/disable bracketing > save only absolutely essential regs and let cpu_init do the rest > thumb2 clean assembly > allows mach hooks (but they're not defined by this code) > > - Also: uses the "generic suspend/resume support" code > (commit f6b0fa02e8b0708d17d631afce456524eadf87ff, rmk/devel-stable) > > Via the latter, the previously-used hooks into machine-dependent code, > __save/__restore_processor_state, have become unnecessary. > > This now simply calls the cpu_do_suspend/resume utilities provided by the > generic code. > > > I'm still figuring out how to best test a recent devel-stable kernel ... Ok, I have figured out a way to test (on ARM1176, not yet Cortex-A8), by bringing my kernel up to a recent-enough baseline. I've found that the cpu_resume_mmu call done at the end of cpu_do_resume is reliant on having the MMU off at that point. If it's on (as is the case when coming through the hibernation resume point) the TTBR table modification in cpu_resume_mmu crashes ... well, it's a PA after all. I could make hibernation resume to work through the generic paths if I add a "fast exit" case: diff --git a/arch/arm/kernel/sleep.S b/arch/arm/kernel/sleep.S index 6398ead..d83123a 100644 --- a/arch/arm/kernel/sleep.S +++ b/arch/arm/kernel/sleep.S @@ -71,10 +71,13 @@ ENDPROC(cpu_suspend) /* * r0 = control register value * r1 = v:p offset (preserved by cpu_do_resume) + * if this is zero, do not reenable MMU (it's on) * r2 = phys page table base * r3 = L1 section flags */ ENTRY(cpu_resume_mmu) + teq r1, #0 + moveq pc, lr @ return if MMU already on adr r4, cpu_resume_turn_mmu_on mov r4, r4, lsr #20 orr r3, r3, r4, lsl #20 and "mov r1,#0" before calling cpu_do_suspend, from swsusp_arch_resume. It leaves an unsatisfying feeling about this not being "quite right" though. I wonder; is there a proper/suggested way to switch MMU off (and not end in binary nirvana), to have the reentry / reenable work ? FrankH. ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [RFC PATCH v3] ARM hibernation/suspend-to-disk support 2011-05-27 15:01 ` Frank Hofmann @ 2011-05-27 19:27 ` Nicolas Pitre 2011-05-31 11:50 ` Frank Hofmann 0 siblings, 1 reply; 6+ messages in thread From: Nicolas Pitre @ 2011-05-27 19:27 UTC (permalink / raw) To: linux-arm-kernel On Fri, 27 May 2011, Frank Hofmann wrote: > /* > * r0 = control register value > * r1 = v:p offset (preserved by cpu_do_resume) > + * if this is zero, do not reenable MMU (it's on) This is wrong. It is well possible for this to be zero when the MMU is active. The best way to determine if MMU is on or off is: mrc p15, 0, rx, c1, c0 @ load ctrl reg tst rx, #1 @ test M bit > I wonder; is there a proper/suggested way to switch MMU off (and not end in > binary nirvana), to have the reentry / reenable work ? This is slightly complicated. You first need to turn of and disable the caches, and ideally set up a 1:1 mapping for the transition. There are cpu_proc_fin() and cpu_reset(branch_location). You may also investigate how kexec is handled which purpose is to let the kernel boot another kernel. Nicolas ^ permalink raw reply [flat|nested] 6+ messages in thread
* [RFC PATCH v3] ARM hibernation/suspend-to-disk support 2011-05-27 19:27 ` Nicolas Pitre @ 2011-05-31 11:50 ` Frank Hofmann 0 siblings, 0 replies; 6+ messages in thread From: Frank Hofmann @ 2011-05-31 11:50 UTC (permalink / raw) To: linux-arm-kernel On Fri, 27 May 2011, Nicolas Pitre wrote: > On Fri, 27 May 2011, Frank Hofmann wrote: > >> /* >> * r0 = control register value >> * r1 = v:p offset (preserved by cpu_do_resume) >> + * if this is zero, do not reenable MMU (it's on) > > This is wrong. It is well possible for this to be zero when the MMU is > active. > > The best way to determine if MMU is on or off is: > > mrc p15, 0, rx, c1, c0 @ load ctrl reg > tst rx, #1 @ test M bit Ah, thanks. I had thought only MMU-less kernels will run on identity but you're right of course there's nothing to stop it as such. This one: ============================================================================== diff --git a/arch/arm/kernel/sleep.S b/arch/arm/kernel/sleep.S index 6398ead..a793644 100644 --- a/arch/arm/kernel/sleep.S +++ b/arch/arm/kernel/sleep.S @@ -75,6 +75,9 @@ ENDPROC(cpu_suspend) * r3 = L1 section flags */ ENTRY(cpu_resume_mmu) + mrc p15, 0, r4, c1, c0, 0 + tst r4, #CR_M + bne 0f @ return if MMU already on adr r4, cpu_resume_turn_mmu_on mov r4, r4, lsr #20 orr r3, r3, r4, lsl #20 @@ -96,6 +99,7 @@ cpu_resume_turn_mmu_on: ENDPROC(cpu_resume_turn_mmu_on) cpu_resume_after_mmu: str r5, [r2, r4, lsl #2] @ restore old mapping +0: mcr p15, 0, r0, c1, c0, 0 @ turn on D-cache mov pc, lr ENDPROC(cpu_resume_after_mmu) ============================================================================== does indeed do that part of the job. > >> I wonder; is there a proper/suggested way to switch MMU off (and not end in >> binary nirvana), to have the reentry / reenable work ? > > This is slightly complicated. You first need to turn of and disable the > caches, and ideally set up a 1:1 mapping for the transition. There are > cpu_proc_fin() and cpu_reset(branch_location). Hmm, just looked through that. One of the issues with this is my usecase - ARM11x6 and Cortex-A8/9, for which these are cpu_v[67]_reset() - a no-op (in mainline / rmk devel-stable). I.e. neither cpu_proc_fin() nor cpu_reset() on v6/v7 currently switch the MMU off. The older chips do ... Anyway, the setup for resume after hibernation at the moment is: - swsusp_arch_resume switches to swapper_pg_dir (which is guaranteed to be kernel flat addresses ?!) - image restoration [ caches should probably be flushed / turned off after this ? ] - cpu_do_resume() restores pre-suspend TTBR (which in effect is a cpu_switch_mm) - cpu_resume_mmu bypassed because MMU already on But that means as part of the resume, a context switch is done anyway. Which sort of leads to the question whether the 1:1 mapping for the switch off case is really required; wouldn't it be acceptable to simply turn the MMU off and jump to the physical address of cpu_do_resume() instead ? Something like: [ caches off ... ] @ assume r0 == phys addr of restore buffer (however retrieved) ldr r1, =virt_addr_of_restore_buffer @ known sub r2, r1, r0 @ calc v:p offset ldr r3, =cpu_do_resume @ virt func addr sub r3, r3, r2 @ to phys mrc p15, 0, r1, cr0, cr1, 0 bic r1, #CR_M adr lr, =post_resume @ load virtual mcr r15, 0, r1, cr0, cr1, 0 @ MMU off crit: mov pc, r3 @ jump phys post_resume: [ continue processing when done / returned ] Or is it necessary to have a 1:1 mapping for 'crit:' when switching the MMU off, to make sure one actually reaches the jump ? > > You may also investigate how kexec is handled which purpose is to let > the kernel boot another kernel. machine_kexec() you mean ? I vaguely remember having read that to get this working on v6/v7 CPUs one needs non-mainline patches, is that still so ? The current fin / reset codepaths for v6/v7 don't turn the MMU off, anyway. Thanks for the pointer. Reading that, it looks like flushing / disabling all caches is necessary before entering/resuming the target ? I'm starting to wonder whether for a first-stab at hibernation support on ARM, the ability to resume non-identical kernels / resume not via the kernel hibernation restore codepaths (i.e. invocation via bootloader) is required. As Rafael answered a while back, to make that work a temporary MMU initialization / setup is necessary for the image restoration. The current code assumes swapper_pg_dir has been set up, and maps the entire kernel heap; how true is that assumption, actually, at "kernel entry" ? Thanks, FrankH. > > > Nicolas > ^ permalink raw reply related [flat|nested] 6+ messages in thread
* [linux-pm] [RFC PATCH v3] ARM hibernation/suspend-to-disk support 2011-05-25 13:16 [RFC PATCH v3] ARM hibernation/suspend-to-disk support Frank Hofmann 2011-05-27 15:01 ` Frank Hofmann @ 2011-06-02 22:18 ` Pavel Machek 2011-06-14 8:00 ` Frank Hofmann 1 sibling, 1 reply; 6+ messages in thread From: Pavel Machek @ 2011-06-02 22:18 UTC (permalink / raw) To: linux-arm-kernel Hi! > Please let me know what you think, > Thanks in advance, > +void save_processor_state(void) > +{ > + flush_thread(); > + local_fiq_disable(); > +#ifdef CONFIG_ARM_MACH_HIBERNATION_HOOK > + mach_save_state(); > +#endif > +} Could we always define mach_save_state, and get rid of ifdef? -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 6+ messages in thread
* [linux-pm] [RFC PATCH v3] ARM hibernation/suspend-to-disk support 2011-06-02 22:18 ` [linux-pm] " Pavel Machek @ 2011-06-14 8:00 ` Frank Hofmann 0 siblings, 0 replies; 6+ messages in thread From: Frank Hofmann @ 2011-06-14 8:00 UTC (permalink / raw) To: linux-arm-kernel On Fri, 3 Jun 2011, Pavel Machek wrote: > Hi! > >> Please let me know what you think, >> Thanks in advance, > >> +void save_processor_state(void) >> +{ >> + flush_thread(); >> + local_fiq_disable(); >> +#ifdef CONFIG_ARM_MACH_HIBERNATION_HOOK >> + mach_save_state(); >> +#endif >> +} > > Could we always define mach_save_state, and get rid of ifdef? Yes ... but it addresses only part of the issue(s). There's some state which cannot be saved / restored separately from the core state that's dealt with inside swsusp_arch_suspend/resume. This hook couldn't deal with that. Also, if having mach-specific hooks everywhere, wouldn't it be better to simply use a platform ops based approach ? FrankH. > > -- > (english) http://www.livejournal.com/~pavelmachek > (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html > ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2011-06-14 8:00 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-05-25 13:16 [RFC PATCH v3] ARM hibernation/suspend-to-disk support Frank Hofmann 2011-05-27 15:01 ` Frank Hofmann 2011-05-27 19:27 ` Nicolas Pitre 2011-05-31 11:50 ` Frank Hofmann 2011-06-02 22:18 ` [linux-pm] " Pavel Machek 2011-06-14 8:00 ` Frank Hofmann
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox