mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-08 08:26:55 +00:00
Since it's typedef in "include/lib/types.h" Tracked-On: #861 Signed-off-by: Li, Fei1 <fei1.li@intel.com>
16 lines
384 B
C
16 lines
384 B
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef GUEST_PM_H
|
|
#define GUEST_PM_H
|
|
|
|
void vm_setup_cpu_state(struct acrn_vm *vm);
|
|
int32_t vm_load_pm_s_state(struct acrn_vm *vm);
|
|
int32_t validate_pstate(const struct acrn_vm *vm, uint64_t perf_ctl);
|
|
void register_pm1ab_handler(struct acrn_vm *vm);
|
|
|
|
#endif /* PM_H */
|