Linux Kernel suspend-resume 过程.doc

上传人:白大夫 文档编号:3255189 上传时间:2019-08-06 格式:DOC 页数:7 大小:32KB
返回 下载 相关 举报
Linux Kernel suspend-resume 过程.doc_第1页
第1页 / 共7页
亲,该文档总共7页,到这儿已超出免费预览范围,如果喜欢就下载吧!
资源描述

《Linux Kernel suspend-resume 过程.doc》由会员分享,可在线阅读,更多相关《Linux Kernel suspend-resume 过程.doc(7页珍藏版)》请在三一文库上搜索。

1、Linux Kernel suspend/resume 过程休眠/唤醒在嵌入式Linux中是非常重要的部分,嵌入式设备尽可能的进入休眠状 态来延长电池的续航时间.这篇文章就详细介绍一下Linux中休眠/唤醒是如何工作 的我的linux内核版本:3.0.31对于休眠(suspend)的简单介绍在Linux中,休眠主要分三个主要的步骤:1、冻结用户态进程和内核态任务2、调用注册的设备的suspend的回调函数3、顺序是按照注册顺序休眠核心设备和使CPU进入休眠态冻结进程是内核把进程列表中所有的进程的状态都设置为停止,并且保存下所有进程的上下文. 当这些进程被解冻的时候,他们是不知道自己被冻结过的,

2、只是简单的继续执行.如何让Linux进入休眠呢?用户可以通过读写sys文件/sys /power/state 是实现控制系统进入休眠. 比如# echo mem /sys/power/state命令系统进入休眠. 也可以使用# cat /sys/power/state来得到内核支持哪几种休眠方式.Linux Suspend 的流程相关的文件:你可以通过访问Linux内核网站来得到源代码,下面是文件的路径:kernel/kernel/power/main.ckernel/kernel/power/suspend.ckernel/driver/base/power/main.c接下来让我们详细的看

