1 /*
2  * Copyright (C) 2019-2022 Intel Corporation.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef VM_RESET_H_
8 #define VM_RESET_H_
9 
10 #include <acrn_common.h>
11 
12 void register_reset_port_handler(struct acrn_vm *vm);
13 void shutdown_vm_from_idle(uint16_t pcpu_id);
14 void triple_fault_shutdown_vm(struct acrn_vcpu *vcpu);
15 
16 #endif /* VM_RESET_H_ */
17