//! Power management.
/// Power management interface.
#[def_plat_interface]pubtraitPowerIf{/// Bootstraps the given CPU core with the given initial stack (in physical
/// address).
////// Where `cpu_id` is the logical CPU ID (0, 1, ..., N-1, N is the number of
/// CPU cores on the platform).
#[cfg(feature ="smp")]fncpu_boot(cpu_id:usize, stack_top_paddr:usize);/// Shutdown the whole system.
fnsystem_off()->!;}