3、一下Linux是怎么休眠/唤醒的. Let s going to see how these happens.用户对于/sys/power/state 的读写会调用到 main.c中的state_store(), 用户可以写入 const char * const pm_state 中定义的字符串, 比如”mem”, “standby”.当然一般是由suspend和resume的按键控制的然后state_store()会调用enter_state(), 它首先会检查一些状态参数,然后同步文件系统. 下面是代码:htmlview plaincopy/*enter_state-Docommonwo

4、rkofenteringlow-powerstate.*state:pm_statestructureforstatewereentering.*Makesureweretheonlyonestryingtoenterasleepstate.Fail*ifsomeonehasbeatustoit,sincewedontwantanythingweirdto*happenwhenwewakeup.*Then,dothesetupforsuspend,enterthestate,andcleaup(after*wevewokenup).*/intenter_state(suspend_state_

5、tstate)interror;if(!valid_state(state)return-ENODEV;if(!mutex_trylock(return-EBUSY;printk(KERN_INFOPM:Syncingfilesystems.);sys_sync();printk(done.n);pr_debug(PM:Preparingsystemfor%ssleepn,pm_statesstate);error=suspend_prepare();if(error)gotoUnlock;if(suspend_test(TEST_FREEZER)gotoFinish;pr_debug(PM:

6、Entering%ssleepn,pm_statesstate);pm_restrict_gfp_mask();error=suspend_devices_and_enter(state);pm_restore_gfp_mask();Finish:pr_debug(PM:Finishingwakeup.n);suspend_finish();Unlock:mutex_unlock(returnerror;准备, 冻结进程当进入到suspend_prepare()中以后, 它会给suspend分配一个虚拟终端来输出信 息, 然后广播一个系统要进入suspend的Notify, 关闭掉用户态的he

7、lper进程, 然后依次调用suspend_freeze_processes()冻结所有的进程, 这里会保存所有进程当前的状态, 也许有一些进程会拒绝进入冻结状态, 当有这样的进程存在的时候, 会导致冻结失败,此函数就会放弃冻结进程,并且解冻刚才冻结的所有进程.htmlview plaincopy/*suspend_prepare-Doprepworkbeforeenteringlow-powerstate.*Thisiscommoncodethatiscalledforeachstatethatwereentering.*RunsuspendnoTIfiers,allocateaconsol

8、eandstopallprocesses.*/staTIcintsuspend_prepare(void)interror;if(!suspend_ops|!suspend_ops-enter)return-EPERM;pm_prepare_console();error=pm_noTIfier_call_chain(PM_SUSPEND_PREPARE);if(error)gotoFinish;error=usermodehelper_disable();if(error)gotoFinish;error=suspend_freeze_processes();if(!error)return

9、0;suspend_thaw_processes();usermodehelper_enable();Finish:pm_noTIfier_call_chain(PM_POST_SUSPEND);pm_restore_console();returnerror;让外设进入休眠现在, 所有的进程(也包括workqueue/kthread) 都已经停止了, 内核态人物有 可能在停止的时候握有一些信号量, 所以如果这时候在外设里面去解锁这个信号 量有可能会发生死锁, 所以在外设的suspend()函数里面作lock/unlock锁要非常 小心,这里建议设计的时候就不要在suspend()里面等待锁.

10、 而且因为suspend的时候,有一些Log是无法输出的,所以一旦出现问题,非常难调试.然后kernel在这里会尝试释放一些内存.最后会调用suspend_devices_and_enter()来把所有的外设休眠, 在这个函数中, 如果平台注册了suspend_pos(通常是在板级定义中定义和注册), 这里就会调用 suspend_ops-begin(), 然后driver/base/power/main.c 中的 device_suspend()-dpm_suspend() 会被调用,他们会依次调用驱动的suspend() 回调来休眠掉所有的设备.当所有的设备休眠以后, suspend_op

11、s-prepare()会被调用, 这个函数通常会作 一些准备工作来让板机进入休眠. 接下来Linux,在多核的CPU中的非启动CPU会被关掉, 通过注释看到是避免这些其他的CPU造成race condion,接下来的以后只有一个CPU在运行了.suspend_ops 是板级的电源管理操作, 通常注册在文件 arch/xxx/mach-xxx/pm.c 中.接下来, suspend_enter()会被调用, 这个函数会关闭arch irq, 调用 device_power_down(), 它会调用suspend_late()函数, 这个函数是系统真正进入 休眠最后调用的函数, 通常会在这个函数中

12、作最后的检查. 如果检查没问题, 接 下来休眠所有的系统设备和总线, 并且调用 suspend_pos-enter() 来使CPU进入 省电状态. 这时候,就已经休眠了.代码的执行也就停在这里了.htmlview plaincopy/*suspend_devices_and_enter-suspenddevicesandenterthedesiredsystem*sleepstate.*state:statetoenter*/intsuspend_devices_and_enter(suspend_state_tstate)interror;if(!suspend_ops)return-ENO

13、SYS;trace_machine_suspend(state);if(suspend_ops-begin)error=suspend_ops-begin(state);if(error)gotoClose;suspend_console();suspend_test_start();error=dpm_suspend_start(PMSG_SUSPEND);if(error)printk(KERN_ERRPM:Somedevicesfailedtosuspendn);gotoRecover_platform;suspend_test_finish(suspenddevices);if(sus

14、pend_test(TEST_DEVICES)gotoRecover_platform;error=suspend_enter(state);Resume_devices:suspend_test_start();dpm_resume_end(PMSG_RESUME);suspend_test_finish(resumedevices);resume_console();Close:if(suspend_ops-end)suspend_ops-end();trace_machine_suspend(PWR_EVENT_EXIT);returnerror;Recover_platform:if(

15、suspend_ops-recover)suspend_ops-recover();gotoResume_devices;RESUME如果在休眠中系统被中断或者其他事件唤醒, 接下来的代码就会开始执行, 这个 唤醒的顺序是和休眠的循序相反的,所以系统设备和总线会首先唤醒,使能系统中 断, 使能休眠时候停止掉的非启动CPU, 以及调用suspend_ops-finish(), 而且 在suspend_devices_and_enter()函数中也会继续唤醒每个设备,使能虚拟终端, 最后调用 suspend_ops-end().在返回到enter_state()函数中的, 当 suspend_devices_and_enter() 返回以后, 外设已经唤醒了, 但是进程和任务都还是冻结状态, 这里会调用suspend_finish()来解冻这些进程和任务, 而且发出Notify来表示系统已经从suspend状态退出, 唤醒终端.到这里, 所有的休眠和唤醒就已经完毕了, 系统继续运行了.

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 其他


经营许可证编号:宁ICP备18001539号-1