2018-05-17 22:21:13 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) <2018> Intel Corporation
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*/
|
2018-05-22 08:30:50 +08:00
|
|
|
#include <hypervisor.h>
|
2018-07-13 04:14:13 +08:00
|
|
|
#include <reboot.h>
|
2018-05-17 22:21:13 +08:00
|
|
|
|
|
|
|
int warm_reboot(void)
|
|
|
|
{
|
|
|
|
io_write_byte(0x6, 0xcf9);
|
|
|
|
return 0;
|
|
|
|
}
|