blob: 8175cdfbde3eb7f7b87e4a32e2a8064d9cd819cc [file] [log] [blame]
#include "vm/shutdown.h"
#include "psci.h"
#include "vmapi/hf/call.h"
/*
* Shutdown the system or exit emulation.
*/
noreturn void shutdown(void)
{
hf_call(PSCI_SYSTEM_OFF, 0, 0, 0);
for (;;) {
/* This should never be reached. */
}
}