reboot porting,重启指令的kernel移植,linux shell command

[By lanmanck]

搜索了一下,好像没怎么介绍移植时这个指令是如何执行的。

一般在shell窗口下输入reboot会重启电脑,嵌入式亦然。那么在移植Kernel到arm时要怎么实现reboot,或者重启指令呢?

一般重启就是复位,有外部看门狗或者内置看门狗都可,不同的SOC/不同的电路有不同方法,今儿个以TI Davinci平台为例说一下。

当输入reboot,内核调用如下:

/kernel/sys.c

SYSCALL_DEFINE4()->kernel_restart()->machine_restart()->arm_pm_restart()

/arch/arm/kernel/process.c

arm_pm_restart()->arm_machine_restart()->arch_reset()

/arch/arm/mach-davinci/include/mach/system.h

arch_reset()->davinci_watchdog_reset()

/arch/arm/mach-davinci/time.c

davinci_watchdog_reset()

可见,最终调用的是davinci_watchdog_reset(),也就是在time.c中实现,因此,移植时主要提供如下文件和函数即可:

system.h,以及arch_reset()。

Easy ?

你可能感兴趣的:(reboot porting,重启指令的kernel移植,linux shell command)