发布时间:2013-07-26 11:05:38
Power managementEditAbstract Android Power Management is rely on basic function that Linux kernel provied, and android also has added features .........【阅读全文】
发布时间:2013-07-25 10:54:36
Linux内核栈信息获取与理解1 内核栈获取C语言的函数调用,是通过栈来实现的。如下图所示: 函数调用栈内核异常或死机时,经常在内核日志中看到打印的栈信息和寄存器值。从函数栈信息,我们可以知道函数间的调用关系,从栈和寄存器数据,还可以得到各个变量、参数的值.........【阅读全文】
发布时间:2013-03-26 00:23:27
驱动程序:#include <linux/***.h> 是在linux-2.6.29/include/linux下面寻找源文件。(kernel) #include <asm/***.h> 是在linux-2.6.29/arch/arm/include/asm下面寻找源文件。(arch) #include <mach/***.h> 是在linux-2.6.29/arch/arm/mach-XXXX/include/mach下面寻找源文件。(board) #include <linux/module.........【阅读全文】
发布时间:2013-01-20 11:44:00
Linux Power Managment谨以此文纪念过往的岁月一.前言在这个对节能要求越来越严格的年代,对设备的电源管理就显的很重要的了,尤其对于可移动设备,在电源有限的情况下,续航能力就显的很重要的。在本文中将介绍linux是如何对设备电源进行管理的。二.睡眠Linux的电源管理的主要几个文.........【阅读全文】
发布时间:2013-01-10 16:46:29
?
i2c_transfer函数i2c_transfer()函数本身不具备驱动适配器物理硬件完成消息交互的能力,它只是寻找到i2c_adapter对应的i2c_algorithm,并使用i2c_algorithm的master_xfer()函数真正驱动硬件流程。struct i2c_algorithm {/* If an adapter algorithm can't do I2C-level access, set master_xferto NULL. If an adapter algorithm can do SMBus access, setsmbus_xfer......【阅读全文】