我跟踪代码并得到:
native_machine_shutdown()
https://elixir.bootlin.com/linux/latest/source/arch/x86/kernel/reboot.c#L682
但我没有看到任何关闭电源或触发哪个CPU寄存器断电的代码?
我从那里到达:
void kernel_power_off(void)
{
kernel_shutdown_prepare(SYSTEM_POWER_OFF);
if (pm_power_off_prepare)
pm_power_off_prepare();
migrate_to_reboot_cpu();
syscore_shutdown();
pr_emerg("Power down\n");
kmsg_dump(KMSG_DUMP_SHUTDOWN);
machine_power_off();
}
https://elixir.bootlin.com/linux/latest/source/kernel/reboot.c#L287
答案1
它在reboot.c
,并且评论得很好。
static void native_machine_power_off(void)
{
if (pm_power_off) {
if (!reboot_force)
machine_shutdown();
pm_power_off();
}
/* A fallback in case there is no PM info available */
tboot_shutdown(TB_SHUTDOWN_HALT);
}
所以,pm_power_off
:现在是真的特定于平台;无论您使用的是游戏机还是机架服务器,情况都是不同的。
您可能正在寻找执行此操作的 EFI 驱动程序:
efi.reset_system(EFI_RESET_SHUTDOWN, EFI_SUCCESS, 0, NULL);
在驱动程序/固件/efi/reboot.c